2003-07-25 Tim Waugh <twaugh@redhat.com>
* src/plugins/ReadGedcom.py: Handle ABBR in source definitions (i.e. handle the GEDCOM that our exporter writes). svn: r1929
This commit is contained in:
parent
9e51368702
commit
794b331a82
@ -1,3 +1,7 @@
|
|||||||
|
2003-07-25 Tim Waugh <twaugh@redhat.com>
|
||||||
|
* src/plugins/ReadGedcom.py: Handle ABBR in source definitions (i.e.
|
||||||
|
handle the GEDCOM that our exporter writes).
|
||||||
|
|
||||||
2003-07-24 Tim Waugh <twaugh@redhat.com>
|
2003-07-24 Tim Waugh <twaugh@redhat.com>
|
||||||
* src/GenericFilter.py: Several more filters which iterate over
|
* src/GenericFilter.py: Several more filters which iterate over
|
||||||
other filters.
|
other filters.
|
||||||
|
@ -470,6 +470,8 @@ class GedcomParser:
|
|||||||
title = matches[2] + d
|
title = matches[2] + d
|
||||||
title = string.replace(title,'\n',' ')
|
title = string.replace(title,'\n',' ')
|
||||||
self.source.setTitle(title)
|
self.source.setTitle(title)
|
||||||
|
elif matches[1] == "ABBR":
|
||||||
|
pass
|
||||||
else:
|
else:
|
||||||
if note:
|
if note:
|
||||||
note = "%s\n%s %s" % (note,matches[1],matches[2])
|
note = "%s\n%s %s" % (note,matches[1],matches[2])
|
||||||
|
Loading…
Reference in New Issue
Block a user