2003-05-02 08:19:34 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-02-23 00:54:31 +05:30
|
|
|
# Copyright (C) 2003-2004 Donald N. Allingham
|
2003-05-02 08:19:34 +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
|
|
|
|
#
|
|
|
|
|
2003-12-09 10:00:05 +05:30
|
|
|
# $Id$
|
|
|
|
|
2003-05-02 08:19:34 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import os
|
|
|
|
import cStringIO
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import Report
|
2003-09-02 06:17:09 +05:30
|
|
|
import BaseDoc
|
2003-05-02 08:19:34 +05:30
|
|
|
import RelLib
|
|
|
|
import Errors
|
|
|
|
from QuestionDialog import ErrorDialog
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AncestorReport
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class FtmAncestorReport(Report.Report):
|
|
|
|
|
2003-06-09 05:37:31 +05:30
|
|
|
def __init__(self,database,person,max,pgbrk,doc,output,newpage=0):
|
2003-05-02 08:19:34 +05:30
|
|
|
self.map = {}
|
|
|
|
self.database = database
|
|
|
|
self.start = person
|
|
|
|
self.max_generations = max
|
|
|
|
self.pgbrk = pgbrk
|
|
|
|
self.doc = doc
|
2003-06-25 09:05:44 +05:30
|
|
|
self.newpage = newpage
|
2003-06-09 05:37:31 +05:30
|
|
|
if output:
|
|
|
|
self.standalone = 1
|
|
|
|
self.doc.open(output)
|
2003-09-13 10:26:04 +05:30
|
|
|
self.doc.init()
|
2003-06-09 05:37:31 +05:30
|
|
|
else:
|
|
|
|
self.standalone = 0
|
2003-05-02 08:19:34 +05:30
|
|
|
self.sref_map = {}
|
2004-03-02 09:13:51 +05:30
|
|
|
self.sref_index = 0
|
2003-05-02 08:19:34 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def apply_filter(self,person_handle,index,generation=1):
|
|
|
|
if not person_handle or generation >= self.max_generations:
|
2003-05-02 08:19:34 +05:30
|
|
|
return
|
2004-07-28 07:59:07 +05:30
|
|
|
self.map[index] = (person_handle,generation)
|
2004-03-03 10:36:06 +05:30
|
|
|
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.database.get_person_from_handle(person_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
family_handle = person.get_main_parents_family_handle()
|
|
|
|
if family_handle:
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
self.apply_filter(family.get_father_handle(),index*2,generation+1)
|
|
|
|
self.apply_filter(family.get_mother_handle(),(index*2)+1,generation+1)
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
def write_report(self):
|
|
|
|
|
2003-06-25 09:05:44 +05:30
|
|
|
if self.newpage:
|
|
|
|
self.doc.page_break()
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
self.apply_filter(self.start.get_handle(),1)
|
2003-05-02 08:19:34 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
name = self.start.get_primary_name().get_regular_name()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("FTA-Title")
|
2003-05-02 08:19:34 +05:30
|
|
|
title = _("Ancestors of %s") % name
|
|
|
|
self.doc.write_text(title)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
keys = self.map.keys()
|
|
|
|
keys.sort()
|
|
|
|
old_gen = 0
|
|
|
|
for key in keys :
|
2004-07-28 07:59:07 +05:30
|
|
|
(person_handle,generation) = self.map[key]
|
2003-05-02 08:19:34 +05:30
|
|
|
if old_gen != generation:
|
2003-07-16 06:28:10 +05:30
|
|
|
if self.pgbrk and generation > 1:
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.page_break()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("FTA-Generation")
|
2003-05-02 08:19:34 +05:30
|
|
|
t = _("Generation No. %d") % generation
|
|
|
|
self.doc.write_text(t)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
old_gen = generation
|
|
|
|
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.database.get_person_from_handle(person_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
pri_name = person.get_primary_name()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("FTA-Entry","%d." % key)
|
2004-02-14 11:10:30 +05:30
|
|
|
name = pri_name.get_regular_name()
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.start_bold()
|
|
|
|
self.doc.write_text(name)
|
|
|
|
self.doc.end_bold()
|
|
|
|
|
|
|
|
# Check birth record
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
birth_handle = person.get_birth_handle()
|
|
|
|
if birth_handle:
|
2004-03-03 10:36:06 +05:30
|
|
|
birth_valid = 1
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
birth = self.database.get_event_from_handle(birth_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = birth.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
bplace = self.database.get_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
bplace = u''
|
|
|
|
bdate = birth.get_date()
|
|
|
|
else:
|
|
|
|
birth_valid = 0
|
|
|
|
bplace = u''
|
|
|
|
bdate = u''
|
2003-05-02 08:19:34 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
death_handle = person.get_death_handle()
|
|
|
|
if death_handle:
|
2004-03-03 10:36:06 +05:30
|
|
|
death_valid = 1
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
death = self.database.get_event_from_handle(death_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = death.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
dplace = self.database.get_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
dplace = u''
|
|
|
|
ddate = death.get_date()
|
|
|
|
else:
|
|
|
|
death_valid = 0
|
|
|
|
dplace = u''
|
|
|
|
ddate = u''
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
if birth_valid or death_valid:
|
2004-02-14 11:10:30 +05:30
|
|
|
if person.get_gender() == RelLib.Person.male:
|
2003-10-08 18:22:31 +05:30
|
|
|
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 "
|
2004-08-21 02:56:51 +05:30
|
|
|
"in %(birth_place)s%(birth_endnotes)s, "
|
2003-10-08 18:22:31 +05:30
|
|
|
"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-02 08:19:34 +05:30
|
|
|
else:
|
2003-10-08 18:22:31 +05:30
|
|
|
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-02 08:19:34 +05:30
|
|
|
else:
|
2003-10-08 18:22:31 +05:30
|
|
|
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 "
|
2004-08-21 02:56:51 +05:30
|
|
|
"in %(birth_place)s%(birth_endnotes)s.") % {
|
2003-10-08 18:22:31 +05:30
|
|
|
'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-02 08:19:34 +05:30
|
|
|
else:
|
2003-10-08 18:22:31 +05:30
|
|
|
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-02 08:19:34 +05:30
|
|
|
|
2003-10-08 18:22:31 +05:30
|
|
|
self.doc.write_text(' ')
|
2003-05-02 08:19:34 +05:30
|
|
|
self.print_parents(person,death_valid)
|
|
|
|
self.print_spouse(person)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
self.print_notes(person)
|
|
|
|
self.print_more_about(person)
|
|
|
|
|
|
|
|
self.write_endnotes()
|
2003-06-09 05:37:31 +05:30
|
|
|
if self.standalone:
|
|
|
|
self.doc.close()
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
def write_endnotes(self):
|
|
|
|
keys = self.sref_map.keys()
|
|
|
|
if not keys:
|
|
|
|
return
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTA-Generation')
|
2003-07-16 06:28:10 +05:30
|
|
|
self.doc.write_text(_('Endnotes'))
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
keys.sort()
|
|
|
|
for key in keys:
|
|
|
|
srcref = self.sref_map[key]
|
2004-08-07 10:46:57 +05:30
|
|
|
base = self.database.get_source_from_handle(srcref.get_base_handle())
|
2003-05-02 08:19:34 +05:30
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTA-Endnotes',"%d." % key)
|
2004-02-14 11:10:30 +05:30
|
|
|
self.doc.write_text(base.get_title())
|
2003-05-02 08:19:34 +05:30
|
|
|
|
2004-03-03 10:36:06 +05:30
|
|
|
for item in [ base.get_author(), base.get_publication_info(), base.get_abbreviation(),
|
2004-02-14 11:10:30 +05:30
|
|
|
srcref.get_date().get_date(),]:
|
2003-05-02 08:19:34 +05:30
|
|
|
if item:
|
|
|
|
self.doc.write_text('; %s' % item)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
item = srcref.get_text()
|
2003-05-02 08:19:34 +05:30
|
|
|
if item:
|
|
|
|
self.doc.write_text('; ')
|
|
|
|
self.doc.write_text(_('Text:'))
|
|
|
|
self.doc.write_text(' ')
|
|
|
|
self.doc.write_text(item)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
item = srcref.get_comments()
|
2003-05-02 08:19:34 +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()
|
2004-02-14 11:10:30 +05:30
|
|
|
slist = obj.get_source_references()
|
2003-05-02 08:19:34 +05:30
|
|
|
if slist:
|
|
|
|
msg.write('<super>')
|
2003-07-16 06:28:10 +05:30
|
|
|
first = 1
|
2003-05-02 08:19:34 +05:30
|
|
|
for ref in slist:
|
2003-07-16 06:28:10 +05:30
|
|
|
if not first:
|
2003-05-02 08:19:34 +05:30
|
|
|
msg.write(',')
|
2003-07-16 06:28:10 +05:30
|
|
|
first = 0
|
2004-07-28 07:59:07 +05:30
|
|
|
ref_base = ref.get_base_handle()
|
2004-03-02 09:13:51 +05:30
|
|
|
the_key = 0
|
|
|
|
for key in self.sref_map.keys():
|
2004-07-28 07:59:07 +05:30
|
|
|
if ref_base == self.sref_map[key].get_base_handle():
|
2004-03-02 09:13:51 +05:30
|
|
|
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-02 08:19:34 +05:30
|
|
|
msg.write('</super>')
|
|
|
|
str = msg.getvalue()
|
|
|
|
msg.close()
|
|
|
|
return str
|
|
|
|
|
|
|
|
def print_notes(self,person):
|
2004-02-14 11:10:30 +05:30
|
|
|
note = person.get_note()
|
2003-05-02 08:19:34 +05:30
|
|
|
if not note.strip():
|
|
|
|
return
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTA-SubEntry')
|
2003-06-03 21:43:05 +05:30
|
|
|
self.doc.write_text(_('Notes for %(person)s:') % {
|
2004-02-14 11:10:30 +05:30
|
|
|
'person' : person.get_primary_name().get_regular_name()} )
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.end_paragraph()
|
2004-02-14 11:10:30 +05:30
|
|
|
format = person.get_note_format()
|
2003-12-15 09:48:51 +05:30
|
|
|
self.doc.write_note(note,format,'FTA-Details')
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
def print_more_about(self,person):
|
|
|
|
|
|
|
|
first = 1
|
|
|
|
ncount = 0
|
2004-02-14 11:10:30 +05:30
|
|
|
for name in person.get_alternate_names():
|
2003-05-02 08:19:34 +05:30
|
|
|
if first:
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTA-SubEntry')
|
2003-06-03 21:43:05 +05:30
|
|
|
self.doc.write_text(_('More about %(person_name)s:') % {
|
2004-02-14 11:10:30 +05:30
|
|
|
'person_name' : person.get_primary_name().get_regular_name() })
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
first = 0
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTA-Details')
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.write_text(_('Name %(count)d: %(name)s%(endnotes)s') % {
|
2004-02-14 11:10:30 +05:30
|
|
|
'count' : ncount, 'name' : name.get_regular_name(),
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(name),
|
|
|
|
})
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
ncount += 1
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in person.get_event_list():
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
event = self.database.get_event_from_handle(event_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
date = event.get_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = event.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
place = self.database.get_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
place = u''
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
if not date and not place_handle:
|
2003-05-02 08:19:34 +05:30
|
|
|
continue
|
|
|
|
if first:
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTA-SubEntry')
|
2004-02-14 11:10:30 +05:30
|
|
|
name = person.get_primary_name().get_regular_name()
|
2003-06-03 21:43:05 +05:30
|
|
|
self.doc.write_text(_('More about %(person_name)s:') % {
|
|
|
|
'person_name' : name })
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
first = 0
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTA-Details')
|
2003-05-02 08:19:34 +05:30
|
|
|
if date and place:
|
2004-02-23 00:54:31 +05:30
|
|
|
self.doc.write_text(_('%(event_name)s: %(date)s, %(place)s%(endnotes)s. ') % {
|
|
|
|
'event_name' : _(event.get_name()),
|
2004-03-03 10:36:06 +05:30
|
|
|
'date' : date,
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-03-03 10:36:06 +05:30
|
|
|
'place' : place })
|
2003-05-02 08:19:34 +05:30
|
|
|
elif date:
|
2004-02-23 00:54:31 +05:30
|
|
|
self.doc.write_text(_('%(event_name)s: %(date)s%(endnotes)s. ') % {
|
|
|
|
'event_name' : _(event.get_name()),
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-03-03 10:36:06 +05:30
|
|
|
'date' : date})
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
2004-02-23 00:54:31 +05:30
|
|
|
self.doc.write_text(_('%(event_name)s: %(place)s%(endnotes)s. ') % {
|
|
|
|
'event_name' : _(event.get_name()),
|
2003-05-27 22:48:01 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-03-03 10:36:06 +05:30
|
|
|
'place' : place })
|
2004-02-23 00:54:31 +05:30
|
|
|
if event.get_description():
|
|
|
|
self.doc.write_text(event.get_description())
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
def print_spouse(self,person):
|
2004-07-28 07:59:07 +05:30
|
|
|
family_list = person.get_family_handle_list()
|
2003-05-02 08:19:34 +05:30
|
|
|
if not family_list:
|
|
|
|
return
|
2004-07-28 07:59:07 +05:30
|
|
|
family_handle = family_list[0]
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
if family.get_father_handle() == person.get_handle():
|
|
|
|
spouse_id = family.get_mother_handle()
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse_id = family.get_father_handle()
|
2004-03-03 10:36:06 +05:30
|
|
|
if not spouse_id:
|
2003-05-02 08:19:34 +05:30
|
|
|
return
|
2004-08-07 10:46:57 +05:30
|
|
|
spouse = self.database.get_person_from_handle(spouse_id)
|
2004-03-03 10:36:06 +05:30
|
|
|
spouse_name = spouse.get_primary_name().get_regular_name()
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in family.get_event_list():
|
|
|
|
if event_handle:
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
event = self.database.get_event_from_handle(event_handle)
|
2004-03-03 10:36:06 +05:30
|
|
|
if event.get_name() == "Marriage":
|
|
|
|
break
|
|
|
|
else:
|
2003-05-02 08:19:34 +05:30
|
|
|
return
|
2004-03-03 10:36:06 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
date = event.get_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = event.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
place = self.database.get_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
place = u''
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
if date and place:
|
2004-02-14 11:10:30 +05:30
|
|
|
if person.get_gender() == RelLib.Person.male:
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.write_text(_('He married %(spouse)s %(date)s in %(place)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'date' : date,
|
|
|
|
'place' : place})
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_('She married %(spouse)s %(date)s in %(place)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-02 08:19:34 +05:30
|
|
|
'date' : date,
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : place})
|
|
|
|
elif date:
|
2004-02-14 11:10:30 +05:30
|
|
|
if person.get_gender() == RelLib.Person.male:
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.write_text(_('He married %(spouse)s %(date)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'date' : date,})
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_('She married %(spouse)s in %(place)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : place,})
|
|
|
|
elif place:
|
2004-02-14 11:10:30 +05:30
|
|
|
if person.get_gender() == RelLib.Person.male:
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.write_text(_('He married %(spouse)s in %(place)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : place})
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_('She married %(spouse)s in %(place)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : place})
|
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
if person.get_gender() == RelLib.Person.male:
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.write_text(_('He married %(spouse)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-02 08:19:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
})
|
|
|
|
else:
|
2003-05-28 21:25:59 +05:30
|
|
|
self.doc.write_text(_('She married %(spouse)s%(endnotes)s.') % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'spouse' : spouse_name,
|
2003-05-27 22:48:01 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
})
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.write_text(' ')
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
death_handle = spouse.get_death_handle()
|
|
|
|
if death_handle:
|
2004-03-03 10:36:06 +05:30
|
|
|
death_valid = 1
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
death = self.database.get_event_from_handle(death_handle)
|
2004-03-03 10:36:06 +05:30
|
|
|
ddate = death.get_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = death.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
dplace = self.database.get_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
dplace = u''
|
|
|
|
else:
|
|
|
|
death_valid = 0
|
|
|
|
dplace = u''
|
|
|
|
ddate = u''
|
2003-05-02 08:19:34 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
birth_handle = spouse.get_birth_handle()
|
|
|
|
if birth_handle:
|
2004-03-03 10:36:06 +05:30
|
|
|
birth_valid = 1
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
birth = self.database.get_event_from_handle(birth_handle)
|
2004-03-03 10:36:06 +05:30
|
|
|
bdate = birth.get_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = birth.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
bplace = self.database.get_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
bplace = u''
|
|
|
|
else:
|
|
|
|
birth_valid = 0
|
|
|
|
bplace = u''
|
|
|
|
bdate = u''
|
|
|
|
|
2003-10-08 18:31:55 +05:30
|
|
|
if birth_valid or death_valid:
|
2004-02-14 11:10:30 +05:30
|
|
|
if spouse.get_gender() == RelLib.Person.male:
|
2003-05-02 08:19:34 +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"
|
2003-05-02 08:19:34 +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
|
|
|
'male_name' : _('He'), 'endnotes' : '',
|
2003-05-02 08:19: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:
|
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"
|
2003-05-02 08:19:34 +05:30
|
|
|
"%(birth_endnotes)s, "
|
|
|
|
"and died %(death_date)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'male_name' : _('He'), 'endnotes' : '',
|
2003-05-02 08:19: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:
|
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"
|
2003-05-02 08:19:34 +05:30
|
|
|
"%(birth_endnotes)s, "
|
|
|
|
"and died in %(death_place)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'male_name' : _('He'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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 "
|
2003-05-02 08:19:34 +05:30
|
|
|
"%(birth_place)s%(birth_endnotes)s. ") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'male_name' : _('He'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +05:30
|
|
|
"and died %(death_date)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'male_name' : _('He'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +05:30
|
|
|
"%(death_place)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'male_name' : _('He'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19: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:
|
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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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 in %(birth_place)s"
|
2003-05-02 08:19:34 +05:30
|
|
|
"%(birth_endnotes)s. ") % {
|
2003-10-31 06:50:58 +05:30
|
|
|
'female_name' : _('She'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +05:30
|
|
|
"and died %(death_date)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'female_name' : _('She'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +05:30
|
|
|
"and died %(death_date)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'female_name' : _('She'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +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-02 08:19:34 +05:30
|
|
|
"%(death_place)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'female_name' : _('She'), 'endnotes' : '',
|
2003-05-02 08:19:34 +05:30
|
|
|
'death_endnotes' : self.endnotes(death),
|
|
|
|
'death_date' : ddate, 'death_place' : dplace,
|
|
|
|
})
|
|
|
|
else:
|
2003-08-07 14:23:22 +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-02 08:19:34 +05:30
|
|
|
'death_endnotes' : self.endnotes(death),
|
|
|
|
'death_date' : ddate,
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
if dplace:
|
2003-05-27 23:36:45 +05:30
|
|
|
self.doc.write_text(_("%(female_name)s%(endnotes)s died in %(death_place)s%(death_endnotes)s.") % {
|
2003-05-27 22:48:01 +05:30
|
|
|
'female_name' : _('She'), 'endnotes' : '',
|
2003-05-02 08:19:34 +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):
|
2004-07-28 07:59:07 +05:30
|
|
|
family_handle = person.get_main_parents_family_handle()
|
|
|
|
if family_handle:
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
mother_handle = family.get_mother_handle()
|
|
|
|
father_handle = family.get_father_handle()
|
|
|
|
if mother_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
mother = self.database.get_person_from_handle(mother_handle)
|
2004-03-03 10:36:06 +05:30
|
|
|
mother_name = mother.get_primary_name().get_regular_name()
|
2004-07-28 07:59:07 +05:30
|
|
|
if father_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
father = self.database.get_person_from_handle(father_handle)
|
2004-03-03 10:36:06 +05:30
|
|
|
father_name = father.get_primary_name().get_regular_name()
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if person.get_gender() == RelLib.Person.male:
|
2004-07-28 07:59:07 +05:30
|
|
|
if mother_handle and father_handle:
|
2003-05-02 08:19:34 +05:30
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("He was the son of %(father)s and %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name,
|
|
|
|
'mother' : mother_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("He is the son of %(father)s and %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name,
|
|
|
|
'mother' : mother_name, })
|
2004-07-28 07:59:07 +05:30
|
|
|
elif mother_handle:
|
2003-05-02 08:19:34 +05:30
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("He was the son of %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'mother' : mother_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("He is the son of %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'mother' : mother_name, })
|
2004-07-28 07:59:07 +05:30
|
|
|
elif father_handle:
|
2003-05-02 08:19:34 +05:30
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("He was the son of %(father)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("He is the son of %(father)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
if mother_handle and father_handle:
|
2003-05-02 08:19:34 +05:30
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("She was the daughter of %(father)s and %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name,
|
|
|
|
'mother' : mother_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("She is the daughter of %(father)s and %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name,
|
|
|
|
'mother' : mother_name, })
|
2004-07-28 07:59:07 +05:30
|
|
|
elif mother_handle:
|
2003-05-02 08:19:34 +05:30
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("She was the daughter of %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'mother' : mother_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("She is the daughter of %(mother)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'mother' : mother_name, })
|
2004-07-28 07:59:07 +05:30
|
|
|
elif father_handle:
|
2003-05-02 08:19:34 +05:30
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("She was the daughter of %(father)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("She is the daughter of %(father)s.") % {
|
2004-03-03 10:36:06 +05:30
|
|
|
'father' : father_name, })
|
2003-05-02 08:19:34 +05:30
|
|
|
self.doc.write_text(' ');
|
|
|
|
|
|
|
|
|
2003-06-11 10:09:53 +05:30
|
|
|
def _make_default_style(default_style):
|
2003-06-09 05:37:31 +05:30
|
|
|
"""Make the default output style for the FTM Style Ancestral report."""
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=16,bold=1,italic=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(1)
|
2003-09-02 06:17:09 +05:30
|
|
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set(pad=0.5)
|
|
|
|
para.set_description(_('The style used for the title of the page.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("FTA-Title",para)
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=14,italic=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(2)
|
|
|
|
para.set(pad=0.5)
|
2003-09-02 06:17:09 +05:30
|
|
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set_description(_('The style used for the generation header.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("FTA-Generation",para)
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set(first_indent=-1.0,lmargin=1.0,pad=0.25)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("FTA-Entry",para)
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set(lmargin=1.0,pad=0.05)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("FTA-Details",para)
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set(lmargin=1.0,pad=0.25)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("FTA-SubEntry",para)
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-06-09 05:37:31 +05:30
|
|
|
para.set(pad=0.05)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("FTA-Endnotes",para)
|
2003-06-09 05:37:31 +05:30
|
|
|
|
|
|
|
|
2003-05-02 08:19:34 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class FtmAncestorReportDialog(Report.TextReportDialog):
|
2003-10-31 06:50:58 +05:30
|
|
|
|
|
|
|
report_options = {}
|
|
|
|
|
2003-05-02 08:19:34 +05:30
|
|
|
def __init__(self,database,person):
|
2003-10-31 06:50:58 +05:30
|
|
|
Report.TextReportDialog.__init__(self,database,person,self.report_options)
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
2003-05-08 08:08:25 +05:30
|
|
|
return "%s - %s - GRAMPS" % (_("FTM Style Ancestral Report"),_("Text Reports"))
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
2003-05-08 08:08:25 +05:30
|
|
|
return _("FTM Style Ancestral Report for %s") % name
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
def get_target_browser_title(self):
|
|
|
|
"""The title of the window created when the 'browse' button is
|
|
|
|
clicked in the 'Save As' frame."""
|
|
|
|
return _("Save Ancestor Report")
|
|
|
|
|
|
|
|
def get_stylesheet_savefile(self):
|
|
|
|
"""Where to save styles for this report."""
|
|
|
|
return "ftm_ancestor_report.xml"
|
|
|
|
|
|
|
|
def make_default_style(self):
|
2003-06-11 10:09:53 +05:30
|
|
|
_make_default_style(self.default_style)
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
def make_report(self):
|
2003-05-08 08:08:25 +05:30
|
|
|
"""Create the object that will produce the FTM Style Ancestral Report.
|
2003-05-02 08:19:34 +05:30
|
|
|
All user dialog has already been handled and the output file
|
|
|
|
opened."""
|
|
|
|
try:
|
2003-06-09 05:37:31 +05:30
|
|
|
MyReport = FtmAncestorReport(self.db, self.person,
|
|
|
|
self.max_gen, self.pg_brk, self.doc, self.target_path)
|
2003-05-02 08:19:34 +05:30
|
|
|
MyReport.write_report()
|
|
|
|
except Errors.ReportError, msg:
|
2003-05-16 07:19:50 +05:30
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
2003-05-23 09:38:03 +05:30
|
|
|
except Errors.FilterError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
2003-05-02 08:19:34 +05:30
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2003-06-09 05:37:31 +05:30
|
|
|
# Standalone report function
|
2003-05-02 08:19:34 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def report(database,person):
|
|
|
|
FtmAncestorReportDialog(database,person)
|
|
|
|
|
2003-06-09 05:37:31 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Set up sane defaults for the book_item
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-11 10:09:53 +05:30
|
|
|
_style_file = "ftm_ancestor_report.xml"
|
|
|
|
_style_name = "default"
|
2003-06-10 04:09:56 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
_person_handle = ""
|
2003-06-09 05:37:31 +05:30
|
|
|
_max_gen = 10
|
|
|
|
_pg_brk = 0
|
2004-07-28 07:59:07 +05:30
|
|
|
_options = ( _person_handle, _max_gen, _pg_brk )
|
2003-06-09 05:37:31 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Book Item Options dialog
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class FtmAncestorBareReportDialog(Report.BareReportDialog):
|
|
|
|
|
2003-06-10 04:09:56 +05:30
|
|
|
def __init__(self,database,person,opt,stl):
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-06-10 04:09:56 +05:30
|
|
|
self.options = opt
|
2003-06-10 10:19:39 +05:30
|
|
|
self.db = database
|
2003-06-10 04:09:56 +05:30
|
|
|
if self.options[0]:
|
2004-08-07 10:46:57 +05:30
|
|
|
self.person = self.db.get_person_from_handle(self.options[0])
|
2003-06-09 05:37:31 +05:30
|
|
|
else:
|
|
|
|
self.person = person
|
2003-07-11 08:59:33 +05:30
|
|
|
self.style_name = stl
|
|
|
|
|
2003-06-09 05:37:31 +05:30
|
|
|
Report.BareReportDialog.__init__(self,database,self.person)
|
2003-06-11 10:09:53 +05:30
|
|
|
|
|
|
|
self.max_gen = int(self.options[1])
|
|
|
|
self.pg_brk = int(self.options[2])
|
2003-06-09 05:37:31 +05:30
|
|
|
self.new_person = None
|
|
|
|
|
|
|
|
self.generations_spinbox.set_value(self.max_gen)
|
|
|
|
self.pagebreak_checkbox.set_active(self.pg_brk)
|
|
|
|
|
|
|
|
self.window.run()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-07-07 22:27:27 +05:30
|
|
|
def make_default_style(self):
|
|
|
|
_make_default_style(self.default_style)
|
|
|
|
|
2003-06-09 05:37:31 +05:30
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
|
|
|
return "%s - GRAMPS Book" % (_("FTM Style Ancestor Report"))
|
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
|
|
|
return _("FTM Style Ancestor Report for GRAMPS Book")
|
|
|
|
|
|
|
|
def get_stylesheet_savefile(self):
|
|
|
|
"""Where to save styles for this report."""
|
2003-06-11 10:09:53 +05:30
|
|
|
return _style_file
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-06-10 04:09:56 +05:30
|
|
|
def on_cancel(self, obj):
|
|
|
|
pass
|
|
|
|
|
2003-06-09 05:37:31 +05:30
|
|
|
def on_ok_clicked(self, obj):
|
|
|
|
"""The user is satisfied with the dialog choices. Parse all options
|
|
|
|
and close the window."""
|
|
|
|
|
|
|
|
# Preparation
|
|
|
|
self.parse_style_frame()
|
|
|
|
self.parse_report_options_frame()
|
|
|
|
|
2003-06-10 10:19:39 +05:30
|
|
|
if self.new_person:
|
|
|
|
self.person = self.new_person
|
2004-07-28 07:59:07 +05:30
|
|
|
self.options = ( self.person.get_handle(), self.max_gen, self.pg_brk )
|
2003-06-11 10:09:53 +05:30
|
|
|
self.style_name = self.selected_style.get_name()
|
2003-06-10 04:09:56 +05:30
|
|
|
|
2003-06-09 05:37:31 +05:30
|
|
|
|
2003-06-10 04:09:56 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Function to write Book Item
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-09 05:37:31 +05:30
|
|
|
def write_book_item(database,person,doc,options,newpage=0):
|
|
|
|
"""Write the FTM Style Ancestor Report options set.
|
|
|
|
All user dialog has already been handled and the output file opened."""
|
|
|
|
try:
|
|
|
|
if options[0]:
|
2004-08-07 10:46:57 +05:30
|
|
|
person = database.get_person_from_handle(options[0])
|
2003-06-11 10:09:53 +05:30
|
|
|
max_gen = int(options[1])
|
|
|
|
pg_brk = int(options[2])
|
2003-06-25 09:05:44 +05:30
|
|
|
return FtmAncestorReport(database, person, max_gen, pg_brk, doc, None, newpage )
|
2003-06-09 05:37:31 +05:30
|
|
|
except Errors.ReportError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
|
|
|
except Errors.FilterError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
2003-05-02 08:19:34 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-09 05:37:31 +05:30
|
|
|
from Plugins import register_report, register_book_item
|
2003-05-02 08:19:34 +05:30
|
|
|
|
|
|
|
register_report(
|
|
|
|
report,
|
|
|
|
_("FTM Style Ancestor Report"),
|
|
|
|
category=_("Text Reports"),
|
|
|
|
status=(_("Beta")),
|
|
|
|
description= _("Produces a textual ancestral report similar to Family Tree Maker."),
|
|
|
|
author_name="Donald N. Allingham",
|
|
|
|
author_email="dallingham@users.sourceforge.net"
|
|
|
|
)
|
|
|
|
|
2003-06-11 10:09:53 +05:30
|
|
|
# (name,category,options_dialog,write_book_item,options,style_name,style_file,make_default_style)
|
2003-06-09 05:37:31 +05:30
|
|
|
register_book_item(
|
|
|
|
_("FTM Style Ancestor Report"),
|
|
|
|
_("Text"),
|
|
|
|
FtmAncestorBareReportDialog,
|
|
|
|
write_book_item,
|
2003-06-10 04:09:56 +05:30
|
|
|
_options,
|
2003-06-11 10:09:53 +05:30
|
|
|
_style_name,
|
|
|
|
_style_file,
|
|
|
|
_make_default_style
|
|
|
|
)
|
2003-06-09 05:37:31 +05:30
|
|
|
|