2007-10-09 Don Allingham <don@gramps-project.org>

* src/GrampsDb/Makefile.am: update
	* src/gen/db/Makefile.am: update
	* src/gen/lib/primaryobj.py: remove MarkupText dependency
	* src/Makefile.am: remove RelLib
	* po/POTFILES.in: update



svn: r9121
This commit is contained in:
Don Allingham
2007-10-10 03:41:44 +00:00
parent 3bc809c61b
commit 5c5022e2cd
8 changed files with 123 additions and 110 deletions

View File

@@ -6,7 +6,6 @@
pkgdatadir = $(datadir)/@PACKAGE@/GrampsDb
pkgdata_PYTHON = \
_GrampsDBDir.py \
_GrampsDbFactories.py\
_GrampsDbWriteXML.py \
_GrampsGEDDB.py\

View File

@@ -20,7 +20,6 @@ SUBDIRS = \
Mime \
Selectors \
Simple \
RelLib \
data \
PluginUtils \
ReportBase \

View File

@@ -12,8 +12,7 @@ pkgdata_PYTHON = \
dbconst.py \
dbdir.py \
exceptions.py \
iterator.py \
longop.py
iterator.py
pkgpyexecdir = @pkgpyexecdir@/db
pkgpythondir = @pkgpythondir@/db

View File

@@ -32,7 +32,7 @@ __revision__ = "$Revision$"
#
#-------------------------------------------------------------------------
import time
import GrampsLocale
import locale
#-------------------------------------------------------------------------
#
@@ -50,7 +50,10 @@ from mediabase import MediaBase
# Localized constants
#
#-------------------------------------------------------------------------
CODESET = GrampsLocale.codeset
try:
CODESET = locale.nl_langinfo(locale.CODESET)
except:
CODESET = locale.getpreferredencoding()
#-------------------------------------------------------------------------
#