Solving connected date bugs

3390: Date module that reads calendar on Gedcom file format, cannot read the @
3763: dates parsed wrong
3754: Active markup for invalid date on Event View
Some other bugs might be fixed by these changes


svn: r14922
This commit is contained in:
Benny Malengier 2010-03-24 16:05:42 +00:00
parent c58cbb8c08
commit 910d34c330
4 changed files with 166 additions and 72 deletions

View File

@ -154,11 +154,17 @@ class DateParser(object):
modifier_after_to_int = {} modifier_after_to_int = {}
hebrew_to_int = { hebrew_to_int = {
"tishri" : 1, "heshvan" : 2, "kislev" : 3, u"tishri" : 1, u"heshvan" : 2, u"kislev" : 3,
"tevet" : 4, "shevat" : 5, "adari" : 6, u"tevet" : 4, u"shevat" : 5, u"adari" : 6,
"adarii" : 7, "nisan" : 8, "iyyar" : 9, u"adarii" : 7, u"nisan" : 8, u"iyyar" : 9,
"sivan" : 10, "tammuz" : 11, "av" : 12, u"sivan" : 10, u"tammuz" : 11, u"av" : 12,
"elul" : 13, u"elul" : 13,
#alternative spelling
u"cheshvan": 2, u"adar sheni": 7, u"iyar" : 9,
#GEDCOM months
u"tsh" : 1, u"csh": 5, u"ksl": 3, u"tvt": 4, u"shv": 5, u"adr": 6,
u"ads" : 7, u"nsn": 8, u"iyr": 9, u"svn":10, u"tmz":11, u"aav":12,
u"ell":13,
} }
french_to_int = { french_to_int = {
@ -168,7 +174,15 @@ class DateParser(object):
u'germinal' : 7, u'floréal' : 8, u'germinal' : 7, u'floréal' : 8,
u'prairial' : 9, u'messidor' : 10, u'prairial' : 9, u'messidor' : 10,
u'thermidor' : 11, u'fructidor' : 12, u'thermidor' : 11, u'fructidor' : 12,
u'extra' : 13 u'extra' : 13,
#GEDCOM months
u'vend' : 1, u'brum' : 2,
u'frim' : 3, u'nivo' : 4,
u'pluv' : 5, u'vent' : 6,
u'germ' : 7, u'flor' : 8,
u'prai' : 9, u'mess' : 10,
u'ther' : 11, u'fruc' : 12,
u'comp' : 13,
} }
islamic_to_int = { islamic_to_int = {
@ -430,7 +444,6 @@ class DateParser(object):
m = 0 m = 0
else: else:
m = mmap[groups[1].lower()] m = mmap[groups[1].lower()]
d = self._get_int(groups[0]) d = self._get_int(groups[0])
if groups[2] is None: if groups[2] is None:
@ -586,11 +599,15 @@ class DateParser(object):
text_parser = self.parser[cal] text_parser = self.parser[cal]
(text1, bc1) = self.match_bce(match.group('start')) (text1, bc1) = self.match_bce(match.group('start'))
start = self._parse_subdate(text1, text_parser) start = self._parse_subdate(text1, text_parser)
if start == Date.EMPTY and text1 != "":
return 0
if bc1: if bc1:
start = self.invert_year(start) start = self.invert_year(start)
(text2, bc2) = self.match_bce(match.group('stop')) (text2, bc2) = self.match_bce(match.group('stop'))
stop = self._parse_subdate(text2, text_parser) stop = self._parse_subdate(text2, text_parser)
if stop == Date.EMPTY and text2 != "":
return 0
if bc2: if bc2:
stop = self.invert_year(stop) stop = self.invert_year(stop)
@ -609,11 +626,15 @@ class DateParser(object):
text_parser = self.parser[cal] text_parser = self.parser[cal]
(text1, bc1) = self.match_bce(match.group('start')) (text1, bc1) = self.match_bce(match.group('start'))
start = self._parse_subdate(text1, text_parser) start = self._parse_subdate(text1, text_parser)
if start == Date.EMPTY and text1 != "":
return 0
if bc1: if bc1:
start = self.invert_year(start) start = self.invert_year(start)
(text2, bc2) = self.match_bce(match.group('stop')) (text2, bc2) = self.match_bce(match.group('stop'))
stop = self._parse_subdate(text2, text_parser) stop = self._parse_subdate(text2, text_parser)
if stop == Date.EMPTY and text2 != "":
return 0
if bc2: if bc2:
stop = self.invert_year(stop) stop = self.invert_year(stop)
@ -666,7 +687,10 @@ class DateParser(object):
start = self._parse_subdate(grps[0], self.parser[cal]) start = self._parse_subdate(grps[0], self.parser[cal])
mod = self.modifier_after_to_int.get(grps[1].lower(), mod = self.modifier_after_to_int.get(grps[1].lower(),
Date.MOD_NONE) Date.MOD_NONE)
if bc: if start == Date.EMPTY:
date.set_modifier(Date.MOD_TEXTONLY)
date.set_text_value(text)
elif bc:
date.set(qual, mod, cal, self.invert_year(start), newyear=ny) date.set(qual, mod, cal, self.invert_year(start), newyear=ny)
else: else:
date.set(qual, mod, cal, start, newyear=ny) date.set(qual, mod, cal, start, newyear=ny)
@ -676,7 +700,10 @@ class DateParser(object):
grps = match.groups() grps = match.groups()
start = self._parse_subdate(grps[0]) start = self._parse_subdate(grps[0])
mod = Date.MOD_ABOUT mod = Date.MOD_ABOUT
if bc: if start == Date.EMPTY:
date.set_modifier(Date.MOD_TEXTONLY)
date.set_text_value(text)
elif bc:
date.set(qual, mod, cal, self.invert_year(start), newyear=ny) date.set(qual, mod, cal, self.invert_year(start), newyear=ny)
else: else:
date.set(qual, mod, cal, start, newyear=ny) date.set(qual, mod, cal, start, newyear=ny)
@ -712,6 +739,8 @@ class DateParser(object):
if subdate == Date.EMPTY and text != "": if subdate == Date.EMPTY and text != "":
date.set_as_text(text) date.set_as_text(text)
return return
#else:
# print 'valid subdate', text, subdate
except: except:
date.set_as_text(text) date.set_as_text(text)
return return

View File

@ -25,6 +25,7 @@
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
import time import time
import cgi
import logging import logging
log = logging.getLogger(".") log = logging.getLogger(".")
@ -45,6 +46,7 @@ import GrampsLocale
import DateHandler import DateHandler
import gen.lib import gen.lib
import Utils import Utils
import config
from gui.views.treemodels.flatbasemodel import FlatBaseModel from gui.views.treemodels.flatbasemodel import FlatBaseModel
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
@ -60,6 +62,8 @@ COLUMN_DESCRIPTION = 4
COLUMN_PLACE = 5 COLUMN_PLACE = 5
COLUMN_CHANGE = 10 COLUMN_CHANGE = 10
INVALID_DATE_FORMAT = config.get('preferences.invalid-date-format')
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# EventModel # EventModel
@ -122,14 +126,25 @@ class EventModel(FlatBaseModel):
if data[COLUMN_DATE]: if data[COLUMN_DATE]:
event = gen.lib.Event() event = gen.lib.Event()
event.unserialize(data) event.unserialize(data)
return DateHandler.get_date(event) date_str = DateHandler.get_date(event)
if date_str != "":
retval = cgi.escape(date_str)
if not DateHandler.get_date_valid(event):
return INVALID_DATE_FORMAT % retval
else:
return retval
return u'' return u''
def sort_date(self,data): def sort_date(self,data):
if data[COLUMN_DATE]: if data[COLUMN_DATE]:
event = gen.lib.Event() event = gen.lib.Event()
event.unserialize(data) event.unserialize(data)
return "%09d" % event.get_date_object().get_sort_value() retval = "%09d" % event.get_date_object().get_sort_value()
if not DateHandler.get_date_valid(event):
return INVALID_DATE_FORMAT % retval
else:
return retval
return u'' return u''
def column_handle(self,data): def column_handle(self,data):

View File

@ -87,7 +87,7 @@ all lines until the next level 2 token is found (in this case, skipping the
# standard python modules # standard python modules
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
import os import os, sys
import re import re
import time import time
import codecs import codecs
@ -428,10 +428,10 @@ MEDIA_MAP = {
# Integer to GEDCOM tag mappings for constants # Integer to GEDCOM tag mappings for constants
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
CALENDAR_MAP = { CALENDAR_MAP_GEDCOM2XML = {
"FRENCH R" : gen.lib.Date.CAL_FRENCH, u"FRENCH R" : gen.lib.Date.CAL_FRENCH,
"JULIAN" : gen.lib.Date.CAL_JULIAN, u"JULIAN" : gen.lib.Date.CAL_JULIAN,
"HEBREW" : gen.lib.Date.CAL_HEBREW, u"HEBREW" : gen.lib.Date.CAL_HEBREW,
} }
QUALITY_MAP = { QUALITY_MAP = {
@ -574,6 +574,21 @@ CALENDAR_MAP = {
gen.lib.Date.CAL_SWEDISH : (MONTH, '@#DUNKNOWN@'), gen.lib.Date.CAL_SWEDISH : (MONTH, '@#DUNKNOWN@'),
} }
CALENDAR_MAP_PARSESTRING = {
gen.lib.Date.CAL_HEBREW : ' (h)',
gen.lib.Date.CAL_FRENCH : ' (f)',
gen.lib.Date.CAL_JULIAN : ' (j)',
gen.lib.Date.CAL_SWEDISH : ' (s)',
}
#how wrong calendar use is shown
CALENDAR_MAP_WRONGSTRING = {
gen.lib.Date.CAL_HEBREW : ' <hebrew>',
gen.lib.Date.CAL_FRENCH : ' <french rep>',
gen.lib.Date.CAL_JULIAN : ' <julian>',
gen.lib.Date.CAL_SWEDISH : ' <swedish>',
}
DATE_MODIFIER = { DATE_MODIFIER = {
gen.lib.Date.MOD_ABOUT : "ABT", gen.lib.Date.MOD_ABOUT : "ABT",
gen.lib.Date.MOD_BEFORE : "BEF", gen.lib.Date.MOD_BEFORE : "BEF",
@ -601,7 +616,11 @@ PERSON_RE = re.compile(r"\s*\d+\s+\@(\S+)\@\s+INDI(.*)$")
MOD = re.compile(r"\s*(INT|EST|CAL)\s+(.*)$") MOD = re.compile(r"\s*(INT|EST|CAL)\s+(.*)$")
CAL = re.compile(r"\s*(ABT|BEF|AFT)?\s*@#D?([^@]+)@\s*(.*)$") CAL = re.compile(r"\s*(ABT|BEF|AFT)?\s*@#D?([^@]+)@\s*(.*)$")
RANGE = re.compile(r"\s*BET\s+@#D?([^@]+)@\s*(.*)\s+AND\s+@#D?([^@]+)@\s*(.*)$") RANGE = re.compile(r"\s*BET\s+@#D?([^@]+)@\s*(.*)\s+AND\s+@#D?([^@]+)@\s*(.*)$")
RANGE1 = re.compile(r"\s*BET\s+\s*(.*)\s+AND\s+@#D?([^@]+)@\s*(.*)$")
RANGE2 = re.compile(r"\s*BET\s+@#D?([^@]+)@\s*(.*)\s+AND\s+\s*(.*)$")
SPAN = re.compile(r"\s*FROM\s+@#D?([^@]+)@\s*(.*)\s+TO\s+@#D?([^@]+)@\s*(.*)$") SPAN = re.compile(r"\s*FROM\s+@#D?([^@]+)@\s*(.*)\s+TO\s+@#D?([^@]+)@\s*(.*)$")
SPAN1 = re.compile(r"\s*FROM\s+\s*(.*)\s+TO\s+@#D?([^@]+)@\s*(.*)$")
SPAN2 = re.compile(r"\s*FROM\s+@#D?([^@]+)@\s*(.*)\s+TO\s+\s*(.*)$")
NAME_RE = re.compile(r"/?([^/]*)(/([^/]*)(/([^/]*))?)?") NAME_RE = re.compile(r"/?([^/]*)(/([^/]*)(/([^/]*))?)?")
SURNAME_RE = re.compile(r"/([^/]*)/([^/]*)") SURNAME_RE = re.compile(r"/([^/]*)/([^/]*)")
@ -643,6 +662,7 @@ class Lexer(object):
try: try:
return GedLine(self.current_list.pop()) return GedLine(self.current_list.pop())
except: except:
LOG.debug('Error in reading Gedcom line', exc_info=True)
return None return None
def __fix_token_cont(self, data): def __fix_token_cont(self, data):
@ -734,72 +754,99 @@ class GedLine(object):
Converts the specified text to a gen.lib.Date object. Converts the specified text to a gen.lib.Date object.
""" """
dateobj = gen.lib.Date() dateobj = gen.lib.Date()
text = text.replace('BET ABT','EST BET') # Horrible hack for importing text = text.replace('BET ABT','EST BET') # Horrible hack for importing
# illegal GEDCOM from # illegal GEDCOM from
# Apple Macintosh Classic # Apple Macintosh Classic
# 'Gene' program # 'Gene' program
try:
# extract out the MOD line # extract out the MOD line
match = MOD.match(text) match = MOD.match(text)
mod = ''
if match: if match:
(mod, text) = match.groups() (mod, text) = match.groups()
qual = QUALITY_MAP.get(mod, gen.lib.Date.QUAL_NONE) qual = QUALITY_MAP.get(mod, gen.lib.Date.QUAL_NONE)
mod += ' '
else: else:
qual = gen.lib.Date.QUAL_NONE qual = gen.lib.Date.QUAL_NONE
# parse the range if we match, if so, return # parse the range if we match, if so, return
match = RANGE.match(text) match = RANGE.match(text)
match1 = RANGE1.match(text)
match2 = RANGE2.match(text)
if match or match1 or match2:
if match: if match:
(cal1, data1, cal2, data2) = match.groups() (cal1, data1, cal2, data2) = match.groups()
elif match1:
cal1 = gen.lib.Date.CAL_GREGORIAN
(data1, cal2, data2) = match1.groups()
elif match2:
cal2 = gen.lib.Date.CAL_GREGORIAN
(cal1, data1, data2) = match2.groups()
cal1 = CALENDAR_MAP_GEDCOM2XML.get(cal1, gen.lib.Date.CAL_GREGORIAN)
cal2 = CALENDAR_MAP_GEDCOM2XML.get(cal2, gen.lib.Date.CAL_GREGORIAN)
if cal1 != cal2:
#not supported by GRAMPS, import as text, we construct a string
# that the parser will not parse as a correct date
return GedLine.__DATE_CNV.parse('%sbetween %s%s and %s%s' %
(mod, data1, CALENDAR_MAP_WRONGSTRING.get(cal1, ''),
CALENDAR_MAP_WRONGSTRING.get(cal2, ''), data2))
cal = CALENDAR_MAP.get(cal1, gen.lib.Date.CAL_GREGORIAN) #add hebrew, ... calendar so that months are recognized
data1 += CALENDAR_MAP_PARSESTRING.get(cal1, '')
data2 += CALENDAR_MAP_PARSESTRING.get(cal2, '')
start = GedLine.__DATE_CNV.parse(data1) start = GedLine.__DATE_CNV.parse(data1)
stop = GedLine.__DATE_CNV.parse(data2) stop = GedLine.__DATE_CNV.parse(data2)
dateobj.set(gen.lib.Date.QUAL_NONE, gen.lib.Date.MOD_RANGE, cal, dateobj.set(gen.lib.Date.QUAL_NONE, gen.lib.Date.MOD_RANGE, cal1,
start.get_start_date() + stop.get_start_date()) start.get_start_date() + stop.get_start_date())
dateobj.set_quality(qual) dateobj.set_quality(qual)
return dateobj return dateobj
# parse a span if we match # parse a span if we match
match = SPAN.match(text) match = SPAN.match(text)
match1 = SPAN1.match(text)
match2 = SPAN2.match(text)
if match or match1 or match2:
if match: if match:
(cal1, data1, cal2, data2) = match.groups() (cal1, data1, cal2, data2) = match.groups()
elif match1:
cal = CALENDAR_MAP.get(cal1, gen.lib.Date.CAL_GREGORIAN) cal1 = gen.lib.Date.CAL_GREGORIAN
(data1, cal2, data2) = match1.groups()
elif match2:
cal2 = gen.lib.Date.CAL_GREGORIAN
(cal1, data1, data2) = match2.groups()
cal1 = CALENDAR_MAP_GEDCOM2XML.get(cal1, gen.lib.Date.CAL_GREGORIAN)
cal2 = CALENDAR_MAP_GEDCOM2XML.get(cal2, gen.lib.Date.CAL_GREGORIAN)
if cal1 != cal2:
#not supported by GRAMPS, import as text, we construct a string
# that the parser will not parse as a correct date
return GedLine.__DATE_CNV.parse('%sfrom %s%s to %s%s' %
(mod, data1, CALENDAR_MAP_WRONGSTRING.get(cal1, ''),
CALENDAR_MAP_WRONGSTRING.get(cal2, ''), data2))
#add hebrew, ... calendar so that months are recognized
data1 += CALENDAR_MAP_PARSESTRING.get(cal1, '')
data2 += CALENDAR_MAP_PARSESTRING.get(cal2, '')
start = GedLine.__DATE_CNV.parse(data1) start = GedLine.__DATE_CNV.parse(data1)
stop = GedLine.__DATE_CNV.parse(data2) stop = GedLine.__DATE_CNV.parse(data2)
dateobj.set(gen.lib.Date.QUAL_NONE, gen.lib.Date.MOD_SPAN, cal, dateobj.set(gen.lib.Date.QUAL_NONE, gen.lib.Date.MOD_SPAN, cal1,
start.get_start_date() + stop.get_start_date()) start.get_start_date() + stop.get_start_date())
dateobj.set_quality(qual) dateobj.set_quality(qual)
return dateobj return dateobj
match = CAL.match(text) match = CAL.match(text)
if match: if match:
(abt, cal, data) = match.groups() (abt, call, data) = match.groups()
call = CALENDAR_MAP_GEDCOM2XML.get(call, gen.lib.Date.CAL_GREGORIAN)
data += CALENDAR_MAP_PARSESTRING.get(call, '')
if abt: if abt:
dateobj = GedLine.__DATE_CNV.parse("%s %s" % (abt, data)) dateobj = GedLine.__DATE_CNV.parse("%s %s" % (abt, data))
else: else:
dateobj = GedLine.__DATE_CNV.parse(data) dateobj = GedLine.__DATE_CNV.parse(data)
dateobj.set_calendar(
CALENDAR_MAP.get(cal, gen.lib.Date.CAL_GREGORIAN))
dateobj.set_quality(qual) dateobj.set_quality(qual)
return dateobj return dateobj
dateobj = GedLine.__DATE_CNV.parse(text) dateobj = GedLine.__DATE_CNV.parse(text)
dateobj.set_quality(qual) dateobj.set_quality(qual)
return dateobj return dateobj
# FIXME: explain where/why an IOError might arise
# and also: is such a long try-clause needed
# having this fallback invites "what about other exceptions?"
except IOError:
# fallback strategy (evidently)
return GedLine.__DATE_CNV.set_text(text)
def __init__(self, data): def __init__(self, data):
""" """
If the level is 0, then this is a top level instance. In this case, If the level is 0, then this is a top level instance. In this case,

View File

@ -84,6 +84,8 @@ class EventView(ListView):
_('Last Changed'), _('Last Changed'),
_('Main Participants'), _('Main Participants'),
] ]
# columns that contain markup
MARKUP_COLS = [COL_DATE]
# default setting with visible columns, order of the col, and their size # default setting with visible columns, order of the col, and their size
CONFIGSETTINGS = ( CONFIGSETTINGS = (
('columns.visible', [COL_DESCR, COL_ID, COL_TYPE, COL_DATE, COL_PLACE]), ('columns.visible', [COL_DESCR, COL_ID, COL_TYPE, COL_DATE, COL_PLACE]),
@ -115,7 +117,8 @@ class EventView(ListView):
signal_map, dbstate.db.get_event_bookmarks(), signal_map, dbstate.db.get_event_bookmarks(),
Bookmarks.EventBookmarks, nav_group, Bookmarks.EventBookmarks, nav_group,
multiple=True, multiple=True,
filter_class=EventSidebarFilter) filter_class=EventSidebarFilter,
markup = EventView.MARKUP_COLS)
self.func_list = { self.func_list = {
'<CONTROL>J' : self.jump, '<CONTROL>J' : self.jump,