2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2008-01-06 02:12:05 +05:30
|
|
|
# Copyright (C) 2000-2007 Donald N. Allingham
|
|
|
|
# Copyright (C) 2007-2008 Brian G. Matherly
|
2009-11-02 20:27:34 +05:30
|
|
|
# Copyright (C) 2009 Nick Hall
|
|
|
|
# Copyright (C) 2009 Benny Malengier
|
2002-10-20 19:55:16 +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-15 09:48:51 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# standard python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import os
|
2010-01-18 10:12:17 +05:30
|
|
|
from gen.ggettext import gettext as _
|
2010-01-10 01:24:32 +05:30
|
|
|
from collections import defaultdict
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2009-11-02 20:27:34 +05:30
|
|
|
from gen.lib import EventRoleType, EventType, Person
|
2009-05-31 20:29:56 +05:30
|
|
|
from gen.plug.docgen import (IndexMark, FontStyle, ParagraphStyle, TableStyle,
|
|
|
|
TableCellStyle, FONT_SANS_SERIF, INDEX_TYPE_TOC,
|
|
|
|
PARA_ALIGN_CENTER)
|
2005-08-06 08:27:37 +05:30
|
|
|
import DateHandler
|
2009-11-02 20:27:34 +05:30
|
|
|
from gen.plug.menu import BooleanOption, FilterOption, PersonOption, \
|
|
|
|
BooleanListOption
|
2009-10-24 19:23:20 +05:30
|
|
|
from ReportBase import Report, ReportUtils, MenuReportOptions
|
2007-06-13 09:43:00 +05:30
|
|
|
from ReportBase import Bibliography, Endnotes
|
2010-01-14 09:38:04 +05:30
|
|
|
from gen.display.name import displayer as _nd
|
2008-02-18 19:36:41 +05:30
|
|
|
from Utils import media_path_full
|
2006-10-12 01:10:08 +05:30
|
|
|
from QuestionDialog import WarningDialog
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Global variables
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
SECTION_CATEGORY = _("Sections")
|
|
|
|
# Translated headers for the sections
|
|
|
|
FACTS = _("Individual Facts")
|
|
|
|
EDUCATION = str(EventType(EventType.EDUCATION))
|
|
|
|
CENSUS = str(EventType(EventType.CENSUS))
|
|
|
|
ELECTED = str(EventType(EventType.ELECTED))
|
|
|
|
MED_INFO = str(EventType(EventType.MED_INFO))
|
|
|
|
MILITARY_SERV = str(EventType(EventType.MILITARY_SERV))
|
|
|
|
NOB_TITLE = str(EventType(EventType.NOB_TITLE))
|
|
|
|
OCCUPATION = str(EventType(EventType.OCCUPATION))
|
|
|
|
PROPERTY = str(EventType(EventType.PROPERTY))
|
|
|
|
RESIDENCE = str(EventType(EventType.RESIDENCE))
|
|
|
|
FAMILY = _("Family")
|
|
|
|
CUSTOM = _("Custom")
|
|
|
|
|
|
|
|
SECTION_LIST = [FACTS, CENSUS, EDUCATION, ELECTED, MED_INFO,
|
|
|
|
MILITARY_SERV, NOB_TITLE, OCCUPATION, PROPERTY,
|
|
|
|
RESIDENCE, CUSTOM]
|
|
|
|
|
|
|
|
#Grouping of eventtypes in sections
|
|
|
|
GROUP_DICT = {FACTS: [EventType.ADOPT,
|
|
|
|
EventType.ADULT_CHRISTEN,
|
|
|
|
EventType.BAPTISM,
|
|
|
|
EventType.BAR_MITZVAH,
|
|
|
|
EventType.BAS_MITZVAH,
|
|
|
|
EventType.BIRTH,
|
|
|
|
EventType.BURIAL,
|
|
|
|
EventType.CAUSE_DEATH,
|
|
|
|
EventType.CHRISTEN,
|
|
|
|
EventType.CONFIRMATION,
|
|
|
|
EventType.CREMATION,
|
|
|
|
EventType.DEATH,
|
|
|
|
EventType.EMIGRATION,
|
|
|
|
EventType.FIRST_COMMUN,
|
|
|
|
EventType.IMMIGRATION,
|
|
|
|
EventType.NATURALIZATION,
|
|
|
|
EventType.ORDINATION,
|
|
|
|
EventType.PROBATE,
|
|
|
|
EventType.RELIGION,
|
|
|
|
EventType.RETIREMENT,
|
|
|
|
EventType.WILL],
|
|
|
|
FAMILY: [EventType.ANNULMENT,
|
|
|
|
EventType.BLESS,
|
|
|
|
EventType.ENGAGEMENT,
|
|
|
|
EventType.DIVORCE,
|
|
|
|
EventType.DIV_FILING,
|
|
|
|
EventType.MARRIAGE,
|
|
|
|
EventType.MARR_ALT,
|
|
|
|
EventType.MARR_BANNS,
|
|
|
|
EventType.MARR_CONTR,
|
|
|
|
EventType.MARR_LIC,
|
|
|
|
EventType.MARR_SETTL,
|
|
|
|
EventType.NUM_MARRIAGES],
|
|
|
|
EDUCATION: [EventType.DEGREE,
|
|
|
|
EventType.EDUCATION,
|
|
|
|
EventType.GRADUATION],
|
|
|
|
CENSUS: [EventType.CENSUS],
|
|
|
|
ELECTED: [EventType.ELECTED],
|
|
|
|
MED_INFO: [EventType.MED_INFO],
|
|
|
|
MILITARY_SERV: [EventType.MILITARY_SERV],
|
|
|
|
NOB_TITLE: [EventType.NOB_TITLE],
|
|
|
|
OCCUPATION: [EventType.OCCUPATION],
|
|
|
|
PROPERTY: [EventType.PROPERTY],
|
|
|
|
RESIDENCE: [EventType.RESIDENCE],
|
|
|
|
CUSTOM: [EventType.CUSTOM],
|
|
|
|
}
|
|
|
|
|
|
|
|
#Construct type to group map
|
|
|
|
TYPE2GROUP = {}
|
|
|
|
for event_group, type_list in GROUP_DICT.iteritems():
|
|
|
|
for event_type in type_list:
|
|
|
|
TYPE2GROUP[event_type] = event_group
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2008-03-02 04:17:48 +05:30
|
|
|
# IndivCompleteReport
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2006-06-01 10:09:40 +05:30
|
|
|
class IndivCompleteReport(Report):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
def __init__(self, database, options_class):
|
2005-01-01 07:47:17 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Create the IndivCompleteReport object that produces the report.
|
2005-01-01 07:47:17 +05:30
|
|
|
|
|
|
|
The arguments are:
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
database - the GRAMPS database instance
|
|
|
|
options_class - instance of the Options class for this report
|
|
|
|
|
|
|
|
This report needs the following parameters (class variables)
|
|
|
|
that come in the options class.
|
|
|
|
|
|
|
|
filter - Filter to be applied to the people of the database.
|
|
|
|
The option class carries its number, and the function
|
|
|
|
returning the list of filters.
|
2009-08-14 12:44:25 +05:30
|
|
|
cites - Whether or not to include source information.
|
2009-11-02 20:27:34 +05:30
|
|
|
sort - Whether ot not to sort events into chronological order.
|
|
|
|
sections - Which event groups should be given separate sections.
|
2005-01-01 07:47:17 +05:30
|
|
|
"""
|
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
Report.__init__(self, database, options_class)
|
2005-01-01 07:47:17 +05:30
|
|
|
|
2008-01-23 11:11:46 +05:30
|
|
|
menu = options_class.menu
|
|
|
|
self.use_srcs = menu.get_option_by_name('cites').get_value()
|
2009-11-02 20:27:34 +05:30
|
|
|
|
|
|
|
self.sort = menu.get_option_by_name('sort').get_value()
|
2005-01-01 07:47:17 +05:30
|
|
|
|
2008-01-06 02:12:05 +05:30
|
|
|
filter_option = options_class.menu.get_option_by_name('filter')
|
|
|
|
self.filter = filter_option.get_filter()
|
2007-08-01 17:25:55 +05:30
|
|
|
self.bibli = None
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
self.section_list = menu.get_option_by_name('sections').get_selected()
|
2006-05-27 09:09:43 +05:30
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
def write_fact(self, event_ref, event, event_group):
|
|
|
|
"""
|
|
|
|
Writes a single event.
|
|
|
|
"""
|
|
|
|
group_size = len(GROUP_DICT[event_group])
|
|
|
|
role = event_ref.get_role()
|
|
|
|
description = event.get_description()
|
|
|
|
|
2005-08-06 08:27:37 +05:30
|
|
|
date = DateHandler.get_date(event)
|
2009-11-02 20:27:34 +05:30
|
|
|
place = ''
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = event.get_place_handle()
|
|
|
|
if place_handle:
|
2005-12-06 12:08:09 +05:30
|
|
|
place = self.database.get_place_from_handle(
|
2009-11-02 20:27:34 +05:30
|
|
|
place_handle).get_title()
|
|
|
|
date_place = combine(_('%s in %s. '), '%s. ', date, place)
|
|
|
|
|
|
|
|
if group_size != 1 or event_group == CUSTOM:
|
|
|
|
# Groups with more than one type
|
|
|
|
column_1 = str(event.get_type())
|
|
|
|
if role not in (EventRoleType.PRIMARY, EventRoleType.FAMILY):
|
|
|
|
column_1 = column_1 + ' (' + str(role) + ')'
|
|
|
|
column_2 = combine('%s, %s', '%s', description, date_place)
|
2004-04-26 09:47:01 +05:30
|
|
|
else:
|
2009-11-02 20:27:34 +05:30
|
|
|
# Groups with a single type (remove event type from first column)
|
|
|
|
column_1 = date
|
|
|
|
column_2 = combine('%s, %s', '%s', description, place)
|
2006-05-27 09:09:43 +05:30
|
|
|
|
2007-01-31 08:46:11 +05:30
|
|
|
endnotes = ""
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.use_srcs:
|
2008-01-23 11:11:46 +05:30
|
|
|
endnotes = Endnotes.cite_source(self.bibli, event)
|
2006-05-27 09:09:43 +05:30
|
|
|
|
|
|
|
self.doc.start_row()
|
2009-11-02 20:27:34 +05:30
|
|
|
self.normal_cell(column_1)
|
2006-05-27 09:09:43 +05:30
|
|
|
self.doc.start_cell('IDS-NormalCell')
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.write_text(column_2)
|
2007-01-31 08:46:11 +05:30
|
|
|
if endnotes:
|
|
|
|
self.doc.start_superscript()
|
|
|
|
self.doc.write_text(endnotes)
|
|
|
|
self.doc.end_superscript()
|
2006-05-27 09:09:43 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
2007-03-20 17:35:58 +05:30
|
|
|
for notehandle in event.get_note_list():
|
|
|
|
note = self.database.get_note_from_handle(notehandle)
|
2009-02-08 15:29:36 +05:30
|
|
|
text = note.get_styledtext()
|
2009-11-02 20:27:34 +05:30
|
|
|
note_format = note.get_format()
|
|
|
|
self.doc.write_styled_note(text, note_format, 'IDS-Normal')
|
2006-05-27 09:09:43 +05:30
|
|
|
|
|
|
|
self.doc.end_cell()
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2008-01-23 11:11:46 +05:30
|
|
|
def write_p_entry(self, label, parent, rel, pmark=None):
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(label)
|
|
|
|
|
|
|
|
if parent:
|
2007-11-19 18:30:53 +05:30
|
|
|
text = '%(parent)s, relationship: %(relation)s' % {
|
2009-11-02 20:27:34 +05:30
|
|
|
'parent': parent,
|
|
|
|
'relation': rel}
|
2007-11-19 18:30:53 +05:30
|
|
|
self.normal_cell(text, mark=pmark)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.normal_cell('')
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_note(self):
|
2008-02-20 10:22:10 +05:30
|
|
|
notelist = self.person.get_note_list()
|
2007-03-20 17:35:58 +05:30
|
|
|
if not notelist:
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table('note','IDS-IndTable')
|
|
|
|
self.doc.start_row()
|
2008-01-23 11:11:46 +05:30
|
|
|
self.doc.start_cell('IDS-TableHead', 2)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph('IDS-TableTitle')
|
|
|
|
self.doc.write_text(_('Notes'))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
2007-03-20 17:35:58 +05:30
|
|
|
for notehandle in notelist:
|
|
|
|
note = self.database.get_note_from_handle(notehandle)
|
2009-02-08 15:29:36 +05:30
|
|
|
text = note.get_styledtext()
|
2009-11-02 20:27:34 +05:30
|
|
|
note_format = note.get_format()
|
2007-03-20 17:35:58 +05:30
|
|
|
self.doc.start_row()
|
2008-01-23 11:11:46 +05:30
|
|
|
self.doc.start_cell('IDS-NormalCell', 2)
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.write_styled_note(text, note_format, 'IDS-Normal')
|
2009-02-08 15:29:36 +05:30
|
|
|
|
2007-03-20 17:35:58 +05:30
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2005-01-01 07:47:17 +05:30
|
|
|
|
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_alt_parents(self):
|
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
if len(self.person.get_parent_family_handle_list()) < 2:
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("altparents","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
2008-01-23 11:11:46 +05:30
|
|
|
self.doc.start_cell("IDS-TableHead", 2)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Alternate Parents"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
family_handle_list = self.person.get_parent_family_handle_list()
|
2006-04-19 09:36:27 +05:30
|
|
|
for family_handle in family_handle_list:
|
2005-12-06 12:08:09 +05:30
|
|
|
if family_handle == \
|
2008-02-20 10:22:10 +05:30
|
|
|
self.person.get_main_parents_family_handle():
|
2002-10-20 19:55:16 +05:30
|
|
|
continue
|
|
|
|
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2006-04-19 09:36:27 +05:30
|
|
|
|
|
|
|
# Get the mother and father relationships
|
|
|
|
frel = ""
|
|
|
|
mrel = ""
|
2008-02-20 10:22:10 +05:30
|
|
|
child_handle = self.person.get_handle()
|
2006-04-19 09:36:27 +05:30
|
|
|
child_ref_list = family.get_child_ref_list()
|
|
|
|
for child_ref in child_ref_list:
|
|
|
|
if child_ref.ref == child_handle:
|
|
|
|
frel = str(child_ref.get_father_relation())
|
|
|
|
mrel = str(child_ref.get_mother_relation())
|
|
|
|
|
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)
|
2006-07-21 01:07:56 +05:30
|
|
|
fname = _nd.display(father)
|
2009-11-02 20:27:34 +05:30
|
|
|
mark = ReportUtils.get_person_mark(self.database, father)
|
|
|
|
self.write_p_entry(_('Father'), fname, frel, mark)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2009-11-02 20:27:34 +05:30
|
|
|
self.write_p_entry(_('Father'), '', '')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
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)
|
2006-07-21 01:07:56 +05:30
|
|
|
mname = _nd.display(mother)
|
2009-11-02 20:27:34 +05:30
|
|
|
mark = ReportUtils.get_person_mark(self.database, mother)
|
|
|
|
self.write_p_entry(_('Mother'), mname, mrel, mark)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2009-11-02 20:27:34 +05:30
|
|
|
self.write_p_entry(_('Mother'), '', '')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_alt_names(self):
|
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
if len(self.person.get_alternate_names()) < 1:
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
|
|
|
|
2007-11-19 18:30:53 +05:30
|
|
|
self.doc.start_table("altnames","IDS-IndTable")
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.start_cell("IDS-TableHead", 2)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Alternate Names"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
for name in self.person.get_alternate_names():
|
2006-07-21 01:07:56 +05:30
|
|
|
name_type = str( name.get_type() )
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2006-07-21 01:07:56 +05:30
|
|
|
self.normal_cell(name_type)
|
|
|
|
text = _nd.display_name(name)
|
2007-01-31 08:46:11 +05:30
|
|
|
endnotes = ""
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.use_srcs:
|
2008-02-24 19:25:55 +05:30
|
|
|
endnotes = Endnotes.cite_source(self.bibli, name)
|
2009-11-02 20:27:34 +05:30
|
|
|
self.normal_cell(text, endnotes)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2007-01-23 07:21:33 +05:30
|
|
|
def write_addresses(self):
|
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
alist = self.person.get_address_list()
|
2007-01-23 07:21:33 +05:30
|
|
|
|
|
|
|
if len(alist) == 0:
|
|
|
|
return
|
|
|
|
|
|
|
|
self.doc.start_table("addresses","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.start_cell("IDS-TableHead", 2)
|
2007-01-23 07:21:33 +05:30
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Addresses"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
|
|
|
for addr in alist:
|
|
|
|
text = ReportUtils.get_address_str(addr)
|
|
|
|
date = DateHandler.get_date(addr)
|
2007-01-31 08:46:11 +05:30
|
|
|
endnotes = ""
|
|
|
|
if self.use_srcs:
|
2009-11-02 20:27:34 +05:30
|
|
|
endnotes = Endnotes.cite_source(self.bibli, addr)
|
2007-01-23 07:21:33 +05:30
|
|
|
self.doc.start_row()
|
|
|
|
self.normal_cell(date)
|
2009-11-02 20:27:34 +05:30
|
|
|
self.normal_cell(text, endnotes)
|
2007-01-23 07:21:33 +05:30
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def write_families(self):
|
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
if not len(self.person.get_family_handle_list()):
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("three","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
2008-01-23 11:11:46 +05:30
|
|
|
self.doc.start_cell("IDS-TableHead", 2)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Marriages/Children"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
for family_handle in self.person.get_family_handle_list():
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2008-02-20 10:22:10 +05:30
|
|
|
if self.person.get_handle() == family.get_father_handle():
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse_id = family.get_mother_handle()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse_id = family.get_father_handle()
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2008-01-23 11:11:46 +05:30
|
|
|
self.doc.start_cell("IDS-NormalCell", 2)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-Spouse")
|
2004-04-26 09:47:01 +05:30
|
|
|
if spouse_id:
|
2004-08-07 10:46:57 +05:30
|
|
|
spouse = self.database.get_person_from_handle(spouse_id)
|
2006-07-21 01:07:56 +05:30
|
|
|
text = _nd.display(spouse)
|
2008-01-23 11:11:46 +05:30
|
|
|
mark = ReportUtils.get_person_mark(self.database, spouse)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
text = _("unknown")
|
2006-06-03 09:02:26 +05:30
|
|
|
mark = None
|
2008-01-23 11:11:46 +05:30
|
|
|
self.doc.write_text(text, mark)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
event_ref_list = family.get_event_ref_list()
|
|
|
|
for event_ref, event in self.get_event_list(event_ref_list):
|
|
|
|
self.write_fact(event_ref, event, FAMILY)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2006-04-19 09:36:27 +05:30
|
|
|
child_ref_list = family.get_child_ref_list()
|
|
|
|
if len(child_ref_list):
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(_("Children"))
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_cell("IDS-ListCell")
|
2007-01-25 18:24:57 +05:30
|
|
|
|
2006-04-19 09:36:27 +05:30
|
|
|
for child_ref in child_ref_list:
|
2007-01-25 18:24:57 +05:30
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
2006-04-19 09:36:27 +05:30
|
|
|
child = self.database.get_person_from_handle(child_ref.ref)
|
2006-07-21 01:07:56 +05:30
|
|
|
name = _nd.display(child)
|
2008-01-23 11:11:46 +05:30
|
|
|
mark = ReportUtils.get_person_mark(self.database, child)
|
|
|
|
self.doc.write_text(name, mark)
|
2007-01-25 18:24:57 +05:30
|
|
|
self.doc.end_paragraph()
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
def get_event_list(self, event_ref_list):
|
|
|
|
"""
|
|
|
|
Return a list of (EventRef, Event) pairs. Order by event date
|
|
|
|
if the user option is set.
|
|
|
|
"""
|
|
|
|
event_list = []
|
|
|
|
for event_ref in event_ref_list:
|
|
|
|
if event_ref:
|
|
|
|
event = self.database.get_event_from_handle(event_ref.ref)
|
|
|
|
if event:
|
|
|
|
sort_value = event.get_date_object().get_sort_value()
|
|
|
|
event_list.append((sort_value, event_ref, event))
|
|
|
|
|
|
|
|
if self.sort:
|
|
|
|
event_list.sort()
|
|
|
|
|
|
|
|
return [(item[1], item[2]) for item in event_list]
|
|
|
|
|
|
|
|
def write_section(self, event_ref_list, event_group):
|
|
|
|
"""
|
|
|
|
Writes events in a single event group.
|
|
|
|
"""
|
|
|
|
self.doc.start_table(event_group,"IDS-IndTable")
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.start_cell("IDS-TableHead", 2)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.write_text(event_group)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
for event_ref, event in self.get_event_list(event_ref_list):
|
|
|
|
self.write_fact(event_ref, event, event_group)
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
def write_events(self):
|
|
|
|
"""
|
|
|
|
Write events. The user can create separate sections for a
|
|
|
|
pre-defined set of event groups. When an event has a type
|
|
|
|
contained within a group it is moved from the Individual Facts
|
|
|
|
section into its own section.
|
|
|
|
"""
|
2010-01-10 01:24:32 +05:30
|
|
|
event_dict = defaultdict(list)
|
2009-11-02 20:27:34 +05:30
|
|
|
event_ref_list = self.person.get_event_ref_list()
|
|
|
|
for event_ref in event_ref_list:
|
|
|
|
if event_ref:
|
|
|
|
event = self.database.get_event_from_handle(event_ref.ref)
|
|
|
|
group = TYPE2GROUP[event.get_type().value]
|
|
|
|
if group not in self.section_list:
|
|
|
|
group = FACTS
|
2010-01-10 01:24:32 +05:30
|
|
|
event_dict[group].append(event_ref)
|
2009-11-02 20:27:34 +05:30
|
|
|
|
|
|
|
# Write separate event group sections
|
|
|
|
for group in SECTION_LIST:
|
|
|
|
if group in event_dict:
|
|
|
|
self.write_section(event_dict[group], group)
|
|
|
|
|
|
|
|
def normal_cell(self, text, endnotes=None, mark=None):
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_cell('IDS-NormalCell')
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.write_text(text, mark)
|
2007-01-31 08:46:11 +05:30
|
|
|
if endnotes:
|
2007-07-21 18:53:32 +05:30
|
|
|
self.doc.start_superscript()
|
2007-01-31 08:46:11 +05:30
|
|
|
self.doc.write_text(endnotes)
|
2007-07-21 18:53:32 +05:30
|
|
|
self.doc.end_superscript()
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_report(self):
|
2010-02-15 07:38:21 +05:30
|
|
|
plist = self.database.get_person_handles(sort_handles=True)
|
2003-06-27 09:56:29 +05:30
|
|
|
if self.filter:
|
2009-11-02 20:27:34 +05:30
|
|
|
ind_list = self.filter.apply(self.database, plist)
|
2003-06-27 09:56:29 +05:30
|
|
|
else:
|
|
|
|
ind_list = plist
|
2010-02-15 07:38:21 +05:30
|
|
|
|
2009-07-04 01:53:41 +05:30
|
|
|
for count, person_handle in enumerate(ind_list):
|
2008-02-20 10:22:10 +05:30
|
|
|
self.person = self.database.get_person_from_handle(
|
2005-12-06 12:08:09 +05:30
|
|
|
person_handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_person(count)
|
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
def write_person(self, count):
|
2002-10-20 19:55:16 +05:30
|
|
|
if count != 0:
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.page_break()
|
2007-08-01 17:25:55 +05:30
|
|
|
self.bibli = Bibliography(Bibliography.MODE_PAGE)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
media_list = self.person.get_media_list()
|
|
|
|
name = _nd.display(self.person)
|
2006-06-04 09:56:28 +05:30
|
|
|
title = _("Summary of %s") % name
|
2009-05-30 03:55:44 +05:30
|
|
|
mark = IndexMark(title, INDEX_TYPE_TOC, 1)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-Title")
|
2009-11-02 20:27:34 +05:30
|
|
|
self.doc.write_text(title, mark)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
if len(media_list) > 0:
|
2009-11-02 20:27:34 +05:30
|
|
|
media_handle = media_list[0].get_reference_handle()
|
|
|
|
media = self.database.get_object_from_handle(media_handle)
|
|
|
|
mime_type = media.get_mime_type()
|
2005-05-24 18:38:06 +05:30
|
|
|
if mime_type and mime_type.startswith("image"):
|
2009-11-02 20:27:34 +05:30
|
|
|
filename = media_path_full(self.database, media.get_path())
|
2006-10-12 01:10:08 +05:30
|
|
|
if os.path.exists(filename):
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
2008-04-06 21:05:04 +05:30
|
|
|
self.doc.add_media_object(filename, "right", 4.0, 4.0)
|
2006-10-12 01:10:08 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
else:
|
|
|
|
WarningDialog(_("Could not add photo to page"),
|
|
|
|
"%s: %s" % (filename, _('File does not exist')))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("one","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Name"))
|
2008-02-20 10:22:10 +05:30
|
|
|
name = self.person.get_primary_name()
|
2006-07-21 01:07:56 +05:30
|
|
|
text = _nd.display_name(name)
|
2008-02-20 10:22:10 +05:30
|
|
|
mark = ReportUtils.get_person_mark(self.database, self.person)
|
2007-01-31 08:46:11 +05:30
|
|
|
endnotes = ""
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.use_srcs:
|
2008-02-24 19:25:55 +05:30
|
|
|
endnotes = Endnotes.cite_source(self.bibli, name)
|
2009-11-02 20:27:34 +05:30
|
|
|
self.normal_cell(text, endnotes, mark)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Gender"))
|
2009-11-02 20:27:34 +05:30
|
|
|
if self.person.get_gender() == Person.MALE:
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(_("Male"))
|
2009-11-02 20:27:34 +05:30
|
|
|
elif self.person.get_gender() == Person.FEMALE:
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(_("Female"))
|
2007-07-24 09:39:35 +05:30
|
|
|
else:
|
|
|
|
self.normal_cell(_("Unknown"))
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2008-02-20 10:22:10 +05:30
|
|
|
family_handle = self.person.get_main_parents_family_handle()
|
2004-07-28 07:59:07 +05:30
|
|
|
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
|
|
|
father_inst_id = family.get_father_handle()
|
2004-04-26 09:47:01 +05:30
|
|
|
if father_inst_id:
|
2005-12-06 12:08:09 +05:30
|
|
|
father_inst = self.database.get_person_from_handle(
|
|
|
|
father_inst_id)
|
2006-07-21 01:07:56 +05:30
|
|
|
father = _nd.display(father_inst)
|
2009-11-02 20:27:34 +05:30
|
|
|
fmark = ReportUtils.get_person_mark(self.database, father_inst)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
father = ""
|
2006-06-03 09:02:26 +05:30
|
|
|
fmark = None
|
2004-07-28 07:59:07 +05:30
|
|
|
mother_inst_id = family.get_mother_handle()
|
2004-04-26 09:47:01 +05:30
|
|
|
if mother_inst_id:
|
2005-12-06 12:08:09 +05:30
|
|
|
mother_inst = self.database.get_person_from_handle(
|
|
|
|
mother_inst_id)
|
2006-07-21 01:07:56 +05:30
|
|
|
mother = _nd.display(mother_inst)
|
2009-11-02 20:27:34 +05:30
|
|
|
mmark = ReportUtils.get_person_mark(self.database, mother_inst)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
mother = ""
|
2006-06-03 09:02:26 +05:30
|
|
|
mmark = None
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
father = ""
|
2006-06-03 09:02:26 +05:30
|
|
|
fmark = None
|
2002-10-20 19:55:16 +05:30
|
|
|
mother = ""
|
2006-06-03 09:02:26 +05:30
|
|
|
mmark = None
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Father"))
|
2009-11-02 20:27:34 +05:30
|
|
|
self.normal_cell(father, mark=fmark)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Mother"))
|
2009-11-02 20:27:34 +05:30
|
|
|
self.normal_cell(mother, mark=mmark)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.write_alt_names()
|
2009-11-02 20:27:34 +05:30
|
|
|
self.write_events()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_alt_parents()
|
|
|
|
self.write_families()
|
2007-01-23 07:21:33 +05:30
|
|
|
self.write_addresses()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_note()
|
2007-06-13 09:43:00 +05:30
|
|
|
if self.use_srcs:
|
2009-11-02 20:27:34 +05:30
|
|
|
Endnotes.write_endnotes(self.bibli, self.database, self.doc)
|
2008-01-06 02:12:05 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2008-01-06 02:12:05 +05:30
|
|
|
# IndivCompleteOptions
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2008-01-06 02:12:05 +05:30
|
|
|
class IndivCompleteOptions(MenuReportOptions):
|
2005-01-01 07:47:17 +05:30
|
|
|
"""
|
|
|
|
Defines options and provides handling interface.
|
|
|
|
"""
|
2008-01-24 18:20:33 +05:30
|
|
|
def __init__(self, name, dbase):
|
|
|
|
self.__db = dbase
|
2008-01-18 11:09:50 +05:30
|
|
|
self.__pid = None
|
|
|
|
self.__filter = None
|
2008-01-24 18:20:33 +05:30
|
|
|
MenuReportOptions.__init__(self, name, dbase)
|
2008-01-06 02:12:05 +05:30
|
|
|
|
2008-01-24 18:20:33 +05:30
|
|
|
def add_menu_options(self, menu):
|
2008-01-06 02:12:05 +05:30
|
|
|
################################
|
|
|
|
category_name = _("Report Options")
|
|
|
|
################################
|
|
|
|
|
2008-01-23 11:11:46 +05:30
|
|
|
self.__filter = FilterOption(_("Filter"), 0)
|
|
|
|
self.__filter.set_help(
|
2009-11-26 16:43:44 +05:30
|
|
|
_("Select the filter to be applied to the report."))
|
2008-01-23 11:11:46 +05:30
|
|
|
menu.add_option(category_name, "filter", self.__filter)
|
|
|
|
self.__filter.connect('value-changed', self.__filter_changed)
|
|
|
|
|
2008-01-18 11:09:50 +05:30
|
|
|
self.__pid = PersonOption(_("Filter Person"))
|
2009-11-26 16:43:44 +05:30
|
|
|
self.__pid.set_help(_("The center person for the filter."))
|
2008-01-18 11:09:50 +05:30
|
|
|
menu.add_option(category_name, "pid", self.__pid)
|
|
|
|
self.__pid.connect('value-changed', self.__update_filters)
|
|
|
|
|
|
|
|
self.__update_filters()
|
2008-01-06 02:12:05 +05:30
|
|
|
|
2010-03-16 03:41:25 +05:30
|
|
|
sort = BooleanOption(_("List events chronologically"), True)
|
|
|
|
sort.set_help(_("Whether to sort events into chronological order."))
|
2009-11-02 20:27:34 +05:30
|
|
|
menu.add_option(category_name, "sort", sort)
|
|
|
|
|
2008-01-06 02:12:05 +05:30
|
|
|
cites = BooleanOption(_("Include Source Information"), True)
|
|
|
|
cites.set_help(_("Whether to cite sources."))
|
2008-01-23 11:11:46 +05:30
|
|
|
menu.add_option(category_name, "cites", cites)
|
2009-11-02 20:27:34 +05:30
|
|
|
|
|
|
|
################################
|
|
|
|
category_name = SECTION_CATEGORY
|
|
|
|
################################
|
|
|
|
opt = BooleanListOption(_("Event groups"))
|
|
|
|
opt.set_help(_("Check if a separate section is required."))
|
|
|
|
for section in SECTION_LIST:
|
|
|
|
if section != FACTS:
|
|
|
|
opt.add_button(section, True)
|
|
|
|
|
|
|
|
menu.add_option(category_name, "sections", opt)
|
|
|
|
|
2008-01-18 11:09:50 +05:30
|
|
|
def __update_filters(self):
|
|
|
|
"""
|
|
|
|
Update the filter list based on the selected person
|
|
|
|
"""
|
|
|
|
gid = self.__pid.get_value()
|
2008-01-24 18:20:33 +05:30
|
|
|
person = self.__db.get_person_from_gramps_id(gid)
|
2008-01-18 11:09:50 +05:30
|
|
|
filter_list = ReportUtils.get_person_filters(person, True)
|
|
|
|
self.__filter.set_filters(filter_list)
|
|
|
|
|
|
|
|
def __filter_changed(self):
|
|
|
|
"""
|
|
|
|
Handle filter change. If the filter is not specific to a person,
|
|
|
|
disable the person option
|
|
|
|
"""
|
|
|
|
filter_value = self.__filter.get_value()
|
|
|
|
if filter_value in [0, 2, 3, 4, 5]:
|
|
|
|
# Filters 0, 2, 3, 4 and 5 rely on the center person
|
|
|
|
self.__pid.set_available(True)
|
|
|
|
else:
|
|
|
|
# The rest don't
|
|
|
|
self.__pid.set_available(False)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-11-02 20:27:34 +05:30
|
|
|
def make_default_style(self, default_style):
|
2005-01-01 07:47:17 +05:30
|
|
|
"""Make the default output style for the Individual Complete Report."""
|
2007-04-23 17:16:26 +05:30
|
|
|
# Paragraph Styles
|
2009-05-30 03:55:44 +05:30
|
|
|
font = FontStyle()
|
2005-01-01 07:47:17 +05:30
|
|
|
font.set_bold(1)
|
2009-05-30 03:55:44 +05:30
|
|
|
font.set_type_face(FONT_SANS_SERIF)
|
2005-01-01 07:47:17 +05:30
|
|
|
font.set_size(16)
|
2009-11-02 20:27:34 +05:30
|
|
|
para = ParagraphStyle()
|
|
|
|
para.set_alignment(PARA_ALIGN_CENTER)
|
|
|
|
para.set_top_margin(ReportUtils.pt2cm(8))
|
|
|
|
para.set_bottom_margin(ReportUtils.pt2cm(8))
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_description(_("The style used for the title of the page."))
|
|
|
|
default_style.add_paragraph_style("IDS-Title", para)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2009-05-30 03:55:44 +05:30
|
|
|
font = FontStyle()
|
2005-01-01 07:47:17 +05:30
|
|
|
font.set_bold(1)
|
2009-05-30 03:55:44 +05:30
|
|
|
font.set_type_face(FONT_SANS_SERIF)
|
2005-01-01 07:47:17 +05:30
|
|
|
font.set_size(12)
|
|
|
|
font.set_italic(1)
|
2009-11-02 20:27:34 +05:30
|
|
|
para = ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_top_margin(ReportUtils.pt2cm(3))
|
|
|
|
para.set_bottom_margin(ReportUtils.pt2cm(3))
|
|
|
|
para.set_description(_("The style used for category labels."))
|
|
|
|
default_style.add_paragraph_style("IDS-TableTitle", para)
|
2005-01-01 07:47:17 +05:30
|
|
|
|
2009-05-30 03:55:44 +05:30
|
|
|
font = FontStyle()
|
2005-01-01 07:47:17 +05:30
|
|
|
font.set_bold(1)
|
2009-05-30 03:55:44 +05:30
|
|
|
font.set_type_face(FONT_SANS_SERIF)
|
2005-01-01 07:47:17 +05:30
|
|
|
font.set_size(12)
|
2009-11-02 20:27:34 +05:30
|
|
|
para = ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_top_margin(ReportUtils.pt2cm(3))
|
|
|
|
para.set_bottom_margin(ReportUtils.pt2cm(3))
|
|
|
|
para.set_description(_("The style used for the spouse's name."))
|
|
|
|
default_style.add_paragraph_style("IDS-Spouse", para)
|
2005-01-01 07:47:17 +05:30
|
|
|
|
2009-05-30 03:55:44 +05:30
|
|
|
font = FontStyle()
|
2005-01-01 07:47:17 +05:30
|
|
|
font.set_size(12)
|
2009-11-02 20:27:34 +05:30
|
|
|
para = ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_top_margin(ReportUtils.pt2cm(3))
|
|
|
|
para.set_bottom_margin(ReportUtils.pt2cm(3))
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_paragraph_style("IDS-Normal", para)
|
2007-04-23 17:16:26 +05:30
|
|
|
|
|
|
|
# Table Styles
|
2009-05-30 03:55:44 +05:30
|
|
|
tbl = TableStyle()
|
2007-04-23 17:16:26 +05:30
|
|
|
tbl.set_width(100)
|
|
|
|
tbl.set_columns(2)
|
2009-11-02 20:27:34 +05:30
|
|
|
tbl.set_column_width(0, 20)
|
|
|
|
tbl.set_column_width(1, 80)
|
|
|
|
default_style.add_table_style("IDS-IndTable", tbl)
|
2007-04-23 17:16:26 +05:30
|
|
|
|
2009-05-30 03:55:44 +05:30
|
|
|
tbl = TableStyle()
|
2007-04-23 17:16:26 +05:30
|
|
|
tbl.set_width(100)
|
|
|
|
tbl.set_columns(2)
|
2009-11-02 20:27:34 +05:30
|
|
|
tbl.set_column_width(0, 50)
|
|
|
|
tbl.set_column_width(1, 50)
|
|
|
|
default_style.add_table_style("IDS-ParentsTable", tbl)
|
2007-04-23 17:16:26 +05:30
|
|
|
|
2009-05-30 03:55:44 +05:30
|
|
|
cell = TableCellStyle()
|
2007-04-23 17:16:26 +05:30
|
|
|
cell.set_top_border(1)
|
|
|
|
cell.set_bottom_border(1)
|
2009-11-02 20:27:34 +05:30
|
|
|
default_style.add_cell_style("IDS-TableHead", cell)
|
2007-04-23 17:16:26 +05:30
|
|
|
|
2009-05-30 03:55:44 +05:30
|
|
|
cell = TableCellStyle()
|
2009-11-02 20:27:34 +05:30
|
|
|
default_style.add_cell_style("IDS-NormalCell", cell)
|
2007-04-23 17:16:26 +05:30
|
|
|
|
2009-05-30 03:55:44 +05:30
|
|
|
cell = TableCellStyle()
|
2007-04-23 17:16:26 +05:30
|
|
|
cell.set_longlist(1)
|
2009-11-02 20:27:34 +05:30
|
|
|
default_style.add_cell_style("IDS-ListCell", cell)
|
2007-06-13 09:43:00 +05:30
|
|
|
|
|
|
|
Endnotes.add_endnote_styles(default_style)
|
2009-11-02 20:27:34 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Functions
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def combine(format_both, format_single, str1, str2):
|
|
|
|
""" Combine two strings with a given format. """
|
|
|
|
text = ""
|
|
|
|
if str1 and str2:
|
|
|
|
text = format_both % (str1, str2)
|
|
|
|
elif str1 and not str2:
|
|
|
|
text = format_single % str1
|
|
|
|
elif str2 and not str1:
|
|
|
|
text = format_single % str2
|
|
|
|
return text
|