From 0b2bc9d6475883aa1158b2cd1a74dd3bc3747a51 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Mon, 21 Jul 2008 02:20:12 +0000 Subject: [PATCH] 0002288: Missing dot/space after spouse's name on DetAncestral report svn: r10887 --- src/plugins/DetAncestralReport.py | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/plugins/DetAncestralReport.py b/src/plugins/DetAncestralReport.py index 096eefa88..9ce2c8885 100644 --- a/src/plugins/DetAncestralReport.py +++ b/src/plugins/DetAncestralReport.py @@ -561,11 +561,11 @@ class DetAncestorReport(Report): def write_mate(self, mate): """Output birth, death, parentage, marriage and notes information """ ind = None + has_info = False for family_handle in mate.get_family_handle_list(): family = self.database.get_family_from_handle(family_handle) ind_handle = None - has_info = False if mate.get_gender() == gen.lib.Person.MALE: ind_handle = family.get_mother_handle() else: @@ -587,13 +587,25 @@ class DetAncestorReport(Report): f = self.database.get_family_from_handle(family_handle) if f.get_mother_handle() or f.get_father_handle(): has_info = True + break if has_info: self.doc.start_paragraph("DAR-Entry") - person_name = _nd.display(ind) - person_mark = ReportUtils.get_person_mark(self.database, ind) - self.doc.write_text(person_name, person_mark) + plist = ind.get_media_list() + + if self.addimages and len(plist) > 0: + photo = plist[0] + ReportUtils.insert_image(self.database, self.doc, photo) + + name = _nd.display_formal(ind) + mark = ReportUtils.get_person_mark(self.database, ind) + + self.doc.write_text(name, mark) + if name[-1:] == '.': + self.doc.write_text("%s " % self.endnotes(ind)) + else: + self.doc.write_text("%s. " % self.endnotes(ind)) first_name = ReportUtils.common_name(ind, self.usecall) print_name = first_name