2003-05-08 08:09:39 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2005-01-24 22:03:47 +05:30
|
|
|
# Copyright (C) 2003-2005 Donald N. Allingham
|
2003-05-08 08:09:39 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2003-12-09 10:00:05 +05:30
|
|
|
# $Id$
|
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
# Written by Alex Roitman, largely based on the FtmStyleAncestors.py
|
|
|
|
# report by Don Allingham
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import os
|
|
|
|
import cStringIO
|
2004-12-22 07:26:37 +05:30
|
|
|
from gettext import gettext as _
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import Report
|
2003-08-26 09:37:00 +05:30
|
|
|
import BaseDoc
|
2003-05-08 08:09:39 +05:30
|
|
|
import RelLib
|
2005-01-24 22:10:36 +05:30
|
|
|
import ReportUtils
|
2004-12-22 07:26:37 +05:30
|
|
|
import ReportOptions
|
2005-01-24 22:03:47 +05:30
|
|
|
from DateHandler import displayer as dd
|
2004-12-22 07:26:37 +05:30
|
|
|
import const
|
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# DescendantReport
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class FtmDescendantReport(Report.Report):
|
|
|
|
|
2004-12-22 07:26:37 +05:30
|
|
|
def __init__(self,database,person,options_class):
|
|
|
|
"""
|
|
|
|
Creates the Ftm-Style Descendant object that produces the report.
|
|
|
|
|
|
|
|
The arguments are:
|
|
|
|
|
|
|
|
database - the GRAMPS database instance
|
|
|
|
person - currently selected person
|
|
|
|
options_class - instance of the Options class for this report
|
|
|
|
|
|
|
|
This report needs the following parameters (class variables)
|
|
|
|
that come in the options class.
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
gen - Maximum number of generations to include.
|
|
|
|
pagebbg - Whether to include page breaks between generations.
|
2004-12-22 07:26:37 +05:30
|
|
|
"""
|
|
|
|
|
2004-12-30 05:51:49 +05:30
|
|
|
Report.Report.__init__(self,database,person,options_class)
|
2004-12-22 07:26:37 +05:30
|
|
|
|
|
|
|
self.anc_map = {}
|
|
|
|
self.gen_map = {}
|
|
|
|
|
|
|
|
(self.max_generations,self.pgbrk) \
|
2004-12-23 23:09:47 +05:30
|
|
|
= options_class.get_report_generations()
|
2004-12-22 07:26:37 +05:30
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
self.sref_map = {}
|
2004-03-02 09:13:51 +05:30
|
|
|
self.sref_index = 0
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2005-01-24 22:03:47 +05:30
|
|
|
def define_table_styles(self):
|
2003-08-26 09:37:00 +05:30
|
|
|
tbl = BaseDoc.TableStyle()
|
2003-05-10 11:48:34 +05:30
|
|
|
tbl.set_width(100)
|
|
|
|
tbl.set_columns(3)
|
|
|
|
tbl.set_column_width(0,10)
|
|
|
|
tbl.set_column_width(1,5)
|
|
|
|
tbl.set_column_width(2,85)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.add_table_style('FTD-ChildTable',tbl)
|
2003-05-10 11:48:34 +05:30
|
|
|
|
2003-08-26 09:37:00 +05:30
|
|
|
cell = BaseDoc.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
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def apply_filter(self,person_handle,index,generation=1):
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
if (not person_handle) or (generation > self.max_generations):
|
2003-05-08 08:09:39 +05:30
|
|
|
return
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
self.anc_map[index] = person_handle
|
2003-05-10 11:48:34 +05:30
|
|
|
try:
|
|
|
|
self.gen_map[generation].append(index)
|
|
|
|
except:
|
|
|
|
self.gen_map[generation] = []
|
|
|
|
self.gen_map[generation].append(index)
|
2003-05-08 08:09:39 +05:30
|
|
|
|
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
|
|
|
for family_handle in person.get_family_handle_list():
|
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
|
|
|
for child_handle in family.get_child_handle_list():
|
2003-05-10 11:48:34 +05:30
|
|
|
ix = max(self.anc_map.keys())
|
2004-07-28 07:59:07 +05:30
|
|
|
self.apply_filter(child_handle,ix+1,generation+1)
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
|
|
|
|
def write_report(self):
|
2003-06-25 09:05:44 +05:30
|
|
|
|
2004-12-30 05:51:49 +05:30
|
|
|
self.apply_filter(self.start_person.get_handle(),1)
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2004-12-30 05:51:49 +05:30
|
|
|
name = self.start_person.get_primary_name().get_regular_name()
|
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:
|
2004-07-28 07:59:07 +05:30
|
|
|
person_handle = self.anc_map[key]
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.database.get_person_from_handle(person_handle)
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("FTD-Entry","%d." % key)
|
2005-01-25 10:16:52 +05:30
|
|
|
name = person.get_primary_name().get_regular_name()
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.start_bold()
|
|
|
|
self.doc.write_text(name)
|
|
|
|
self.doc.end_bold()
|
|
|
|
|
2005-01-25 10:16:52 +05:30
|
|
|
text = ReportUtils.born_died_str(self.database,person,
|
|
|
|
self.endnotes,None,"")
|
|
|
|
if text:
|
|
|
|
self.doc.write_text(text)
|
|
|
|
self.doc.write_text(' ')
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2005-01-25 10:16:52 +05:30
|
|
|
death_valid = bool(person.get_death_handle())
|
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()
|
|
|
|
|
|
|
|
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]
|
2004-07-28 07:59:07 +05:30
|
|
|
base_handle = srcref.get_base_handle()
|
2004-08-07 10:46:57 +05:30
|
|
|
base = self.database.get_source_from_handle(base_handle)
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-Endnotes',"%d." % key)
|
2004-02-14 11:10:30 +05:30
|
|
|
self.doc.write_text(base.get_title())
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2004-05-04 08:01:52 +05:30
|
|
|
for item in [ base.get_author(), base.get_publication_info(), base.get_abbreviation(),
|
2004-12-22 07:26:37 +05:30
|
|
|
dd.display(srcref.get_date()),]:
|
2003-05-08 08:09:39 +05:30
|
|
|
if item:
|
|
|
|
self.doc.write_text('; %s' % item)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
item = srcref.get_text()
|
2003-05-08 08:09:39 +05:30
|
|
|
if item:
|
|
|
|
self.doc.write_text('; ')
|
|
|
|
self.doc.write_text(_('Text:'))
|
|
|
|
self.doc.write_text(' ')
|
|
|
|
self.doc.write_text(item)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
item = srcref.get_comments()
|
2003-05-08 08:09:39 +05:30
|
|
|
if item:
|
|
|
|
self.doc.write_text('; ')
|
|
|
|
self.doc.write_text(_('Comments:'))
|
|
|
|
self.doc.write_text(' ')
|
|
|
|
self.doc.write_text(item)
|
|
|
|
|
|
|
|
self.doc.write_text('.')
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
def endnotes(self,obj):
|
2005-01-25 10:16:52 +05:30
|
|
|
if not obj:
|
|
|
|
return ""
|
2003-05-08 08:09:39 +05:30
|
|
|
msg = cStringIO.StringIO()
|
2004-02-14 11:10:30 +05:30
|
|
|
slist = obj.get_source_references()
|
2003-05-08 08:09:39 +05:30
|
|
|
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
|
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-08 08:09:39 +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-08 08:09:39 +05:30
|
|
|
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:') % {
|
2004-02-14 11:10:30 +05:30
|
|
|
'person' : person.get_primary_name().get_regular_name()} )
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.end_paragraph()
|
2004-02-14 11:10:30 +05:30
|
|
|
format = person.get_note_format()
|
2003-12-11 09:19:44 +05:30
|
|
|
self.doc.write_note(note,format,'FTD-Details')
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
def print_more_about(self,person):
|
|
|
|
|
|
|
|
first = 1
|
2003-06-02 09:14:47 +05:30
|
|
|
ncount = 1
|
2004-02-14 11:10:30 +05:30
|
|
|
for name in person.get_alternate_names():
|
2003-05-08 08:09:39 +05:30
|
|
|
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:') % {
|
2004-02-14 11:10:30 +05:30
|
|
|
'person_name' : person.get_primary_name().get_regular_name() })
|
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') % {
|
2004-02-14 11:10:30 +05:30
|
|
|
'count' : ncount, 'name' : name.get_regular_name(),
|
2003-05-08 08:09:39 +05:30
|
|
|
'endnotes' : self.endnotes(name),
|
|
|
|
})
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
ncount += 1
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in person.get_event_list():
|
|
|
|
if not event_handle:
|
2004-05-04 08:01:52 +05:30
|
|
|
continue
|
* 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)
|
2004-05-04 08:01:52 +05:30
|
|
|
else:
|
|
|
|
place = None
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
if not date and not place:
|
|
|
|
continue
|
|
|
|
if first:
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph('FTD-SubEntry')
|
2004-02-14 11:10:30 +05:30
|
|
|
name = person.get_primary_name().get_regular_name()
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.write_text(_('More about %(person_name)s:') % { 'person_name' : name })
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
first = 0
|
|
|
|
|
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:
|
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-05-04 08:01:52 +05:30
|
|
|
'date' : date,
|
2003-05-08 08:09:39 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-05-04 08:01:52 +05:30
|
|
|
'place' : place.get_title() })
|
2003-05-08 08:09:39 +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-08 08:09:39 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-05-04 08:01:52 +05:30
|
|
|
'date' : date})
|
2003-05-08 08:09:39 +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-06-02 09:14:47 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-05-04 08:01:52 +05:30
|
|
|
'place' : place.get_title() })
|
2004-02-23 00:54:31 +05:30
|
|
|
if event.get_description():
|
|
|
|
self.doc.write_text(event.get_description())
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
2003-05-10 11:48:34 +05:30
|
|
|
|
|
|
|
def print_more_about_families(self,person):
|
|
|
|
"More about husband and wife"
|
|
|
|
|
|
|
|
first = 1
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
for family_handle in person.get_family_handle_list():
|
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
|
|
|
father_handle = family.get_father_handle()
|
|
|
|
mother_handle = family.get_mother_handle()
|
|
|
|
if father_handle and mother_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
husband = self.database.get_person_from_handle(father_handle).get_primary_name().get_regular_name()
|
|
|
|
wife = self.database.get_person_from_handle(mother_handle).get_primary_name().get_regular_name()
|
2003-05-10 11:48:34 +05:30
|
|
|
else:
|
|
|
|
continue
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in family.get_event_list():
|
|
|
|
if not event_handle:
|
2004-05-04 08:01:52 +05:30
|
|
|
continue
|
* 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)
|
2004-05-04 08:01:52 +05:30
|
|
|
else:
|
|
|
|
place = None
|
2003-05-10 11:48:34 +05:30
|
|
|
|
|
|
|
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:
|
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-05-04 08:01:52 +05:30
|
|
|
'date' : date,
|
2003-05-10 11:48:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-05-04 08:01:52 +05:30
|
|
|
'place' : place.get_title() })
|
2003-05-10 11:48: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-10 11:48:34 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-05-04 08:01:52 +05:30
|
|
|
'date' : date})
|
2003-05-10 11:48: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-06-29 20:08:50 +05:30
|
|
|
'endnotes' : self.endnotes(event),
|
2004-05-04 08:01:52 +05:30
|
|
|
'place' : place.get_title() })
|
2004-02-23 00:54:31 +05:30
|
|
|
if event.get_description():
|
|
|
|
self.doc.write_text(event.get_description())
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
|
|
|
|
def print_children(self,person):
|
|
|
|
"Children of such-and-such"
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
name = person.get_primary_name().get_regular_name()
|
2003-05-10 11:48:34 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
for family_handle in person.get_family_handle_list():
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2003-05-10 11:48:34 +05:30
|
|
|
first = 1
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
father_handle = family.get_father_handle()
|
|
|
|
mother_handle = family.get_mother_handle()
|
|
|
|
if father_handle == person.get_handle():
|
|
|
|
spouse_id = mother_handle
|
2003-05-10 11:48:34 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse_id = father_handle
|
2004-08-07 10:46:57 +05:30
|
|
|
spouse = self.database.get_person_from_handle(spouse_id)
|
2003-05-10 11:48:34 +05:30
|
|
|
|
|
|
|
child_index = 0
|
2004-07-28 07:59:07 +05:30
|
|
|
for child_handle in family.get_child_handle_list():
|
2004-08-07 10:46:57 +05:30
|
|
|
child = self.database.get_person_from_handle(child_handle)
|
2003-05-10 11:48:34 +05:30
|
|
|
child_index = child_index + 1
|
2004-05-04 08:01:52 +05:30
|
|
|
for (ind,p_id) in self.anc_map.items():
|
2004-07-28 07:59:07 +05:30
|
|
|
if p_id == child_handle:
|
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:') % {
|
2004-02-14 11:10:30 +05:30
|
|
|
'person_name' : name, 'spouse_name' : spouse.get_primary_name().get_regular_name() })
|
2003-05-10 11:48:34 +05:30
|
|
|
else:
|
|
|
|
self.doc.write_text(_('Children of %(person_name)s are:') % { 'person_name' : name })
|
|
|
|
self.doc.end_paragraph()
|
2004-07-28 07:59:07 +05:30
|
|
|
self.doc.start_table(family.get_handle(),'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')
|
2004-03-27 04:58:55 +05:30
|
|
|
self.doc.start_paragraph('FTD-Child-Num')
|
2003-05-10 11:48:34 +05:30
|
|
|
self.doc.write_text("%d." % index)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_cell('FTD-Normal')
|
2004-03-27 04:58:55 +05:30
|
|
|
self.doc.start_paragraph('FTD-Child-Num')
|
2005-01-24 22:10:36 +05:30
|
|
|
self.doc.write_text("%s." % ReportUtils.roman(child_index).lower())
|
2003-05-10 11:48:34 +05:30
|
|
|
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')
|
2005-01-25 10:16:52 +05:30
|
|
|
|
|
|
|
text = ReportUtils.born_died_str(self.database,child,
|
|
|
|
self.endnotes)
|
|
|
|
self.doc.write_text(text)
|
2003-05-10 11:48:34 +05:30
|
|
|
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
2003-06-03 01:25:53 +05:30
|
|
|
if not first:
|
2004-12-22 07:26:37 +05:30
|
|
|
self.doc.end_table()
|
2003-05-10 11:48:34 +05:30
|
|
|
first = 1
|
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
def print_spouse(self,person):
|
2004-07-28 07:59:07 +05:30
|
|
|
family_list = person.get_family_handle_list()
|
2003-05-08 08:09:39 +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-08 08:09:39 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse_id = family.get_father_handle()
|
2004-05-04 08:01:52 +05:30
|
|
|
if not spouse_id:
|
2003-05-08 08:09:39 +05:30
|
|
|
return
|
2004-08-07 10:46:57 +05:30
|
|
|
spouse = self.database.get_person_from_handle(spouse_id)
|
2004-05-04 08:01:52 +05:30
|
|
|
|
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-05-04 08:01:52 +05:30
|
|
|
if event.get_name() == "Marriage":
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
event = None
|
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
if not event:
|
|
|
|
return
|
2004-05-04 08:01:52 +05:30
|
|
|
|
2005-01-25 10:16:52 +05:30
|
|
|
text = ReportUtils.married_str(self.database,person,spouse,event,
|
|
|
|
self.endnotes)
|
|
|
|
if text:
|
|
|
|
self.doc.write_text(text)
|
|
|
|
self.doc.write_text(' ')
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2005-01-25 10:16:52 +05:30
|
|
|
text = ReportUtils.born_died_str(self.database,spouse,
|
|
|
|
self.endnotes,"",0)
|
|
|
|
if text:
|
|
|
|
self.doc.write_text(text)
|
2003-05-08 08:09:39 +05:30
|
|
|
self.doc.write_text(' ')
|
2005-01-25 10:16:52 +05:30
|
|
|
|
|
|
|
death_valid = bool(spouse.get_death_handle())
|
2003-05-08 08:09:39 +05:30
|
|
|
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()
|
|
|
|
if mother_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
mother = self.database.get_person_from_handle(mother_handle)
|
2005-01-25 10:16:52 +05:30
|
|
|
mother_name = mother.get_primary_name().get_regular_name()
|
2004-05-04 08:01:52 +05:30
|
|
|
else:
|
2005-01-25 10:16:52 +05:30
|
|
|
mother_name = ""
|
2004-07-28 07:59:07 +05:30
|
|
|
father_handle = family.get_father_handle()
|
|
|
|
if father_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
father = self.database.get_person_from_handle(father_handle)
|
2005-01-25 10:16:52 +05:30
|
|
|
father_name = father.get_primary_name().get_regular_name()
|
2004-05-04 08:01:52 +05:30
|
|
|
else:
|
2005-01-25 10:16:52 +05:30
|
|
|
father_name = ""
|
2003-05-08 08:09:39 +05:30
|
|
|
|
2005-01-31 11:03:10 +05:30
|
|
|
text = ReportUtils.child_str(person,0,
|
2005-01-25 10:16:52 +05:30
|
|
|
father_name,mother_name,dead)
|
|
|
|
if text:
|
|
|
|
self.doc.write_text(text)
|
|
|
|
self.doc.write_text(' ')
|
2003-05-08 08:09:39 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2004-12-23 06:27:56 +05:30
|
|
|
class FtmDescendantOptions(ReportOptions.ReportOptions):
|
2004-12-22 07:26:37 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
Defines options and provides handling interface.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self,name,person_id=None):
|
2004-12-23 06:27:56 +05:30
|
|
|
ReportOptions.ReportOptions.__init__(self,name,person_id)
|
2004-12-22 07:26:37 +05:30
|
|
|
|
2004-12-23 06:27:56 +05:30
|
|
|
def enable_options(self):
|
2004-12-22 07:26:37 +05:30
|
|
|
# Semi-common options that should be enabled for this report
|
|
|
|
self.enable_dict = {
|
2005-01-01 07:47:17 +05:30
|
|
|
'gen' : 10,
|
|
|
|
'pagebbg' : 0,
|
2004-12-22 07:26:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
def make_default_style(self,default_style):
|
|
|
|
"""Make the default output style for the FTM Style Descendant report."""
|
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=16,bold=1,italic=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(1)
|
|
|
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
|
|
para.set(pad=0.5)
|
|
|
|
para.set_description(_('The style used for the title of the page.'))
|
|
|
|
default_style.add_style("FTD-Title",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2004-12-22 07:26:37 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=14,italic=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(2)
|
|
|
|
para.set(pad=0.5)
|
|
|
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
|
|
para.set_description(_('The style used for the generation header.'))
|
|
|
|
default_style.add_style("FTD-Generation",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2004-12-22 07:26:37 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set(first_indent=-1.0,lmargin=1.0,pad=0.25)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_style("FTD-Entry",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2004-12-22 07:26:37 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set(lmargin=1.0,pad=0.05)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_style("FTD-Details",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2004-12-22 07:26:37 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set(lmargin=0.0,pad=0.05)
|
|
|
|
para.set_description(_('The style used for numbering children.'))
|
|
|
|
default_style.add_style("FTD-Child-Num",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2004-12-22 07:26:37 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set(lmargin=1.0,pad=0.25)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_style("FTD-SubEntry",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2004-12-22 07:26:37 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set(pad=0.05)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_style("FTD-Endnotes",para)
|
2003-06-08 05:08:13 +05:30
|
|
|
|
2003-05-08 08:09:39 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-05 10:32:19 +05:30
|
|
|
from PluginMgr import register_report
|
2003-05-08 08:09:39 +05:30
|
|
|
register_report(
|
2004-12-22 07:26:37 +05:30
|
|
|
name = 'ftm_descendant_report',
|
|
|
|
category = const.CATEGORY_TEXT,
|
|
|
|
report_class = FtmDescendantReport,
|
|
|
|
options_class = FtmDescendantOptions,
|
|
|
|
modes = Report.MODE_GUI | Report.MODE_BKI | Report.MODE_CLI,
|
|
|
|
translated_name = _("FTM Style Descendant Report"),
|
|
|
|
status = _("Beta"),
|
2003-05-08 08:09:39 +05:30
|
|
|
description= _("Produces a textual descendant report similar to Family Tree Maker."),
|
|
|
|
author_name="Alex Roitman",
|
|
|
|
author_email="shura@alex.neuro.umn.edu"
|
|
|
|
)
|