* src/docgen/Makefile.am: Remove AbiWordDoc.py from the list.

* src/plugins/DetAncestralReport.py (write_person): Call write_note().
* src/plugins/DetDescendantReport.py (write_person): Call write_note().
* src/plugins/FtmStyleAncestors.py (print_notes): Call write_note().
* src/plugins/IndivComplete.py (write_note): Call doc.write_note().
* src/plugins/WebPage.py (write_gallery,write_notes): Call write_note().


svn: r2523
This commit is contained in:
Alex Roitman
2003-12-15 04:18:51 +00:00
parent e5fe097315
commit f829336c33
7 changed files with 21 additions and 24 deletions

@@ -480,10 +480,8 @@ class FtmAncestorReport(Report.Report):
self.doc.write_text(_('Notes for %(person)s:') % {
'person' : person.getPrimaryName().getRegularName()} )
self.doc.end_paragraph()
for line in note.split('\n'):
self.doc.start_paragraph('FTA-Details')
self.doc.write_text(line.strip())
self.doc.end_paragraph()
format = person.getNoteFormat()
self.doc.write_note(note,format,'FTA-Details')
def print_more_about(self,person):