* src/plugins/ReadGedcom.py: handle mangled temple format
produced by some tools svn: r3169
This commit is contained in:
parent
372a82abf0
commit
626b453304
@ -1084,7 +1084,9 @@ class GedcomParser:
|
||||
self.backup()
|
||||
break
|
||||
elif matches[1] == "TEMP":
|
||||
ord.set_temple(matches[2])
|
||||
value = extract_temple(matches[2])
|
||||
if value:
|
||||
ord.setTemple(value)
|
||||
elif matches[1] == "DATE":
|
||||
ord.set_date_object(self.extract_date(matches[2]))
|
||||
elif matches[1] == "FAMC":
|
||||
@ -1736,6 +1738,16 @@ class GedcomParser:
|
||||
|
||||
self.db.pmap_index = new_pmax
|
||||
|
||||
def extract_temple(text):
|
||||
try:
|
||||
if const.lds_temple_to_abrev.has_key(matches[2]):
|
||||
return const.lds_temple_to_abrev[matches[2]]
|
||||
else:
|
||||
values = split(matches[2])
|
||||
return const.lds_temple_to_abrev[values[0]]
|
||||
except:
|
||||
return None
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user