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:
Tim Waugh 2003-07-25 10:45:24 +00:00
parent 9e51368702
commit 794b331a82
2 changed files with 6 additions and 0 deletions

View File

@ -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>
* src/GenericFilter.py: Several more filters which iterate over
other filters.

View File

@ -470,6 +470,8 @@ class GedcomParser:
title = matches[2] + d
title = string.replace(title,'\n',' ')
self.source.setTitle(title)
elif matches[1] == "ABBR":
pass
else:
if note:
note = "%s\n%s %s" % (note,matches[1],matches[2])