2003-05-08 08:09:39 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2003 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Written by Alex Roitman, largely based on the FtmStyleAncestors.py
|
|
|
|
# report by Don Allingham
|
|
|
|
#
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import os
|
|
|
|
import string
|
|
|
|
import cStringIO
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import Report
|
|
|
|
import TextDoc
|
|
|
|
import RelLib
|
|
|
|
import Errors
|
2003-05-10 11:48:34 +05:30
|
|
|
import Utils
|
2003-05-08 08:09:39 +05:30
|
|
|
from QuestionDialog import ErrorDialog
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# DescendantReport
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class FtmDescendantReport(Report.Report):
|
|
|
|
|
2003-06-08 11:49:54 +05:30
|
|
|
def __init__(self,database,person,max,pgbrk,doc,output,newpage=0):
|
2003-05-10 11:48:34 +05:30
|
|
|
self.anc_map = {}
|
|
|
|
self.gen_map = {}
|
2003-05-08 08:09:39 +05:30
|
|
|
self.database = database
|
|
|
|
self.start = person
|
|
|
|
self.max_generations = max
|
|
|
|
self.pgbrk = pgbrk
|
|
|
|
self.doc = doc
|
2003-07-11 08:22:59 +05:30
|
|
|
self.setup()
|
2003-06-25 09:05:44 +05:30
|
|
|
self.newpage = newpage
|
2003-06-08 05:08:13 +05:30
|
|
|
if output:
|
|
|
|
self.standalone = 1
|
|
|
|
self.doc.open(output)
|
|
|
|
else:
|
|
|
|
self.standalone = 0
|
2003-05-08 08:09:39 +05:30
|
|
|
self.sref_map = {}
|
|
|
|
self.sref_index = 1
|
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
def setup(self):
|
|
|
|
tbl = TextDoc.TableStyle()
|
|
|
|
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)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.add_table_style('FTD-ChildTable',tbl)
|
2003-05-10 11:48:34 +05:30
|
|
|
|
|
|
|
cell = TextDoc.TableCellStyle()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.add_cell_style('FTD-Normal',cell)
|
2003-05-10 11:48:34 +05:30
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
def apply_filter(self,person,index,generation=1):
|
|
|
|
|
2003-06-04 01:18:33 +05:30
|
|
|
if person == None or generation > self.max_generations:
|
2003-05-08 08:09:39 +05:30
|
|
|
return
|
|
|
|
|
2003-05-11 02:25:40 +05:30
|
|
|
self.anc_map[index] = person
|
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
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
for family in person.getFamilyList():
|
|
|
|
for child in family.getChildList():
|
|
|
|
ix = max(self.anc_map.keys())
|
|
|
|
self.apply_filter(child,ix+1,generation+1)
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
|
|
|
|
def write_report(self):
|
2003-06-25 09:05:44 +05:30
|
|
|
|
|
|
|
if self.newpage:
|
|
|
|
self.doc.page_break()
|
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
self.apply_filter(self.start,1)
|
|
|
|
|
|
|
|
name = self.start.getPrimaryName().getRegularName()
|
2003-07-18 19:13:13 +05:30
|
|
|
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:
|
2003-07-16 06:28:10 +05:30
|
|
|
if self.pgbrk and generation > 1:
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.page_break()
|
2003-07-18 19:13:13 +05:30
|
|
|
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:
|
2003-05-11 02:25:40 +05:30
|
|
|
person = self.anc_map[key]
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
pri_name = person.getPrimaryName()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("FTD-Entry","%d." % key)
|
2003-05-10 11:48:34 +05:30
|
|
|
name = pri_name.getRegularName()
|
|
|
|
self.doc.start_bold()
|
|
|
|
self.doc.write_text(name)
|
|
|
|
self.doc.end_bold()
|
|
|
|
|
|
|
|
# add source information here
|
|
|
|
|
|
|
|
self.doc.write_text(self.endnotes(pri_name))
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
# Check birth record
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
birth = person.getBirth()
|
|
|
|
death = person.getDeath()
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
birth_valid = birth.getDate() != "" or birth.getPlaceName() != ""
|
|
|
|
death_valid = death.getDate() != "" or death.getPlaceName() != ""
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
if birth_valid or death_valid:
|
|
|
|
self.doc.write_text(' ')
|
2003-05-08 08:09:39 +05:30
|
|
|
else:
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.write_text('.')
|
|
|
|
|
|
|
|
if birth_valid:
|
|
|
|
date = birth.getDateObj().get_start_date()
|
|
|
|
place = birth.getPlaceName()
|
|
|
|
if place[-1:] == '.':
|
|
|
|
place = place[:-1]
|
|
|
|
if date.getDate() != "":
|
|
|
|
if place != "":
|
|
|
|
t = _("was born %(date)s in %(place)s%(endnotes)s") % {
|
|
|
|
'date' : date.getDate(),
|
|
|
|
'place' : place,
|
|
|
|
'endnotes' : self.endnotes(birth),
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
t = _("was born %(date)s%(endnotes)s") % {
|
|
|
|
'date' : date.getDate(),
|
|
|
|
'endnotes' : self.endnotes(birth),
|
|
|
|
}
|
2003-05-08 08:09:39 +05:30
|
|
|
else:
|
2003-05-10 11:48:34 +05:30
|
|
|
if place != "":
|
|
|
|
t = _("was born in %(place)s%(endnotes)s") % {
|
|
|
|
'place' : place,
|
|
|
|
'endnotes' : self.endnotes(birth),
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
t = ''
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.write_text(t)
|
|
|
|
if death_valid:
|
|
|
|
self.doc.write_text(', ')
|
2003-05-08 08:09:39 +05:30
|
|
|
else:
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.write_text('. ')
|
|
|
|
|
|
|
|
if death_valid:
|
|
|
|
date = death.getDateObj().get_start_date()
|
|
|
|
place = death.getPlaceName()
|
|
|
|
if place[-1:] == '.':
|
|
|
|
place = place[:-1]
|
|
|
|
if date.getDate() != "":
|
|
|
|
if place != "":
|
|
|
|
t = _("and died %(date)s in %(place)s%(endnotes)s.") % {
|
|
|
|
'date' : date.getDate(),
|
|
|
|
'place' : place,
|
|
|
|
'endnotes' : self.endnotes(death),
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
t = _("and died %(date)s%(endnotes)s.") % {
|
|
|
|
'date' : date.getDate(),
|
|
|
|
'endnotes' : self.endnotes(death),
|
|
|
|
}
|
2003-05-08 08:09:39 +05:30
|
|
|
else:
|
2003-05-10 11:48:34 +05:30
|
|
|
if place != "":
|
|
|
|
t = _("and died in %(place)s%(endnotes)s.") % {
|
|
|
|
'place' : place,
|
|
|
|
'endnotes' : self.endnotes(death),
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
t = '.'
|
|
|
|
self.doc.write_text(t + ' ')
|
2003-05-08 08:09:39 +05:30
|
|
|
|
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)
|
2003-06-04 01:18:33 +05:30
|
|
|
if generation < self.max_generations:
|
|
|
|
self.print_children(person)
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
self.write_endnotes()
|
2003-06-08 05:08:13 +05:30
|
|
|
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
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-Generation')
|
2003-07-16 06:28:10 +05:30
|
|
|
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 = srcref.getBase()
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-Endnotes',"%d." % key)
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.write_text(base.getTitle())
|
|
|
|
|
|
|
|
for item in [ base.getAuthor(), base.getPubInfo(), base.getCallNumber(),
|
|
|
|
srcref.getDate().getDate(),]:
|
|
|
|
if item:
|
|
|
|
self.doc.write_text('; %s' % item)
|
|
|
|
|
|
|
|
item = srcref.getText()
|
|
|
|
if item:
|
|
|
|
self.doc.write_text('; ')
|
|
|
|
self.doc.write_text(_('Text:'))
|
|
|
|
self.doc.write_text(' ')
|
|
|
|
self.doc.write_text(item)
|
|
|
|
|
|
|
|
item = srcref.getComments()
|
|
|
|
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.getSourceRefList()
|
|
|
|
if slist:
|
|
|
|
msg.write('<super>')
|
2003-07-16 06:28:10 +05:30
|
|
|
first = 1
|
2003-05-08 08:09:39 +05:30
|
|
|
for ref in slist:
|
2003-07-16 06:28:10 +05:30
|
|
|
if not first:
|
2003-05-08 08:09:39 +05:30
|
|
|
msg.write(',')
|
2003-07-16 06:28:10 +05:30
|
|
|
first = 0
|
2003-05-08 08:09:39 +05:30
|
|
|
msg.write("%d" % self.sref_index)
|
|
|
|
self.sref_map[self.sref_index] = ref
|
|
|
|
self.sref_index += 1
|
|
|
|
msg.write('</super>')
|
|
|
|
str = msg.getvalue()
|
|
|
|
msg.close()
|
|
|
|
return str
|
|
|
|
|
|
|
|
def print_notes(self,person):
|
|
|
|
note = person.getNote()
|
|
|
|
if not note.strip():
|
|
|
|
return
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-SubEntry')
|
2003-06-03 21:43:05 +05:30
|
|
|
self.doc.write_text(_('Notes for %(person)s:') % {
|
|
|
|
'person' : person.getPrimaryName().getRegularName()} )
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
for line in note.split('\n'):
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-Details')
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.write_text(line.strip())
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
def print_more_about(self,person):
|
|
|
|
|
|
|
|
first = 1
|
2003-06-02 09:14:47 +05:30
|
|
|
ncount = 1
|
2003-05-08 08:09:39 +05:30
|
|
|
for name in person.getAlternateNames():
|
|
|
|
if first:
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-SubEntry')
|
2003-06-03 21:43:05 +05:30
|
|
|
self.doc.write_text(_('More about %(person_name)s:') % {
|
|
|
|
'person_name' : person.getPrimaryName().getRegularName() })
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
first = 0
|
2003-07-18 19:13:13 +05:30
|
|
|
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.getRegularName(),
|
|
|
|
'endnotes' : self.endnotes(name),
|
|
|
|
})
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
ncount += 1
|
|
|
|
|
|
|
|
for event in person.getEventList():
|
|
|
|
date = event.getDate()
|
|
|
|
place = event.getPlace()
|
|
|
|
|
|
|
|
if not date and not place:
|
|
|
|
continue
|
|
|
|
if first:
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-SubEntry')
|
2003-06-03 21:43:05 +05:30
|
|
|
name = person.getPrimaryName().getRegularName()
|
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
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
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.getName(),
|
|
|
|
'date' : event.getDate(),
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : event.getPlaceName() })
|
|
|
|
elif date:
|
|
|
|
self.doc.write_text(_('%(event_name)s: %(date)s%(endnotes)s') % {
|
|
|
|
'event_name' : event.getName(),
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'date' : event.getDate()})
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_('%(event_name)s: %(place)s%(endnotes)s') % {
|
|
|
|
'event_name' : event.getName(),
|
2003-06-02 09:14:47 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2003-05-08 08:09:39 +05:30
|
|
|
'place' : event.getPlaceName() })
|
|
|
|
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 in person.getFamilyList():
|
|
|
|
if family.getFather() and family.getMother():
|
|
|
|
husband = family.getFather().getPrimaryName().getRegularName()
|
|
|
|
wife = family.getMother().getPrimaryName().getRegularName()
|
|
|
|
else:
|
|
|
|
continue
|
|
|
|
for event in family.getEventList():
|
|
|
|
date = event.getDate()
|
|
|
|
place = event.getPlace()
|
|
|
|
|
|
|
|
if not date and not place:
|
|
|
|
continue
|
|
|
|
if first:
|
2003-07-18 19:13:13 +05:30
|
|
|
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
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
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.getName(),
|
|
|
|
'date' : event.getDate(),
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : event.getPlaceName() })
|
|
|
|
elif date:
|
|
|
|
self.doc.write_text(_('%(event_name)s: %(date)s%(endnotes)s') % {
|
|
|
|
'event_name' : event.getName(),
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'date' : event.getDate()})
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_('%(event_name)s: %(place)s%(endnotes)s') % {
|
|
|
|
'event_name' : event.getName(),
|
2003-06-29 20:08:50 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2003-05-10 11:48:34 +05:30
|
|
|
'place' : event.getPlaceName() })
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
|
|
|
|
def print_children(self,person):
|
|
|
|
"Children of such-and-such"
|
|
|
|
|
|
|
|
name = person.getPrimaryName().getRegularName()
|
|
|
|
|
|
|
|
for family in person.getFamilyList():
|
|
|
|
first = 1
|
|
|
|
|
|
|
|
if family.getFather() == person:
|
|
|
|
spouse = family.getMother()
|
|
|
|
else:
|
|
|
|
spouse = family.getFather()
|
|
|
|
|
|
|
|
child_index = 0
|
|
|
|
for child in family.getChildList():
|
|
|
|
child_index = child_index + 1
|
|
|
|
child_name = child.getPrimaryName().getRegularName()
|
2003-05-11 02:25:40 +05:30
|
|
|
for (ind,p) in self.anc_map.items():
|
|
|
|
if p == child:
|
2003-05-10 11:48:34 +05:30
|
|
|
index = ind
|
2003-06-04 01:18:33 +05:30
|
|
|
|
|
|
|
if first:
|
2003-05-10 11:48:34 +05:30
|
|
|
first = 0
|
2003-07-18 19:13:13 +05:30
|
|
|
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.getPrimaryName().getRegularName() })
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_('Children of %(person_name)s are:') % { 'person_name' : name })
|
|
|
|
self.doc.end_paragraph()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_table(family.getId(),'FTD-ChildTable')
|
2003-05-10 11:48:34 +05:30
|
|
|
|
|
|
|
self.doc.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_cell('FTD-Normal')
|
|
|
|
self.doc.start_paragraph('FTD-Details')
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.write_text("%d." % index)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_cell('FTD-Normal')
|
|
|
|
self.doc.start_paragraph('FTD-Details')
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.write_text("%s." % string.lower(Utils.roman(child_index)))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_cell('FTD-Normal')
|
|
|
|
self.doc.start_paragraph('FTD-Details')
|
2003-05-10 11:48:34 +05:30
|
|
|
|
|
|
|
death = child.getDeath()
|
|
|
|
dplace = death.getPlaceName()
|
|
|
|
ddate = death.getDate()
|
|
|
|
|
|
|
|
birth = child.getBirth()
|
|
|
|
bplace = birth.getPlaceName()
|
|
|
|
bdate = birth.getDate()
|
|
|
|
|
|
|
|
if child.getGender() == RelLib.Person.male:
|
|
|
|
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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()) })
|
|
|
|
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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()),
|
|
|
|
'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.getPrimaryName()) })
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
2003-06-03 01:25:53 +05:30
|
|
|
if not first:
|
|
|
|
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.getFamilyList()
|
|
|
|
if not family_list:
|
|
|
|
return
|
|
|
|
family = family_list[0]
|
|
|
|
if family.getFather() == person:
|
|
|
|
spouse = family.getMother()
|
|
|
|
else:
|
|
|
|
spouse = family.getFather()
|
|
|
|
if not spouse:
|
|
|
|
return
|
|
|
|
event = family.getMarriage()
|
|
|
|
if not event:
|
|
|
|
return
|
|
|
|
date = event.getDate()
|
|
|
|
place = event.getPlaceName()
|
|
|
|
|
|
|
|
if date and place:
|
|
|
|
if person.getGender() == 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.getPrimaryName().getRegularName(),
|
|
|
|
'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.getPrimaryName().getRegularName(),
|
|
|
|
'date' : date,
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : place})
|
2003-05-08 08:09:39 +05:30
|
|
|
elif date:
|
|
|
|
if person.getGender() == 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.getPrimaryName().getRegularName(),
|
|
|
|
'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.getPrimaryName().getRegularName(),
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : place,})
|
2003-05-08 08:09:39 +05:30
|
|
|
elif place:
|
|
|
|
if person.getGender() == 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.getPrimaryName().getRegularName(),
|
|
|
|
'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.getPrimaryName().getRegularName(),
|
|
|
|
'endnotes' : self.endnotes(event),
|
|
|
|
'place' : place})
|
2003-05-08 08:09:39 +05:30
|
|
|
else:
|
|
|
|
if person.getGender() == RelLib.Person.male:
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.write_text(_('He married %(spouse)s%(endnotes)s.') % {
|
|
|
|
'spouse' : spouse.getPrimaryName().getRegularName(),
|
|
|
|
'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.getPrimaryName().getRegularName(),
|
|
|
|
'endnotes' : self.endnotes(event)})
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.write_text(' ')
|
|
|
|
|
|
|
|
death = spouse.getDeath()
|
|
|
|
dplace = death.getPlaceName()
|
|
|
|
ddate = death.getDate()
|
|
|
|
|
|
|
|
birth = spouse.getBirth()
|
|
|
|
bplace = birth.getPlaceName()
|
|
|
|
bdate = birth.getDate()
|
|
|
|
|
|
|
|
death_valid = ddate != "" or dplace != ""
|
|
|
|
birth_valid = bdate != "" or bplace != ""
|
|
|
|
|
|
|
|
if birth_valid and death_valid:
|
2003-05-10 11:48:34 +05:30
|
|
|
if spouse.getGender() == 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 "
|
|
|
|
"in %(birth_place)s %(birth_endnotes)s, "
|
|
|
|
"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 "
|
|
|
|
"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_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 "
|
2003-08-07 14:23:22 +05:30
|
|
|
"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 = person.getMainParents()
|
|
|
|
if family:
|
|
|
|
mother = family.getMother()
|
|
|
|
father = family.getFather()
|
|
|
|
if person.getGender() == RelLib.Person.male:
|
|
|
|
if mother and father:
|
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("He was the son of %(father)s and %(mother)s.") % {
|
|
|
|
'father' : father.getPrimaryName().getRegularName(),
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_("He is the son of %(father)s and %(mother)s.") % {
|
|
|
|
'father' : father.getPrimaryName().getRegularName(),
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
elif mother:
|
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("He was the son of %(mother)s.") % {
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_("He is the son of %(mother)s.") % {
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
elif father:
|
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("He was the son of %(father)s.") % {
|
2003-05-10 11:48:34 +05:30
|
|
|
'father' : father.getPrimaryName().getRegularName(), })
|
2003-05-08 08:09:39 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("He is the son of %(father)s.") % {
|
2003-05-10 11:48:34 +05:30
|
|
|
'father' : father.getPrimaryName().getRegularName(), })
|
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.getPrimaryName().getRegularName(),
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_("She is the daughter of %(father)s and %(mother)s.") % {
|
|
|
|
'father' : father.getPrimaryName().getRegularName(),
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
elif mother:
|
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("She was the daughter of %(mother)s.") % {
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
else:
|
|
|
|
self.doc.write_text(_("She is the daughter of %(mother)s.") % {
|
|
|
|
'mother' : mother.getPrimaryName().getRegularName(), })
|
|
|
|
elif father:
|
|
|
|
if dead:
|
|
|
|
self.doc.write_text(_("She was the daughter of %(father)s.") % {
|
2003-06-02 09:14:47 +05:30
|
|
|
'father' : father.getPrimaryName().getRegularName(), })
|
2003-05-08 08:09:39 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_("She is the daughter of %(father)s.") % {
|
2003-06-02 09:14:47 +05:30
|
|
|
'father' : father.getPrimaryName().getRegularName(), })
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.write_text(' ');
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-11 10:09:53 +05:30
|
|
|
def _make_default_style(default_style):
|
2003-06-08 05:08:13 +05:30
|
|
|
"""Make the default output style for the FTM Style Descendant report."""
|
|
|
|
font = TextDoc.FontStyle()
|
|
|
|
font.set(face=TextDoc.FONT_SANS_SERIF,size=16,bold=1,italic=1)
|
|
|
|
para = TextDoc.ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(1)
|
|
|
|
para.set_alignment(TextDoc.PARA_ALIGN_CENTER)
|
|
|
|
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("FTD-Title",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
font = TextDoc.FontStyle()
|
|
|
|
font.set(face=TextDoc.FONT_SANS_SERIF,size=14,italic=1)
|
|
|
|
para = TextDoc.ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(2)
|
|
|
|
para.set(pad=0.5)
|
|
|
|
para.set_alignment(TextDoc.PARA_ALIGN_CENTER)
|
|
|
|
para.set_description(_('The style used for the generation header.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("FTD-Generation",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
para = TextDoc.ParagraphStyle()
|
|
|
|
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("FTD-Entry",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
para = TextDoc.ParagraphStyle()
|
|
|
|
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("FTD-Details",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
para = TextDoc.ParagraphStyle()
|
|
|
|
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("FTD-SubEntry",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
para = TextDoc.ParagraphStyle()
|
|
|
|
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("FTD-Endnotes",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Dialog for a standalone report
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-05-08 08:09:39 +05:30
|
|
|
class FtmDescendantReportDialog(Report.TextReportDialog):
|
|
|
|
def __init__(self,database,person):
|
|
|
|
Report.TextReportDialog.__init__(self,database,person)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
|
|
|
return "%s - %s - GRAMPS" % (_("FTM Style Descendant Report"),_("Text Reports"))
|
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
|
|
|
return _("FTM Style Descendant Report for %s") % name
|
|
|
|
|
|
|
|
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 FTM Style Descendant Report")
|
|
|
|
|
|
|
|
def get_stylesheet_savefile(self):
|
|
|
|
"""Where to save styles for this report."""
|
|
|
|
return "ftm_descendant_report.xml"
|
|
|
|
|
2003-06-09 02:02:17 +05:30
|
|
|
def make_default_style(self):
|
2003-06-11 10:09:53 +05:30
|
|
|
_make_default_style(self.default_style)
|
2003-06-09 02:02:17 +05:30
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
def make_report(self):
|
|
|
|
"""Create the object that will produce the FTM Style Descendant Report.
|
|
|
|
All user dialog has already been handled and the output file
|
|
|
|
opened."""
|
|
|
|
try:
|
2003-06-08 05:08:13 +05:30
|
|
|
MyReport = FtmDescendantReport(self.db, self.person,
|
|
|
|
self.max_gen, self.pg_brk, self.doc, self.target_path)
|
2003-05-08 08:09:39 +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-08 08:09:39 +05:30
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2003-06-08 05:08:13 +05:30
|
|
|
# Standalone report function
|
2003-05-08 08:09:39 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def report(database,person):
|
|
|
|
FtmDescendantReportDialog(database,person)
|
|
|
|
|
2003-06-08 05:08:13 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Set up sane defaults for the book_item
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-11 10:09:53 +05:30
|
|
|
_style_file = "ftm_descendant_report.xml"
|
|
|
|
_style_name = "default"
|
2003-06-10 04:09:56 +05:30
|
|
|
|
2003-06-11 10:09:53 +05:30
|
|
|
_person_id = ""
|
2003-06-08 05:08:13 +05:30
|
|
|
_max_gen = 10
|
|
|
|
_pg_brk = 0
|
2003-07-07 01:25:45 +05:30
|
|
|
_options = ( _person_id, _max_gen, _pg_brk )
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Book Item Options dialog
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class FtmDescendantBareReportDialog(Report.BareReportDialog):
|
|
|
|
|
2003-06-10 04:09:56 +05:30
|
|
|
def __init__(self,database,person,opt,stl):
|
2003-06-08 05:08:13 +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]:
|
2003-06-10 10:19:39 +05:30
|
|
|
self.person = self.db.getPerson(self.options[0])
|
2003-06-08 05:08:13 +05:30
|
|
|
else:
|
|
|
|
self.person = person
|
2003-07-11 08:59:33 +05:30
|
|
|
self.style_name = stl
|
2003-06-11 10:09:53 +05:30
|
|
|
|
2003-07-07 22:27:27 +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-08 11:49:54 +05:30
|
|
|
self.new_person = None
|
2003-06-08 05:08:13 +05:30
|
|
|
|
|
|
|
self.generations_spinbox.set_value(self.max_gen)
|
|
|
|
self.pagebreak_checkbox.set_active(self.pg_brk)
|
|
|
|
|
2003-06-09 02:02:17 +05:30
|
|
|
self.window.run()
|
|
|
|
|
2003-06-08 05:08:13 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
|
|
|
return "%s - GRAMPS Book" % (_("FTM Style Descendant Report"))
|
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
|
|
|
return _("FTM Style Descendant 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-08 05:08:13 +05:30
|
|
|
|
2003-07-07 22:27:27 +05:30
|
|
|
def make_default_style(self):
|
|
|
|
_make_default_style(self.default_style)
|
|
|
|
|
2003-06-10 04:09:56 +05:30
|
|
|
def on_cancel(self, obj):
|
|
|
|
pass
|
|
|
|
|
2003-06-08 05:08:13 +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
|
2003-07-07 22:27:27 +05:30
|
|
|
self.options = ( self.person.getId(), self.max_gen, self.pg_brk )
|
2003-06-11 10:09:53 +05:30
|
|
|
self.style_name = self.selected_style.get_name()
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2003-06-10 04:09:56 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Function to write Book Item
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-08 11:49:54 +05:30
|
|
|
def write_book_item(database,person,doc,options,newpage=0):
|
2003-06-08 05:08:13 +05:30
|
|
|
"""Write the FTM Style Descendant Report options set.
|
|
|
|
All user dialog has already been handled and the output file opened."""
|
|
|
|
try:
|
|
|
|
if options[0]:
|
2003-06-10 10:19:39 +05:30
|
|
|
person = database.getPerson(options[0])
|
|
|
|
max_gen = int(options[1])
|
|
|
|
pg_brk = int(options[2])
|
2003-06-25 09:05:44 +05:30
|
|
|
return FtmDescendantReport(database, person, max_gen,
|
|
|
|
pg_brk, doc, None, newpage )
|
2003-06-08 05:08:13 +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-08 08:09:39 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_xpm_image():
|
|
|
|
return [
|
|
|
|
"48 48 33 1",
|
|
|
|
" c None",
|
|
|
|
". c #1A1A1A",
|
|
|
|
"+ c #847B6E",
|
|
|
|
"@ c #B7AC9C",
|
|
|
|
"# c #D1D1D0",
|
|
|
|
"$ c #EEE2D0",
|
|
|
|
"% c #6A655C",
|
|
|
|
"& c #868686",
|
|
|
|
"* c #F1EADF",
|
|
|
|
"= c #5C5854",
|
|
|
|
"- c #B89C73",
|
|
|
|
"; c #E2C8A1",
|
|
|
|
"> c #55524C",
|
|
|
|
", c #F5EEE6",
|
|
|
|
"' c #4F4E4C",
|
|
|
|
") c #A19C95",
|
|
|
|
"! c #B3966E",
|
|
|
|
"~ c #CDC8BF",
|
|
|
|
"{ c #F6F2ED",
|
|
|
|
"] c #A6A5A4",
|
|
|
|
"^ c #413F3F",
|
|
|
|
"/ c #D8D1C5",
|
|
|
|
"( c #968977",
|
|
|
|
"_ c #BAB9B6",
|
|
|
|
": c #FAFAF9",
|
|
|
|
"< c #BEA27B",
|
|
|
|
"[ c #E9DAC2",
|
|
|
|
"} c #9D9385",
|
|
|
|
"| c #E4E3E3",
|
|
|
|
"1 c #7A7062",
|
|
|
|
"2 c #E6D3B4",
|
|
|
|
"3 c #BAA488",
|
|
|
|
"4 c #322E2B",
|
|
|
|
" ",
|
|
|
|
" ",
|
|
|
|
" (+(+++++111%1%%%%===%1 ",
|
|
|
|
" +______________@_@)&==1 ",
|
|
|
|
" +_::::::::::::::*|#_&&}> ",
|
|
|
|
" &_:::::::::::::::{|#]1~}^ ",
|
|
|
|
" +_::::::::::::::::{|#=|~&4 ",
|
|
|
|
" +_::::]]]]]]]]:::::|{':|~&4 ",
|
|
|
|
" +_::::::::::::::::::{'::|~&4 ",
|
|
|
|
" +_:::::::::::::::::::'*::|~&^ ",
|
|
|
|
" +_:::::::::::::::::::'|*::|~}> ",
|
|
|
|
" 1_::::]]]]]]]]]]]]:::'~|{::|_}% ",
|
|
|
|
" 1_:::::::::::::::::::'..4^'=1+%1 ",
|
|
|
|
" +_::::]]]]]]]]]]]]:::|__])&+%=^% ",
|
|
|
|
" 1_::::::::::::::::::::|#__)&&+'^ ",
|
|
|
|
" 1_::::]]]]]]]]]::::::::|#~_])&%^ ",
|
|
|
|
" 1_::::::::::::::::::::{||#~_])14 ",
|
|
|
|
" 1_::::]]]]]]]]]]]]]]]]]]&}#~_]+4 ",
|
|
|
|
" 1_::::::::::::::::::{{{{||#~~@&4 ",
|
|
|
|
" %_::::]]]]]]]]]]]]]]]])))}(~~~&4 ",
|
|
|
|
" %_:::::::::::::::::{{{{{*|#/~_(4 ",
|
|
|
|
" %_::::]]]]]]]]]]]]]]])))))}2;/}4 ",
|
|
|
|
" %_:::::::::::::::{{{{{***||[#~}4 ",
|
|
|
|
" %_::::]]]]]]]]]])]))))))))}2/;)4 ",
|
|
|
|
" %_::::::::::::::{{{{{**|$$[/2~!4 ",
|
|
|
|
" %_::::]]]]]]]]){{{{******$$[2/}4 ",
|
|
|
|
" %_::::::::::::{{{{****$$$$$[2/!4 ",
|
|
|
|
" =_::::]]]]]]])]))))))))})}}[2/!4 ",
|
|
|
|
" %_:::::::::{{{{{{**|$$$$$$[[2;)4 ",
|
|
|
|
" =_::::]]]])]]))))))))))}}}}[22!4 ",
|
|
|
|
" %_::::::::{{{{{|**|$$[$[[[[[22}4 ",
|
|
|
|
" =_::::]]])])))))))))}}}}}}}222-4 ",
|
|
|
|
" =_:::::{{{{{|{*|$$$$$[[[[22222!4 ",
|
|
|
|
" =_::::)]])))))))))}}}}}}(}(2;2-4 ",
|
|
|
|
" =_:::{{{{{{***|$$$$$[[[[22222;-4 ",
|
|
|
|
" =_:::{])))))))))}}}}}}}(}((2;;<4 ",
|
|
|
|
" >_:{{{{{{**|$$$$$[[[[22222;2;;-4 ",
|
|
|
|
" >_{{{{)))))))}}}}}}}(!(((((;;;-4 ",
|
|
|
|
" >_{{{{|**|*$$$$$[[[[22222;;;;;!4 ",
|
|
|
|
" '_{{{{****$$$$$2[[222222;2;;;;-4 ",
|
|
|
|
" '@{{****$$$$$[[[2[222;;2;;;;;;!4 ",
|
|
|
|
" >]{******$$$[$[2[[2222;;;;;;;;!4 ",
|
|
|
|
" '_****$$$$[$[[[[2222;2;;;;;;;;!4 ",
|
|
|
|
" '@__@@@@@@@33<3<<<<<<-<-!!!!!!!4 ",
|
|
|
|
" 44444444444444444444444444444444 ",
|
|
|
|
" ",
|
|
|
|
" ",
|
|
|
|
" "]
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-08 05:08:13 +05:30
|
|
|
from Plugins import register_report, register_book_item
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
register_report(
|
|
|
|
report,
|
|
|
|
_("FTM Style Descendant Report"),
|
|
|
|
category=_("Text Reports"),
|
|
|
|
status=(_("Beta")),
|
|
|
|
description= _("Produces a textual descendant report similar to Family Tree Maker."),
|
|
|
|
xpm=get_xpm_image(),
|
|
|
|
author_name="Alex Roitman",
|
|
|
|
author_email="shura@alex.neuro.umn.edu"
|
|
|
|
)
|
|
|
|
|
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-08 05:08:13 +05:30
|
|
|
register_book_item(
|
|
|
|
_("FTM Style Descendant Report"),
|
|
|
|
_("Text"),
|
|
|
|
FtmDescendantBareReportDialog,
|
|
|
|
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 02:02:17 +05:30
|
|
|
)
|