* src/plugins/ReadGedcom.py (parse_source): Stop TEXT messing
up the title; add ABBR to the note field (was ignored). svn: r2435
This commit is contained in:
parent
686b879a4a
commit
7f5dc667af
@ -1,3 +1,7 @@
|
|||||||
|
2003-12-03 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
|
* src/plugins/ReadGedcom.py (parse_source): Stop TEXT messing
|
||||||
|
up the title; add ABBR to the note field (was ignored).
|
||||||
|
|
||||||
2003-12-02 Don Allingham <dallingham@users.sourceforge.net>
|
2003-12-02 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* src/PeopleView.py (PeopleView.clear_person_tabs): initialize
|
* src/PeopleView.py (PeopleView.clear_person_tabs): initialize
|
||||||
the model2page map with the default list, instead of clearing it.
|
the model2page map with the default list, instead of clearing it.
|
||||||
|
@ -469,11 +469,12 @@ class GedcomParser:
|
|||||||
note = "%s\n%s %s%s" % (note,matches[1],matches[2],d)
|
note = "%s\n%s %s%s" % (note,matches[1],matches[2],d)
|
||||||
else:
|
else:
|
||||||
note = "%s %s%s" % (matches[1],matches[2],d)
|
note = "%s %s%s" % (matches[1],matches[2],d)
|
||||||
title = matches[2] + d
|
|
||||||
title = string.replace(title,'\n',' ')
|
|
||||||
self.source.setTitle(title)
|
|
||||||
elif matches[1] == "ABBR":
|
elif matches[1] == "ABBR":
|
||||||
pass
|
d = self.parse_continue_data(level+1)
|
||||||
|
if note:
|
||||||
|
note = "%s\n%s %s%s" % (note,matches[1],matches[2],d)
|
||||||
|
else:
|
||||||
|
note = "%s %s%s" % (matches[1],matches[2],d)
|
||||||
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