gramps/gramps2/src/plugins/FtmStyleDescendants.py

1570 lines
90 KiB
Python
Raw Normal View History

2003-05-08 08:09:39 +05:30
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2003-2004 Donald N. Allingham
2003-05-08 08:09:39 +05:30
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
2003-05-08 08:09:39 +05:30
# Written by Alex Roitman, largely based on the FtmStyleAncestors.py
# report by Don Allingham
#------------------------------------------------------------------------
#
# python modules
#
#------------------------------------------------------------------------
import os
import cStringIO
2004-12-22 07:26:37 +05:30
from gettext import gettext as _
2003-05-08 08:09:39 +05:30
#------------------------------------------------------------------------
#
# gramps modules
#
#------------------------------------------------------------------------
import Report
import BaseDoc
2003-05-08 08:09:39 +05:30
import RelLib
import Errors
2003-05-10 11:48:34 +05:30
import Utils
2004-12-22 07:26:37 +05:30
import ReportOptions
2003-05-08 08:09:39 +05:30
from QuestionDialog import ErrorDialog
2004-12-22 07:26:37 +05:30
import DateHandler
import const
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
dd = DateHandler.displayer
2003-05-08 08:09:39 +05:30
#------------------------------------------------------------------------
#
# DescendantReport
#
#------------------------------------------------------------------------
class FtmDescendantReport(Report.Report):
2004-12-22 07:26:37 +05:30
def __init__(self,database,person,options_class):
"""
Creates the Ftm-Style Descendant object that produces the report.
The arguments are:
database - the GRAMPS database instance
person - currently selected person
options_class - instance of the Options class for this report
This report needs the following parameters (class variables)
that come in the options class.
max_gen - Maximum number of generations to include.
pg_breaks - Whether to include page breaks between generations.
document - BaseDoc instance for the output file. Any class derived
from BaseDoc may be used
output - name of the output file.
None if report is not a standalone, in which case
somebody must take care of opening and initializing report
prior to writing.
newpage - if True, newpage is made before writing a report
"""
2003-05-08 08:09:39 +05:30
self.database = database
self.start = person
2004-12-22 07:26:37 +05:30
self.options_class = options_class
self.anc_map = {}
self.gen_map = {}
(self.max_generations,self.pgbrk) \
= options_class.get_report_generations()
2004-12-22 07:26:37 +05:30
self.doc = options_class.get_document()
output = options_class.get_output()
self.newpage = options_class.get_newpage()
2004-12-22 07:26:37 +05:30
self.setup()
2004-12-22 07:26:37 +05:30
if output:
self.standalone = 1
self.doc.open(output)
self.doc.init()
else:
self.standalone = 0
2003-05-08 08:09:39 +05:30
self.sref_map = {}
self.sref_index = 0
2003-05-08 08:09:39 +05:30
2003-05-10 11:48:34 +05:30
def setup(self):
tbl = BaseDoc.TableStyle()
2003-05-10 11:48:34 +05:30
tbl.set_width(100)
tbl.set_columns(3)
tbl.set_column_width(0,10)
tbl.set_column_width(1,5)
tbl.set_column_width(2,85)
self.doc.add_table_style('FTD-ChildTable',tbl)
2003-05-10 11:48:34 +05:30
cell = BaseDoc.TableCellStyle()
self.doc.add_cell_style('FTD-Normal',cell)
2003-05-10 11:48:34 +05:30
def apply_filter(self,person_handle,index,generation=1):
2003-05-08 08:09:39 +05:30
if (not person_handle) or (generation > self.max_generations):
2003-05-08 08:09:39 +05:30
return
self.anc_map[index] = person_handle
2003-05-10 11:48:34 +05:30
try:
self.gen_map[generation].append(index)
except:
self.gen_map[generation] = []
self.gen_map[generation].append(index)
2003-05-08 08:09:39 +05:30
person = self.database.get_person_from_handle(person_handle)
for family_handle in person.get_family_handle_list():
* PeopleModel.py: simplify model interface * EditPerson.py: get_family_from_handle fixes * EditSource.py: get_family_from_handle fixes * GraphLayout.py: get_family_from_handle fixes * ImageSelect.py: get_family_from_handle fixes * MediaView.py: get_family_from_handle fixes * MergeData.py: get_family_from_handle fixes * PlaceView.py: get_family_from_handle fixes * ReadXML.py: get_family_from_handle fixes * RelLib.py: get_family_from_handle fixes * Relationship.py: get_family_from_handle fixes * SelectChild.py: get_family_from_handle fixes * SourceView.py: get_family_from_handle fixes * SubstKeywords.py: get_family_from_handle fixes * WriteXML.py: get_family_from_handle fixes * gramps_main.py: get_family_from_handle fixes * plugins/AncestorChart.py: get_family_from_handle fixes * plugins/AncestorChart2.py: get_family_from_handle fixes * plugins/AncestorReport.py: get_family_from_handle fixes * plugins/Ancestors.py: get_family_from_handle fixes * plugins/Check.py: get_family_from_handle fixes * plugins/CountAncestors.py: get_family_from_handle fixes * plugins/Desbrowser.py: get_family_from_handle fixes * plugins/DescendReport.py: get_family_from_handle fixes * plugins/DetAncestralReport.py: get_family_from_handle fixes * plugins/DetDescendantReport.py: get_family_from_handle fixes * plugins/FamilyGroup.py: get_family_from_handle fixes * plugins/FanChart.py: get_family_from_handle fixes * plugins/FtmStyleAncestors.py: get_family_from_handle fixes * plugins/FtmStyleDescendants.py: get_family_from_handle fixes * plugins/GraphViz.py: get_family_from_handle fixes * plugins/IndivComplete.py: get_family_from_handle fixes * plugins/IndivSummary.py: get_family_from_handle fixes * plugins/Merge.py: get_family_from_handle fixes * plugins/RelGraph.py: get_family_from_handle fixes * plugins/Verify.py: get_family_from_handle fixes * plugins/WebPage.py: get_family_from_handle fixes * plugins/WriteCD.py: get_family_from_handle fixes * plugins/WritePkg.py: get_family_from_handle fixes * plugins/rel_de.py: get_family_from_handle fixes * plugins/rel_hu.py: get_family_from_handle fixes * plugins/rel_ru.py: get_family_from_handle fixes svn: r3443
2004-08-20 03:05:16 +05:30
family = self.database.get_family_from_handle(family_handle)
for child_handle in family.get_child_handle_list():
2003-05-10 11:48:34 +05:30
ix = max(self.anc_map.keys())
self.apply_filter(child_handle,ix+1,generation+1)
2003-05-08 08:09:39 +05:30
def write_report(self):
if self.newpage:
self.doc.page_break()
self.apply_filter(self.start.get_handle(),1)
2003-05-08 08:09:39 +05:30
name = self.start.get_primary_name().get_regular_name()
self.doc.start_paragraph("FTD-Title")
2003-05-08 08:09:39 +05:30
title = _("Descendants of %s") % name
self.doc.write_text(title)
self.doc.end_paragraph()
2003-05-10 11:48:34 +05:30
generations = self.gen_map.keys()
generations.sort()
2003-05-08 08:09:39 +05:30
2003-05-10 11:48:34 +05:30
for generation in generations:
if self.pgbrk and generation > 1:
2003-05-10 11:48:34 +05:30
self.doc.page_break()
self.doc.start_paragraph("FTD-Generation")
2003-05-10 11:48:34 +05:30
t = _("Generation No. %d") % generation
self.doc.write_text(t)
self.doc.end_paragraph()
2003-05-08 08:09:39 +05:30
2003-05-10 11:48:34 +05:30
indexlist = self.gen_map[generation]
indexlist.sort()
for key in indexlist:
person_handle = self.anc_map[key]
person = self.database.get_person_from_handle(person_handle)
2003-05-08 08:09:39 +05:30
pri_name = person.get_primary_name()
self.doc.start_paragraph("FTD-Entry","%d." % key)
name = pri_name.get_regular_name()
2003-05-10 11:48:34 +05:30
self.doc.start_bold()
self.doc.write_text(name)
self.doc.end_bold()
# Check birth record
2003-05-08 08:09:39 +05:30
birth_handle = person.get_birth_handle()
bplace = ""
bdate = ""
if birth_handle:
birth = self.database.get_event_from_handle(birth_handle)
bdate = birth.get_date()
bplace_handle = birth.get_place_handle()
if bplace_handle:
bplace = self.database.get_place_from_handle(bplace_handle).get_title()
death_handle = person.get_death_handle()
dplace = ""
ddate = ""
if death_handle:
death = self.database.get_event_from_handle(death_handle)
ddate = death.get_date()
dplace_handle = death.get_place_handle()
if dplace_handle:
dplace = self.database.get_place_from_handle(dplace_handle).get_title()
2003-05-08 08:09:39 +05:30
birth_valid = bdate or bplace
death_valid = ddate or dplace
2003-05-08 08:09:39 +05:30
2003-05-10 11:48:34 +05:30
if birth_valid or death_valid:
if person.get_gender() == RelLib.Person.male:
if bdate:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s "
"in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s "
"in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s "
* src/WriteGedcom.py (get_option_box): Make filters inclusive. * src/plugins/merge.glade: Switch button order to comply with HIG. * src/mergedata.glade: Switch button order to comply with HIG. * src/plugins/RelGraph.py (get_default_basename): Add function. * src/plugins/AncestorReport.py (write_report): Translate string properly. * src/EventEdit.py (update_event): Use transtable. * src/EditPerson.py (on_event_add_clicked, on_edit_birth_clicked, on_edit_death_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/Marriage.py (on_add_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/plugins/FtmStyleAncestors.py, src/plugins/FtmStyleDescendants.py: Remove extra space between vars in "%(.*_place)s %(.*_notes)s" * src/plugins/verify.glade: Translate button label. * src/plugins/IndivSummary.py: Proper handling of translation. * src/docgen/OpenOfficeDoc.py (pt2cm): Add function; (draw_text): Convert points to cm for the box width; Use self.string_width() method. * src/BaseDoc.py (string_width): Add a method to compute width. * src/docgen/LPRDoc.py (string_width): Override method. * src/docgen/PdfDoc.py: Use self.string_width() method. * src/docgen/SvgDrawDoc.py: Use self.string_width() method. * src/plugins/AncestorChart2.py: Use self.doc.string_width() method. * src/plugins/AncestorChart.py: Use self.doc.string_width() method. * src/plugins/DesGraph.py: Use self.doc.string_width() method. * src/plugins/FanChart.py: Use self.doc.string_width() method. * src/plugins/TimeLine.py: Use self.doc.string_width() method. * src/plugins/eval.glade: HIG compliance. svn: r3453
2004-08-21 02:56:51 +05:30
"in %(birth_place)s%(birth_endnotes)s, "
"and died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'death_place' : dplace,
})
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s in "
"%(birth_place)s%(birth_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
})
else:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'death_date' : ddate,
'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
"and died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born "
"%(birth_date)s%(birth_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate,
'birth_endnotes' : self.endnotes(birth),
})
2003-05-10 11:48:34 +05:30
else:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_place' : bplace, 'death_date' : ddate, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace, 'death_date' : ddate,
})
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
"and died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_place' : bplace,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s was born "
"in %(birth_place)s%(birth_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
})
else:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s died %(death_date)s in "
"%(death_place)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'death_date' : ddate, 'death_place' : dplace,
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"died %(death_date)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'death_date' : ddate,
'death_endnotes' : self.endnotes(death),
})
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s died "
"in %(death_place)s%(death_endnotes)s.") % {
'male_name' : '', 'endnotes' : self.endnotes(pri_name),
'death_endnotes' : self.endnotes(death),
'death_place' : dplace,
})
2003-05-08 08:09:39 +05:30
else:
if bdate:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s in %(birth_place)s"
"%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s in %(birth_place)s"
"%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'death_date' : ddate,
})
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s in %(birth_place)s"
"%(birth_endnotes)s, "
"and died in %(death_place)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'birth_place' : bplace,
'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s "
* src/WriteGedcom.py (get_option_box): Make filters inclusive. * src/plugins/merge.glade: Switch button order to comply with HIG. * src/mergedata.glade: Switch button order to comply with HIG. * src/plugins/RelGraph.py (get_default_basename): Add function. * src/plugins/AncestorReport.py (write_report): Translate string properly. * src/EventEdit.py (update_event): Use transtable. * src/EditPerson.py (on_event_add_clicked, on_edit_birth_clicked, on_edit_death_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/Marriage.py (on_add_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/plugins/FtmStyleAncestors.py, src/plugins/FtmStyleDescendants.py: Remove extra space between vars in "%(.*_place)s %(.*_notes)s" * src/plugins/verify.glade: Translate button label. * src/plugins/IndivSummary.py: Proper handling of translation. * src/docgen/OpenOfficeDoc.py (pt2cm): Add function; (draw_text): Convert points to cm for the box width; Use self.string_width() method. * src/BaseDoc.py (string_width): Add a method to compute width. * src/docgen/LPRDoc.py (string_width): Override method. * src/docgen/PdfDoc.py: Use self.string_width() method. * src/docgen/SvgDrawDoc.py: Use self.string_width() method. * src/plugins/AncestorChart2.py: Use self.doc.string_width() method. * src/plugins/AncestorChart.py: Use self.doc.string_width() method. * src/plugins/DesGraph.py: Use self.doc.string_width() method. * src/plugins/FanChart.py: Use self.doc.string_width() method. * src/plugins/TimeLine.py: Use self.doc.string_width() method. * src/plugins/eval.glade: HIG compliance. svn: r3453
2004-08-21 02:56:51 +05:30
"in %(birth_place)s%(birth_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'birth_date' : bdate, 'birth_place' : bplace,
})
else:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_date' : bdate, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'death_place' : dplace,
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_date' : bdate, 'death_date' : ddate,
})
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
"and died in %(death_place)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_date' : bdate, 'death_place' : dplace,
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s was "
"born %(birth_date)s%(birth_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'birth_date' : bdate,
})
2003-05-10 11:48:34 +05:30
else:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace, 'death_date' : ddate, 'death_place' : dplace,
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace, 'death_date' : ddate,
})
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
"and died in %(death_place)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace,'death_place' : dplace,
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s was born "
"in %(birth_place)s%(birth_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'birth_endnotes' : self.endnotes(birth),
'birth_place' : bplace,
})
else:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s died %(death_date)s in "
"%(death_place)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'death_endnotes' : self.endnotes(death),
'death_date' : ddate, 'death_place' : dplace,
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"died %(death_date)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'death_endnotes' : self.endnotes(death),
'death_date' : ddate,
})
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s died "
"in %(death_place)s%(death_endnotes)s.") % {
'female_name' : '', 'endnotes' : self.endnotes(pri_name),
'death_endnotes' : self.endnotes(death),
'birth_date' : bdate, 'death_place' : dplace,
})
else:
self.doc.write_text( "%s." % self.endnotes(pri_name) )
2003-05-10 11:48:34 +05:30
self.doc.write_text(' ')
2003-05-10 11:48:34 +05:30
self.print_parents(person,death_valid)
self.print_spouse(person)
self.doc.end_paragraph()
2003-05-08 08:09:39 +05:30
2003-05-10 11:48:34 +05:30
self.print_notes(person)
self.print_more_about(person)
self.print_more_about_families(person)
if generation < self.max_generations:
self.print_children(person)
2003-05-08 08:09:39 +05:30
self.write_endnotes()
if self.standalone:
self.doc.close()
2003-05-08 08:09:39 +05:30
def write_endnotes(self):
keys = self.sref_map.keys()
if not keys:
return
self.doc.start_paragraph('FTD-Generation')
self.doc.write_text(_('Endnotes'))
2003-05-08 08:09:39 +05:30
self.doc.end_paragraph()
keys.sort()
for key in keys:
srcref = self.sref_map[key]
base_handle = srcref.get_base_handle()
base = self.database.get_source_from_handle(base_handle)
2003-05-08 08:09:39 +05:30
self.doc.start_paragraph('FTD-Endnotes',"%d." % key)
self.doc.write_text(base.get_title())
2003-05-08 08:09:39 +05:30
for item in [ base.get_author(), base.get_publication_info(), base.get_abbreviation(),
2004-12-22 07:26:37 +05:30
dd.display(srcref.get_date()),]:
2003-05-08 08:09:39 +05:30
if item:
self.doc.write_text('; %s' % item)
item = srcref.get_text()
2003-05-08 08:09:39 +05:30
if item:
self.doc.write_text('; ')
self.doc.write_text(_('Text:'))
self.doc.write_text(' ')
self.doc.write_text(item)
item = srcref.get_comments()
2003-05-08 08:09:39 +05:30
if item:
self.doc.write_text('; ')
self.doc.write_text(_('Comments:'))
self.doc.write_text(' ')
self.doc.write_text(item)
self.doc.write_text('.')
self.doc.end_paragraph()
def endnotes(self,obj):
msg = cStringIO.StringIO()
slist = obj.get_source_references()
2003-05-08 08:09:39 +05:30
if slist:
msg.write('<super>')
first = 1
2003-05-08 08:09:39 +05:30
for ref in slist:
if not first:
2003-05-08 08:09:39 +05:30
msg.write(',')
first = 0
ref_base = ref.get_base_handle()
the_key = 0
for key in self.sref_map.keys():
if ref_base == self.sref_map[key].get_base_handle():
the_key = key
break
if the_key:
msg.write("%d" % the_key)
else:
self.sref_index += 1
self.sref_map[self.sref_index] = ref
msg.write("%d" % self.sref_index)
2003-05-08 08:09:39 +05:30
msg.write('</super>')
str = msg.getvalue()
msg.close()
return str
def print_notes(self,person):
note = person.get_note()
2003-05-08 08:09:39 +05:30
if not note.strip():
return
self.doc.start_paragraph('FTD-SubEntry')
self.doc.write_text(_('Notes for %(person)s:') % {
'person' : person.get_primary_name().get_regular_name()} )
2003-05-08 08:09:39 +05:30
self.doc.end_paragraph()
format = person.get_note_format()
self.doc.write_note(note,format,'FTD-Details')
2003-05-08 08:09:39 +05:30
def print_more_about(self,person):
first = 1
ncount = 1
for name in person.get_alternate_names():
2003-05-08 08:09:39 +05:30
if first:
self.doc.start_paragraph('FTD-SubEntry')
self.doc.write_text(_('More about %(person_name)s:') % {
'person_name' : person.get_primary_name().get_regular_name() })
2003-05-08 08:09:39 +05:30
self.doc.end_paragraph()
first = 0
self.doc.start_paragraph('FTD-Details')
2003-05-08 08:09:39 +05:30
self.doc.write_text(_('Name %(count)d: %(name)s%(endnotes)s') % {
'count' : ncount, 'name' : name.get_regular_name(),
2003-05-08 08:09:39 +05:30
'endnotes' : self.endnotes(name),
})
self.doc.end_paragraph()
ncount += 1
for event_handle in person.get_event_list():
if not event_handle:
continue
event = self.database.get_event_from_handle(event_handle)
date = event.get_date()
place_handle = event.get_place_handle()
if place_handle:
place = self.database.get_place_from_handle(place_handle)
else:
place = None
2003-05-08 08:09:39 +05:30
if not date and not place:
continue
if first:
self.doc.start_paragraph('FTD-SubEntry')
name = person.get_primary_name().get_regular_name()
2003-05-08 08:09:39 +05:30
self.doc.write_text(_('More about %(person_name)s:') % { 'person_name' : name })
self.doc.end_paragraph()
first = 0
self.doc.start_paragraph('FTD-Details')
2003-05-08 08:09:39 +05:30
if date and place:
self.doc.write_text(_('%(event_name)s: %(date)s, %(place)s%(endnotes)s. ') % {
'event_name' : _(event.get_name()),
'date' : date,
2003-05-08 08:09:39 +05:30
'endnotes' : self.endnotes(event),
'place' : place.get_title() })
2003-05-08 08:09:39 +05:30
elif date:
self.doc.write_text(_('%(event_name)s: %(date)s%(endnotes)s. ') % {
'event_name' : _(event.get_name()),
2003-05-08 08:09:39 +05:30
'endnotes' : self.endnotes(event),
'date' : date})
2003-05-08 08:09:39 +05:30
else:
self.doc.write_text(_('%(event_name)s: %(place)s%(endnotes)s. ') % {
'event_name' : _(event.get_name()),
'endnotes' : self.endnotes(event),
'place' : place.get_title() })
if event.get_description():
self.doc.write_text(event.get_description())
2003-05-08 08:09:39 +05:30
self.doc.end_paragraph()
2003-05-10 11:48:34 +05:30
def print_more_about_families(self,person):
"More about husband and wife"
first = 1
for family_handle in person.get_family_handle_list():
* PeopleModel.py: simplify model interface * EditPerson.py: get_family_from_handle fixes * EditSource.py: get_family_from_handle fixes * GraphLayout.py: get_family_from_handle fixes * ImageSelect.py: get_family_from_handle fixes * MediaView.py: get_family_from_handle fixes * MergeData.py: get_family_from_handle fixes * PlaceView.py: get_family_from_handle fixes * ReadXML.py: get_family_from_handle fixes * RelLib.py: get_family_from_handle fixes * Relationship.py: get_family_from_handle fixes * SelectChild.py: get_family_from_handle fixes * SourceView.py: get_family_from_handle fixes * SubstKeywords.py: get_family_from_handle fixes * WriteXML.py: get_family_from_handle fixes * gramps_main.py: get_family_from_handle fixes * plugins/AncestorChart.py: get_family_from_handle fixes * plugins/AncestorChart2.py: get_family_from_handle fixes * plugins/AncestorReport.py: get_family_from_handle fixes * plugins/Ancestors.py: get_family_from_handle fixes * plugins/Check.py: get_family_from_handle fixes * plugins/CountAncestors.py: get_family_from_handle fixes * plugins/Desbrowser.py: get_family_from_handle fixes * plugins/DescendReport.py: get_family_from_handle fixes * plugins/DetAncestralReport.py: get_family_from_handle fixes * plugins/DetDescendantReport.py: get_family_from_handle fixes * plugins/FamilyGroup.py: get_family_from_handle fixes * plugins/FanChart.py: get_family_from_handle fixes * plugins/FtmStyleAncestors.py: get_family_from_handle fixes * plugins/FtmStyleDescendants.py: get_family_from_handle fixes * plugins/GraphViz.py: get_family_from_handle fixes * plugins/IndivComplete.py: get_family_from_handle fixes * plugins/IndivSummary.py: get_family_from_handle fixes * plugins/Merge.py: get_family_from_handle fixes * plugins/RelGraph.py: get_family_from_handle fixes * plugins/Verify.py: get_family_from_handle fixes * plugins/WebPage.py: get_family_from_handle fixes * plugins/WriteCD.py: get_family_from_handle fixes * plugins/WritePkg.py: get_family_from_handle fixes * plugins/rel_de.py: get_family_from_handle fixes * plugins/rel_hu.py: get_family_from_handle fixes * plugins/rel_ru.py: get_family_from_handle fixes svn: r3443
2004-08-20 03:05:16 +05:30
family = self.database.get_family_from_handle(family_handle)
father_handle = family.get_father_handle()
mother_handle = family.get_mother_handle()
if father_handle and mother_handle:
husband = self.database.get_person_from_handle(father_handle).get_primary_name().get_regular_name()
wife = self.database.get_person_from_handle(mother_handle).get_primary_name().get_regular_name()
2003-05-10 11:48:34 +05:30
else:
continue
for event_handle in family.get_event_list():
if not event_handle:
continue
event = self.database.get_event_from_handle(event_handle)
date = event.get_date()
place_handle = event.get_place_handle()
if place_handle:
place = self.database.get_place_from_handle(place_handle)
else:
place = None
2003-05-10 11:48:34 +05:30
if not date and not place:
continue
if first:
self.doc.start_paragraph('FTD-SubEntry')
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('More about %(husband)s and %(wife)s:') % { 'husband' : husband, 'wife' : wife })
self.doc.end_paragraph()
first = 0
self.doc.start_paragraph('FTD-Details')
2003-05-10 11:48:34 +05:30
if date and place:
self.doc.write_text(_('%(event_name)s: %(date)s, %(place)s%(endnotes)s. ') % {
'event_name' : _(event.get_name()),
'date' : date,
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event),
'place' : place.get_title() })
2003-05-10 11:48:34 +05:30
elif date:
self.doc.write_text(_('%(event_name)s: %(date)s%(endnotes)s. ') % {
'event_name' : _(event.get_name()),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event),
'date' : date})
2003-05-10 11:48:34 +05:30
else:
self.doc.write_text(_('%(event_name)s: %(place)s%(endnotes)s. ') % {
'event_name' : _(event.get_name()),
'endnotes' : self.endnotes(event),
'place' : place.get_title() })
if event.get_description():
self.doc.write_text(event.get_description())
2003-05-10 11:48:34 +05:30
self.doc.end_paragraph()
def print_children(self,person):
"Children of such-and-such"
name = person.get_primary_name().get_regular_name()
2003-05-10 11:48:34 +05:30
for family_handle in person.get_family_handle_list():
* PeopleModel.py: simplify model interface * EditPerson.py: get_family_from_handle fixes * EditSource.py: get_family_from_handle fixes * GraphLayout.py: get_family_from_handle fixes * ImageSelect.py: get_family_from_handle fixes * MediaView.py: get_family_from_handle fixes * MergeData.py: get_family_from_handle fixes * PlaceView.py: get_family_from_handle fixes * ReadXML.py: get_family_from_handle fixes * RelLib.py: get_family_from_handle fixes * Relationship.py: get_family_from_handle fixes * SelectChild.py: get_family_from_handle fixes * SourceView.py: get_family_from_handle fixes * SubstKeywords.py: get_family_from_handle fixes * WriteXML.py: get_family_from_handle fixes * gramps_main.py: get_family_from_handle fixes * plugins/AncestorChart.py: get_family_from_handle fixes * plugins/AncestorChart2.py: get_family_from_handle fixes * plugins/AncestorReport.py: get_family_from_handle fixes * plugins/Ancestors.py: get_family_from_handle fixes * plugins/Check.py: get_family_from_handle fixes * plugins/CountAncestors.py: get_family_from_handle fixes * plugins/Desbrowser.py: get_family_from_handle fixes * plugins/DescendReport.py: get_family_from_handle fixes * plugins/DetAncestralReport.py: get_family_from_handle fixes * plugins/DetDescendantReport.py: get_family_from_handle fixes * plugins/FamilyGroup.py: get_family_from_handle fixes * plugins/FanChart.py: get_family_from_handle fixes * plugins/FtmStyleAncestors.py: get_family_from_handle fixes * plugins/FtmStyleDescendants.py: get_family_from_handle fixes * plugins/GraphViz.py: get_family_from_handle fixes * plugins/IndivComplete.py: get_family_from_handle fixes * plugins/IndivSummary.py: get_family_from_handle fixes * plugins/Merge.py: get_family_from_handle fixes * plugins/RelGraph.py: get_family_from_handle fixes * plugins/Verify.py: get_family_from_handle fixes * plugins/WebPage.py: get_family_from_handle fixes * plugins/WriteCD.py: get_family_from_handle fixes * plugins/WritePkg.py: get_family_from_handle fixes * plugins/rel_de.py: get_family_from_handle fixes * plugins/rel_hu.py: get_family_from_handle fixes * plugins/rel_ru.py: get_family_from_handle fixes svn: r3443
2004-08-20 03:05:16 +05:30
family = self.database.get_family_from_handle(family_handle)
2003-05-10 11:48:34 +05:30
first = 1
father_handle = family.get_father_handle()
mother_handle = family.get_mother_handle()
if father_handle == person.get_handle():
spouse_id = mother_handle
2003-05-10 11:48:34 +05:30
else:
spouse_id = father_handle
spouse = self.database.get_person_from_handle(spouse_id)
2003-05-10 11:48:34 +05:30
child_index = 0
for child_handle in family.get_child_handle_list():
child = self.database.get_person_from_handle(child_handle)
2003-05-10 11:48:34 +05:30
child_index = child_index + 1
child_name = child.get_primary_name().get_regular_name()
for (ind,p_id) in self.anc_map.items():
if p_id == child_handle:
2003-05-10 11:48:34 +05:30
index = ind
if first:
2003-05-10 11:48:34 +05:30
first = 0
self.doc.start_paragraph('FTD-SubEntry')
2003-05-10 11:48:34 +05:30
if spouse:
self.doc.write_text(_('Children of %(person_name)s and %(spouse_name)s are:') % {
'person_name' : name, 'spouse_name' : spouse.get_primary_name().get_regular_name() })
2003-05-10 11:48:34 +05:30
else:
self.doc.write_text(_('Children of %(person_name)s are:') % { 'person_name' : name })
self.doc.end_paragraph()
self.doc.start_table(family.get_handle(),'FTD-ChildTable')
2003-05-10 11:48:34 +05:30
self.doc.start_row()
self.doc.start_cell('FTD-Normal')
self.doc.start_paragraph('FTD-Child-Num')
2003-05-10 11:48:34 +05:30
self.doc.write_text("%d." % index)
self.doc.end_paragraph()
self.doc.end_cell()
self.doc.start_cell('FTD-Normal')
self.doc.start_paragraph('FTD-Child-Num')
2004-12-23 06:31:06 +05:30
self.doc.write_text("%s." % Utils.roman(child_index).lower())
2003-05-10 11:48:34 +05:30
self.doc.end_paragraph()
self.doc.end_cell()
self.doc.start_cell('FTD-Normal')
self.doc.start_paragraph('FTD-Details')
2003-05-10 11:48:34 +05:30
birth_handle = child.get_birth_handle()
bplace = ""
bdate = ""
if birth_handle:
birth = self.database.get_event_from_handle(birth_handle)
bdate = birth.get_date()
bplace_handle = birth.get_place_handle()
if bplace_handle:
bplace = self.database.get_place_from_handle(bplace_handle).get_title()
death_handle = child.get_death_handle()
dplace = ""
ddate = ""
if death_handle:
death = self.database.get_event_from_handle(death_handle)
ddate = death.get_date()
dplace_handle = death.get_place_handle()
if dplace_handle:
dplace = self.database.get_place_from_handle(dplace_handle).get_title()
if child.get_gender() == RelLib.Person.male:
2003-05-10 11:48:34 +05:30
if bdate:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth) })
else:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"was born %(birth_date)s%(birth_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_endnotes' : self.endnotes(birth) })
else:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"was born in %(birth_place)s%(birth_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth) })
else:
if ddate:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'death_date' : ddate, 'death_place' : dplace,
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"died %(death_date)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'death_date' : ddate,
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'death_place' : dplace,
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(male_name)s%(endnotes)s.") % {
'male_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()) })
2003-05-10 11:48:34 +05:30
else:
if bdate:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"was born %(birth_date)s in %(birth_place)s%(birth_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth) })
else:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born %(birth_date)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"was born %(birth_date)s%(birth_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_date' : bdate, 'birth_endnotes' : self.endnotes(birth) })
else:
if bplace:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
2003-05-27 22:48:01 +05:30
"was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-10 11:48:34 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"was born in %(birth_place)s%(birth_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth) })
else:
if ddate:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'death_date' : ddate, 'death_place' : dplace,
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"died %(death_date)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'death_date' : ddate,
'death_endnotes' : self.endnotes(death) })
else:
if dplace:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"died in %(death_place)s%(death_endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()),
2003-05-10 11:48:34 +05:30
'death_place' : dplace,
'death_endnotes' : self.endnotes(death) })
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s.") % {
'female_name' : child_name, 'endnotes' : self.endnotes(child.get_primary_name()) })
2003-05-10 11:48:34 +05:30
self.doc.end_paragraph()
self.doc.end_cell()
self.doc.end_row()
if not first:
2004-12-22 07:26:37 +05:30
self.doc.end_table()
2003-05-10 11:48:34 +05:30
first = 1
2003-05-08 08:09:39 +05:30
def print_spouse(self,person):
family_list = person.get_family_handle_list()
2003-05-08 08:09:39 +05:30
if not family_list:
return
family_handle = family_list[0]
* PeopleModel.py: simplify model interface * EditPerson.py: get_family_from_handle fixes * EditSource.py: get_family_from_handle fixes * GraphLayout.py: get_family_from_handle fixes * ImageSelect.py: get_family_from_handle fixes * MediaView.py: get_family_from_handle fixes * MergeData.py: get_family_from_handle fixes * PlaceView.py: get_family_from_handle fixes * ReadXML.py: get_family_from_handle fixes * RelLib.py: get_family_from_handle fixes * Relationship.py: get_family_from_handle fixes * SelectChild.py: get_family_from_handle fixes * SourceView.py: get_family_from_handle fixes * SubstKeywords.py: get_family_from_handle fixes * WriteXML.py: get_family_from_handle fixes * gramps_main.py: get_family_from_handle fixes * plugins/AncestorChart.py: get_family_from_handle fixes * plugins/AncestorChart2.py: get_family_from_handle fixes * plugins/AncestorReport.py: get_family_from_handle fixes * plugins/Ancestors.py: get_family_from_handle fixes * plugins/Check.py: get_family_from_handle fixes * plugins/CountAncestors.py: get_family_from_handle fixes * plugins/Desbrowser.py: get_family_from_handle fixes * plugins/DescendReport.py: get_family_from_handle fixes * plugins/DetAncestralReport.py: get_family_from_handle fixes * plugins/DetDescendantReport.py: get_family_from_handle fixes * plugins/FamilyGroup.py: get_family_from_handle fixes * plugins/FanChart.py: get_family_from_handle fixes * plugins/FtmStyleAncestors.py: get_family_from_handle fixes * plugins/FtmStyleDescendants.py: get_family_from_handle fixes * plugins/GraphViz.py: get_family_from_handle fixes * plugins/IndivComplete.py: get_family_from_handle fixes * plugins/IndivSummary.py: get_family_from_handle fixes * plugins/Merge.py: get_family_from_handle fixes * plugins/RelGraph.py: get_family_from_handle fixes * plugins/Verify.py: get_family_from_handle fixes * plugins/WebPage.py: get_family_from_handle fixes * plugins/WriteCD.py: get_family_from_handle fixes * plugins/WritePkg.py: get_family_from_handle fixes * plugins/rel_de.py: get_family_from_handle fixes * plugins/rel_hu.py: get_family_from_handle fixes * plugins/rel_ru.py: get_family_from_handle fixes svn: r3443
2004-08-20 03:05:16 +05:30
family = self.database.get_family_from_handle(family_handle)
if family.get_father_handle() == person.get_handle():
spouse_id = family.get_mother_handle()
2003-05-08 08:09:39 +05:30
else:
spouse_id = family.get_father_handle()
if not spouse_id:
2003-05-08 08:09:39 +05:30
return
spouse = self.database.get_person_from_handle(spouse_id)
for event_handle in family.get_event_list():
if event_handle:
event = self.database.get_event_from_handle(event_handle)
if event.get_name() == "Marriage":
break
else:
event = None
2003-05-08 08:09:39 +05:30
if not event:
return
date = event.get_date()
place_handle = event.get_place_handle()
if place_handle:
place = self.database.get_place_from_handle(place_handle).get_title()
else:
place = ""
2003-05-08 08:09:39 +05:30
if date and place:
if person.get_gender() == RelLib.Person.male:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('He married %(spouse)s %(date)s in %(place)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event),
'date' : date,
'place' : place})
2003-05-08 08:09:39 +05:30
else:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('She married %(spouse)s %(date)s in %(place)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'date' : date,
'endnotes' : self.endnotes(event),
'place' : place})
2003-05-08 08:09:39 +05:30
elif date:
if person.get_gender() == RelLib.Person.male:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('He married %(spouse)s %(date)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event),
'date' : date,})
2003-05-08 08:09:39 +05:30
else:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('She married %(spouse)s in %(place)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event),
'place' : place,})
2003-05-08 08:09:39 +05:30
elif place:
if person.get_gender() == RelLib.Person.male:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('He married %(spouse)s in %(place)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event),
'place' : place})
2003-05-08 08:09:39 +05:30
else:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('She married %(spouse)s in %(place)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event),
'place' : place})
2003-05-08 08:09:39 +05:30
else:
if person.get_gender() == RelLib.Person.male:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('He married %(spouse)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event) })
2003-05-08 08:09:39 +05:30
else:
2003-05-10 11:48:34 +05:30
self.doc.write_text(_('She married %(spouse)s%(endnotes)s.') % {
'spouse' : spouse.get_primary_name().get_regular_name(),
2003-05-10 11:48:34 +05:30
'endnotes' : self.endnotes(event)})
2003-05-08 08:09:39 +05:30
self.doc.write_text(' ')
birth_handle = spouse.get_birth_handle()
bplace = ""
bdate = ""
if birth_handle:
birth = self.database.get_event_from_handle(birth_handle)
bdate = birth.get_date()
bplace_handle = birth.get_place_handle()
if bplace_handle:
bplace = self.database.get_place_from_handle(bplace_handle).get_title()
death_handle = spouse.get_death_handle()
dplace = ""
ddate = ""
if death_handle:
death = self.database.get_event_from_handle(death_handle)
ddate = death.get_date()
dplace_handle = death.get_place_handle()
if dplace_handle:
dplace = self.database.get_place_from_handle(dplace_handle).get_title()
death_valid = ddate or dplace
birth_valid = bdate or bplace
2003-05-08 08:09:39 +05:30
if birth_valid or death_valid:
if spouse.get_gender() == RelLib.Person.male:
2003-05-08 08:09:39 +05:30
if bdate:
if bplace:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s "
"in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s "
"in %(birth_place)s%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s "
* src/WriteGedcom.py (get_option_box): Make filters inclusive. * src/plugins/merge.glade: Switch button order to comply with HIG. * src/mergedata.glade: Switch button order to comply with HIG. * src/plugins/RelGraph.py (get_default_basename): Add function. * src/plugins/AncestorReport.py (write_report): Translate string properly. * src/EventEdit.py (update_event): Use transtable. * src/EditPerson.py (on_event_add_clicked, on_edit_birth_clicked, on_edit_death_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/Marriage.py (on_add_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/plugins/FtmStyleAncestors.py, src/plugins/FtmStyleDescendants.py: Remove extra space between vars in "%(.*_place)s %(.*_notes)s" * src/plugins/verify.glade: Translate button label. * src/plugins/IndivSummary.py: Proper handling of translation. * src/docgen/OpenOfficeDoc.py (pt2cm): Add function; (draw_text): Convert points to cm for the box width; Use self.string_width() method. * src/BaseDoc.py (string_width): Add a method to compute width. * src/docgen/LPRDoc.py (string_width): Override method. * src/docgen/PdfDoc.py: Use self.string_width() method. * src/docgen/SvgDrawDoc.py: Use self.string_width() method. * src/plugins/AncestorChart2.py: Use self.doc.string_width() method. * src/plugins/AncestorChart.py: Use self.doc.string_width() method. * src/plugins/DesGraph.py: Use self.doc.string_width() method. * src/plugins/FanChart.py: Use self.doc.string_width() method. * src/plugins/TimeLine.py: Use self.doc.string_width() method. * src/plugins/eval.glade: HIG compliance. svn: r3453
2004-08-21 02:56:51 +05:30
"in %(birth_place)s%(birth_endnotes)s, "
2003-05-27 22:48:01 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'death_place' : dplace,
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s in "
"%(birth_place)s%(birth_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
})
else:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'death_date' : ddate,
'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born "
"%(birth_date)s%(birth_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate,
'birth_endnotes' : self.endnotes(birth),
})
else:
if bplace:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_place' : bplace, 'death_date' : ddate, 'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-27 23:36:45 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace, 'death_date' : ddate,
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_place' : bplace,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s was born "
"in %(birth_place)s%(birth_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
})
else:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s died %(death_date)s in "
2003-05-08 08:09:39 +05:30
"%(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'death_date' : ddate, 'death_place' : dplace,
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s "
"died %(death_date)s%(death_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'death_date' : ddate,
'death_endnotes' : self.endnotes(death),
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(male_name)s%(endnotes)s died "
"in %(death_place)s%(death_endnotes)s.") % {
'male_name' : _('He'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'death_endnotes' : self.endnotes(death),
'death_place' : dplace,
})
else:
if bdate:
if bplace:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s in %(birth_place)s"
2003-05-08 08:09:39 +05:30
"%(birth_endnotes)s, "
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'death_date' : ddate,'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s in %(birth_place)s"
2003-05-08 08:09:39 +05:30
"%(birth_endnotes)s, "
"and died %(death_date)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'death_date' : ddate,
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s in %(birth_place)s"
2003-05-08 08:09:39 +05:30
"%(birth_endnotes)s, "
"and died in %(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'birth_place' : bplace,
'death_place' : dplace,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s "
* src/WriteGedcom.py (get_option_box): Make filters inclusive. * src/plugins/merge.glade: Switch button order to comply with HIG. * src/mergedata.glade: Switch button order to comply with HIG. * src/plugins/RelGraph.py (get_default_basename): Add function. * src/plugins/AncestorReport.py (write_report): Translate string properly. * src/EventEdit.py (update_event): Use transtable. * src/EditPerson.py (on_event_add_clicked, on_edit_birth_clicked, on_edit_death_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/Marriage.py (on_add_clicked, on_event_update_clicked): Pass TransTable to the event editor. * src/plugins/FtmStyleAncestors.py, src/plugins/FtmStyleDescendants.py: Remove extra space between vars in "%(.*_place)s %(.*_notes)s" * src/plugins/verify.glade: Translate button label. * src/plugins/IndivSummary.py: Proper handling of translation. * src/docgen/OpenOfficeDoc.py (pt2cm): Add function; (draw_text): Convert points to cm for the box width; Use self.string_width() method. * src/BaseDoc.py (string_width): Add a method to compute width. * src/docgen/LPRDoc.py (string_width): Override method. * src/docgen/PdfDoc.py: Use self.string_width() method. * src/docgen/SvgDrawDoc.py: Use self.string_width() method. * src/plugins/AncestorChart2.py: Use self.doc.string_width() method. * src/plugins/AncestorChart.py: Use self.doc.string_width() method. * src/plugins/DesGraph.py: Use self.doc.string_width() method. * src/plugins/FanChart.py: Use self.doc.string_width() method. * src/plugins/TimeLine.py: Use self.doc.string_width() method. * src/plugins/eval.glade: HIG compliance. svn: r3453
2004-08-21 02:56:51 +05:30
"in %(birth_place)s%(birth_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'birth_date' : bdate, 'birth_place' : bplace,
})
else:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died %(death_date)s in %(death_place)s"
"%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_date' : bdate, 'death_date' : ddate,
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'death_place' : dplace,
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_date' : bdate, 'death_date' : ddate,
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born %(birth_date)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_date' : bdate, 'death_place' : dplace,
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was "
"born %(birth_date)s%(birth_endnotes)s.") % {
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'birth_date' : bdate,
})
else:
if bplace:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died %(death_date)s in %(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace, 'death_date' : ddate, 'death_place' : dplace,
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-08 08:09:39 +05:30
"and died %(death_date)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace, 'death_date' : ddate,
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born in %(birth_place)s%(birth_endnotes)s, "
2003-05-27 23:36:45 +05:30
"and died in %(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'death_endnotes' : self.endnotes(death),
'birth_place' : bplace,'death_place' : dplace,
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s was born "
"in %(birth_place)s%(birth_endnotes)s.") % {
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'birth_endnotes' : self.endnotes(birth),
'birth_place' : bplace,
})
else:
if ddate:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s died %(death_date)s in "
2003-05-08 08:09:39 +05:30
"%(death_place)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'death_endnotes' : self.endnotes(death),
'death_date' : ddate, 'death_place' : dplace,
})
else:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"died %(death_date)s%(death_endnotes)s.") % {
2003-05-27 22:48:01 +05:30
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'death_endnotes' : self.endnotes(death),
'death_date' : ddate,
})
else:
if dplace:
2003-05-27 22:48:01 +05:30
self.doc.write_text(_("%(female_name)s%(endnotes)s died "
"in %(death_place)s%(death_endnotes)s.") % {
'female_name' : _('She'), 'endnotes' : '',
2003-05-08 08:09:39 +05:30
'death_endnotes' : self.endnotes(death),
'birth_date' : bdate, 'death_place' : dplace,
})
self.doc.write_text(' ')
self.print_parents(spouse,death_valid)
def print_parents(self,person,dead):
family_handle = person.get_main_parents_family_handle()
if family_handle:
* PeopleModel.py: simplify model interface * EditPerson.py: get_family_from_handle fixes * EditSource.py: get_family_from_handle fixes * GraphLayout.py: get_family_from_handle fixes * ImageSelect.py: get_family_from_handle fixes * MediaView.py: get_family_from_handle fixes * MergeData.py: get_family_from_handle fixes * PlaceView.py: get_family_from_handle fixes * ReadXML.py: get_family_from_handle fixes * RelLib.py: get_family_from_handle fixes * Relationship.py: get_family_from_handle fixes * SelectChild.py: get_family_from_handle fixes * SourceView.py: get_family_from_handle fixes * SubstKeywords.py: get_family_from_handle fixes * WriteXML.py: get_family_from_handle fixes * gramps_main.py: get_family_from_handle fixes * plugins/AncestorChart.py: get_family_from_handle fixes * plugins/AncestorChart2.py: get_family_from_handle fixes * plugins/AncestorReport.py: get_family_from_handle fixes * plugins/Ancestors.py: get_family_from_handle fixes * plugins/Check.py: get_family_from_handle fixes * plugins/CountAncestors.py: get_family_from_handle fixes * plugins/Desbrowser.py: get_family_from_handle fixes * plugins/DescendReport.py: get_family_from_handle fixes * plugins/DetAncestralReport.py: get_family_from_handle fixes * plugins/DetDescendantReport.py: get_family_from_handle fixes * plugins/FamilyGroup.py: get_family_from_handle fixes * plugins/FanChart.py: get_family_from_handle fixes * plugins/FtmStyleAncestors.py: get_family_from_handle fixes * plugins/FtmStyleDescendants.py: get_family_from_handle fixes * plugins/GraphViz.py: get_family_from_handle fixes * plugins/IndivComplete.py: get_family_from_handle fixes * plugins/IndivSummary.py: get_family_from_handle fixes * plugins/Merge.py: get_family_from_handle fixes * plugins/RelGraph.py: get_family_from_handle fixes * plugins/Verify.py: get_family_from_handle fixes * plugins/WebPage.py: get_family_from_handle fixes * plugins/WriteCD.py: get_family_from_handle fixes * plugins/WritePkg.py: get_family_from_handle fixes * plugins/rel_de.py: get_family_from_handle fixes * plugins/rel_hu.py: get_family_from_handle fixes * plugins/rel_ru.py: get_family_from_handle fixes svn: r3443
2004-08-20 03:05:16 +05:30
family = self.database.get_family_from_handle(family_handle)
mother_handle = family.get_mother_handle()
if mother_handle:
mother = self.database.get_person_from_handle(mother_handle)
else:
mother = None
father_handle = family.get_father_handle()
if father_handle:
father = self.database.get_person_from_handle(father_handle)
else:
father = None
if person.get_gender() == RelLib.Person.male:
2003-05-08 08:09:39 +05:30
if mother and father:
if dead:
self.doc.write_text(_("He was the son of %(father)s and %(mother)s.") % {
'father' : father.get_primary_name().get_regular_name(),
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
else:
self.doc.write_text(_("He is the son of %(father)s and %(mother)s.") % {
'father' : father.get_primary_name().get_regular_name(),
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
elif mother:
if dead:
self.doc.write_text(_("He was the son of %(mother)s.") % {
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
else:
self.doc.write_text(_("He is the son of %(mother)s.") % {
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
elif father:
if dead:
self.doc.write_text(_("He was the son of %(father)s.") % {
'father' : father.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
else:
self.doc.write_text(_("He is the son of %(father)s.") % {
'father' : father.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
else:
if mother and father:
if dead:
self.doc.write_text(_("She was the daughter of %(father)s and %(mother)s.") % {
'father' : father.get_primary_name().get_regular_name(),
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
else:
self.doc.write_text(_("She is the daughter of %(father)s and %(mother)s.") % {
'father' : father.get_primary_name().get_regular_name(),
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
elif mother:
if dead:
self.doc.write_text(_("She was the daughter of %(mother)s.") % {
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
else:
self.doc.write_text(_("She is the daughter of %(mother)s.") % {
'mother' : mother.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
elif father:
if dead:
self.doc.write_text(_("She was the daughter of %(father)s.") % {
'father' : father.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
else:
self.doc.write_text(_("She is the daughter of %(father)s.") % {
'father' : father.get_primary_name().get_regular_name(), })
2003-05-08 08:09:39 +05:30
self.doc.write_text(' ');
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
class FtmDescendantOptions(ReportOptions.ReportOptions):
2004-12-22 07:26:37 +05:30
"""
Defines options and provides handling interface.
"""
def __init__(self,name,person_id=None):
ReportOptions.ReportOptions.__init__(self,name,person_id)
2004-12-22 07:26:37 +05:30
def enable_options(self):
2004-12-22 07:26:37 +05:30
# Semi-common options that should be enabled for this report
self.enable_dict = {
'max_gen' : 10,
'page_breaks' : 0,
}
def make_default_style(self,default_style):
"""Make the default output style for the FTM Style Descendant report."""
font = BaseDoc.FontStyle()
font.set(face=BaseDoc.FONT_SANS_SERIF,size=16,bold=1,italic=1)
para = BaseDoc.ParagraphStyle()
para.set_font(font)
para.set_header_level(1)
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
para.set(pad=0.5)
para.set_description(_('The style used for the title of the page.'))
default_style.add_style("FTD-Title",para)
2004-12-22 07:26:37 +05:30
font = BaseDoc.FontStyle()
font.set(face=BaseDoc.FONT_SANS_SERIF,size=14,italic=1)
para = BaseDoc.ParagraphStyle()
para.set_font(font)
para.set_header_level(2)
para.set(pad=0.5)
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
para.set_description(_('The style used for the generation header.'))
default_style.add_style("FTD-Generation",para)
2004-12-22 07:26:37 +05:30
para = BaseDoc.ParagraphStyle()
para.set(first_indent=-1.0,lmargin=1.0,pad=0.25)
para.set_description(_('The basic style used for the text display.'))
default_style.add_style("FTD-Entry",para)
2004-12-22 07:26:37 +05:30
para = BaseDoc.ParagraphStyle()
para.set(lmargin=1.0,pad=0.05)
para.set_description(_('The basic style used for the text display.'))
default_style.add_style("FTD-Details",para)
2004-12-22 07:26:37 +05:30
para = BaseDoc.ParagraphStyle()
para.set(lmargin=0.0,pad=0.05)
para.set_description(_('The style used for numbering children.'))
default_style.add_style("FTD-Child-Num",para)
2004-12-22 07:26:37 +05:30
para = BaseDoc.ParagraphStyle()
para.set(lmargin=1.0,pad=0.25)
para.set_description(_('The basic style used for the text display.'))
default_style.add_style("FTD-SubEntry",para)
2004-12-22 07:26:37 +05:30
para = BaseDoc.ParagraphStyle()
para.set(pad=0.05)
para.set_description(_('The basic style used for the text display.'))
default_style.add_style("FTD-Endnotes",para)
2003-05-08 08:09:39 +05:30
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
2004-12-22 07:26:37 +05:30
from Plugins import register_report
2003-05-08 08:09:39 +05:30
register_report(
2004-12-22 07:26:37 +05:30
name = 'ftm_descendant_report',
category = const.CATEGORY_TEXT,
report_class = FtmDescendantReport,
options_class = FtmDescendantOptions,
modes = Report.MODE_GUI | Report.MODE_BKI | Report.MODE_CLI,
translated_name = _("FTM Style Descendant Report"),
status = _("Beta"),
2003-05-08 08:09:39 +05:30
description= _("Produces a textual descendant report similar to Family Tree Maker."),
author_name="Alex Roitman",
author_email="shura@alex.neuro.umn.edu"
)