0.7.3 release
svn: r962
This commit is contained in:
parent
a3b90db30e
commit
2fd8d68073
@ -812,16 +812,10 @@ class SingleDate:
|
|||||||
mon = string.lower(matches[2])
|
mon = string.lower(matches[2])
|
||||||
else:
|
else:
|
||||||
mon = string.lower(matches[2])[0:l]
|
mon = string.lower(matches[2])[0:l]
|
||||||
if month_map.has_key(mon):
|
self.setYear(int(matches[3]))
|
||||||
self.setYear(int(matches[3]))
|
self.setMonthStr(mon)
|
||||||
self.setMonth(month_map[mon]+1)
|
self.setDay(int(matches[1]))
|
||||||
self.setDay(int(matches[1]))
|
return
|
||||||
return
|
|
||||||
else:
|
|
||||||
self.setYear(int(matches[3]))
|
|
||||||
self.setMonth(UNDEF)
|
|
||||||
self.setDay(UNDEF)
|
|
||||||
return
|
|
||||||
match = SingleDate.fmt3.match(text)
|
match = SingleDate.fmt3.match(text)
|
||||||
if match:
|
if match:
|
||||||
matches = match.groups()
|
matches = match.groups()
|
||||||
@ -840,7 +834,7 @@ class SingleDate:
|
|||||||
else:
|
else:
|
||||||
mon = string.lower(matches[1])[0:l]
|
mon = string.lower(matches[1])[0:l]
|
||||||
self.setYearVal(matches[2])
|
self.setYearVal(matches[2])
|
||||||
self.setMonth(month_map[mon]+1)
|
self.setMonthStr(mon)
|
||||||
self.day = UNDEF
|
self.day = UNDEF
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ startup = 1
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
progName = "GRAMPS"
|
progName = "GRAMPS"
|
||||||
version = "0.7.3-snap20020414"
|
version = "0.7.3"
|
||||||
copyright = "© 2001 Donald N. Allingham"
|
copyright = "© 2001 Donald N. Allingham"
|
||||||
authors = ["Donald N. Allingham", "David Hampton","Donald A. Peterson"]
|
authors = ["Donald N. Allingham", "David Hampton","Donald A. Peterson"]
|
||||||
comments = _("GRAMPS (Genealogical Research and Analysis "
|
comments = _("GRAMPS (Genealogical Research and Analysis "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user