2003-06-26 Tim Waugh <twaugh@redhat.com>
* src/plugins/Ancestors.py: Include notes for principal names. svn: r1785
This commit is contained in:
parent
4b1494b3dd
commit
aae70e843f
@ -1,6 +1,7 @@
|
|||||||
2003-06-26 Tim Waugh <twaugh@redhat.com>
|
2003-06-26 Tim Waugh <twaugh@redhat.com>
|
||||||
* src/plugins/Ancestors.py: Briefly list children from other
|
* src/plugins/Ancestors.py: Include notes for principal names.
|
||||||
marriages. Make extra table cells for other spouses.
|
Briefly list children from other marriages. Make extra table
|
||||||
|
cells for other spouses.
|
||||||
|
|
||||||
2003-06-25 Don Allingham <dallingham@users.sourceforge.net>
|
2003-06-25 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* src/plugins/ReadGedcom.py: removed unused variable
|
* src/plugins/ReadGedcom.py: removed unused variable
|
||||||
|
@ -510,6 +510,9 @@ class AncestorsReport (Report.Report):
|
|||||||
return ret
|
return ret
|
||||||
|
|
||||||
def inline_notes (self, person):
|
def inline_notes (self, person):
|
||||||
|
name_note = person.getPrimaryName ().getNote ()
|
||||||
|
if not (name_note == '' or name_note.find ('\n') != -1):
|
||||||
|
return ' Note about their name: ' + name_note
|
||||||
note = person.getNote ()
|
note = person.getNote ()
|
||||||
if not (note == '' or note.find ('\n') != -1):
|
if not (note == '' or note.find ('\n') != -1):
|
||||||
return ' ' + note
|
return ' ' + note
|
||||||
|
Loading…
Reference in New Issue
Block a user