* src/DateHandler.py: fixed initialization of parser class
svn: r4790
This commit is contained in:
parent
13a51cf2c7
commit
b7658288b6
@ -1,3 +1,6 @@
|
|||||||
|
2005-06-05 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/DateHandler.py: fixed initialization of parser class
|
||||||
|
|
||||||
2005-06-05 Alex Roitman <shura@gramps-project.org>
|
2005-06-05 Alex Roitman <shura@gramps-project.org>
|
||||||
* configure.in: Bump up the version number.
|
* configure.in: Bump up the version number.
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
Version 2.0.3 -- the "Mynd you, møøse bites Kan be pretty nasti..." release
|
||||||
|
* Fixed Date handler bug that would not allow dates to be updated.
|
||||||
|
|
||||||
Version 2.0.2 -- the "Little fermented curd will do the trick" release
|
Version 2.0.2 -- the "Little fermented curd will do the trick" release
|
||||||
* Updated German translation (Anton Huber).
|
* Updated German translation (Anton Huber).
|
||||||
* Usability improvements for large databases.
|
* Usability improvements for large databases.
|
||||||
|
@ -7,8 +7,8 @@ AC_PREREQ(2.57)
|
|||||||
AC_INIT(gramps, 2.0.3, gramps-bugs@lists.sourceforge.net)
|
AC_INIT(gramps, 2.0.3, gramps-bugs@lists.sourceforge.net)
|
||||||
AC_CONFIG_SRCDIR(src/gramps.py)
|
AC_CONFIG_SRCDIR(src/gramps.py)
|
||||||
AM_INIT_AUTOMAKE(1.6.3)
|
AM_INIT_AUTOMAKE(1.6.3)
|
||||||
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
dnl RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
||||||
dnl RELEASE=1
|
RELEASE=1
|
||||||
|
|
||||||
VERSIONSTRING=$VERSION
|
VERSIONSTRING=$VERSION
|
||||||
if test x"$RELEASE" != "x"
|
if test x"$RELEASE" != "x"
|
||||||
|
@ -118,9 +118,9 @@ load_plugins(datesDir)
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
if _lang_to_parser.has_key(_lang):
|
if _lang_to_parser.has_key(_lang):
|
||||||
parser = _lang_to_parser[_lang]
|
parser = _lang_to_parser[_lang]()
|
||||||
else:
|
else:
|
||||||
parser = _lang_to_parser[_lang_short]
|
parser = _lang_to_parser[_lang_short]()
|
||||||
except:
|
except:
|
||||||
print "Date parser for",_lang,"not available, using default"
|
print "Date parser for",_lang,"not available, using default"
|
||||||
parser = _lang_to_parser["C"]()
|
parser = _lang_to_parser["C"]()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user