e94e313a16
svn: r2920
672 lines
22 KiB
Python
672 lines
22 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2004 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
|
|
#
|
|
|
|
# $Id$
|
|
|
|
"Generate files/Individual Summary"
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# standard python modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import os
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GNOME/gtk
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import gtk
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import RelLib
|
|
import const
|
|
import BaseDoc
|
|
import StyleEditor
|
|
import Report
|
|
import Errors
|
|
from QuestionDialog import ErrorDialog
|
|
from gettext import gettext as _
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Set up sane defaults for the book_item
|
|
#
|
|
#------------------------------------------------------------------------
|
|
|
|
_person_id = ""
|
|
_max_gen = 0
|
|
_pg_brk = 0
|
|
_options = ( _person_id, _max_gen, _pg_brk )
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# IndivSummary
|
|
#
|
|
#------------------------------------------------------------------------
|
|
class IndivSummary(Report.Report):
|
|
|
|
def __init__(self,database,person,output,document,newpage=0):
|
|
self.d = document
|
|
|
|
c = database.get_researcher().get_name()
|
|
self.d.creator(c)
|
|
self.map = {}
|
|
self.database = database
|
|
self.person = person
|
|
self.output = output
|
|
self.setup()
|
|
if output:
|
|
self.standalone = 1
|
|
self.d.open(output)
|
|
self.d.init()
|
|
else:
|
|
self.standalone = 0
|
|
self.newpage = newpage
|
|
|
|
def setup(self):
|
|
tbl = BaseDoc.TableStyle()
|
|
tbl.set_width(100)
|
|
tbl.set_columns(2)
|
|
tbl.set_column_width(0,20)
|
|
tbl.set_column_width(1,80)
|
|
self.d.add_table_style("IVS-IndTable",tbl)
|
|
|
|
cell = BaseDoc.TableCellStyle()
|
|
cell.set_top_border(1)
|
|
cell.set_bottom_border(1)
|
|
self.d.add_cell_style("IVS-TableHead",cell)
|
|
|
|
cell = BaseDoc.TableCellStyle()
|
|
self.d.add_cell_style("IVS-NormalCell",cell)
|
|
|
|
cell = BaseDoc.TableCellStyle()
|
|
cell.set_longlist(1)
|
|
self.d.add_cell_style("IVS-ListCell",cell)
|
|
|
|
def end(self):
|
|
if self.standalone:
|
|
self.d.close()
|
|
|
|
def write_fact(self,event):
|
|
if event == None:
|
|
return
|
|
name = const.display_event(event.get_name())
|
|
date = event.get_date()
|
|
place_id = event.get_place_id()
|
|
if place_id:
|
|
place_obj = self.database.find_place_from_id(place_id)
|
|
place = place_obj.get_title()
|
|
else:
|
|
place = ""
|
|
|
|
description = event.get_description()
|
|
if date == "":
|
|
if place == "":
|
|
return
|
|
else:
|
|
val = place + ". " + description
|
|
else:
|
|
if place == "":
|
|
val = date + ". " + description
|
|
else:
|
|
val = date + " in " + place + ". " + description
|
|
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text(name)
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text(val)
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
|
|
#--------------------------------------------------------------------
|
|
#
|
|
#
|
|
#
|
|
#--------------------------------------------------------------------
|
|
def write_families(self):
|
|
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.end_paragraph()
|
|
self.d.start_table("three","IVS-IndTable")
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-TableHead",2)
|
|
self.d.start_paragraph("IVS-TableTitle")
|
|
self.d.write_text(_("Marriages/Children"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
|
|
for family_id in self.person.get_family_id_list():
|
|
family = self.database.find_family_from_id(family_id)
|
|
if self.person.get_id() == family.get_father_id():
|
|
spouse_id = family.get_mother_id()
|
|
else:
|
|
spouse_id = family.get_father_id()
|
|
if spouse_id:
|
|
spouse = self.database.find_person_from_id(spouse_id)
|
|
else:
|
|
spouse = None
|
|
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-NormalCell",2)
|
|
self.d.start_paragraph("IVS-Spouse")
|
|
if spouse:
|
|
self.d.write_text(spouse.get_primary_name().get_regular_name())
|
|
else:
|
|
self.d.write_text(_("unknown"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
|
|
for event_id in family.get_event_list():
|
|
event = self.database.find_event_from_id(event_id)
|
|
self.write_fact(event)
|
|
|
|
child_list = family.get_child_id_list()
|
|
if len(child_list) > 0:
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text(_("Children"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
|
|
self.d.start_cell("IVS-ListCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
|
|
first = 1
|
|
for child_id in child_list:
|
|
if first == 1:
|
|
first = 0
|
|
else:
|
|
self.d.write_text('\n')
|
|
child = self.database.find_person_from_id(child_id)
|
|
self.d.write_text(child.get_primary_name().get_regular_name())
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
self.d.end_table()
|
|
|
|
def write_report(self):
|
|
|
|
if self.newpage:
|
|
self.d.page_break()
|
|
|
|
media_list = self.person.get_media_list()
|
|
|
|
name = self.person.get_primary_name().get_regular_name()
|
|
self.d.start_paragraph("IVS-Title")
|
|
self.d.write_text(_("Summary of %s") % name)
|
|
self.d.end_paragraph()
|
|
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.end_paragraph()
|
|
|
|
if len(media_list) > 0:
|
|
object_id = media_list[0].get_reference_id()
|
|
object = self.database.find_object_from_id(object_id)
|
|
if object.get_mime_type()[0:5] == "image":
|
|
file = object.get_path()
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.add_media_object(file,"row",4.0,4.0)
|
|
self.d.end_paragraph()
|
|
|
|
self.d.start_table("one","IVS-IndTable")
|
|
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text("%s:" % _("Name"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text(self.person.get_primary_name().get_regular_name())
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text("%s:" % _("Gender"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
if self.person.get_gender() == RelLib.Person.male:
|
|
self.d.write_text(_("Male"))
|
|
else:
|
|
self.d.write_text(_("Female"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
|
|
fam_id = self.person.get_main_parents_family_id()
|
|
if fam_id:
|
|
family = self.database.find_family_from_id(fam_id)
|
|
father_id = family.get_father_id()
|
|
if father_id:
|
|
dad = self.database.find_person_from_id(father_id)
|
|
father = dad.get_primary_name().get_regular_name()
|
|
else:
|
|
father = ""
|
|
mother_id = family.get_mother_id()
|
|
if mother_id:
|
|
mom = self.database.find_person_from_id(mother_id)
|
|
mother = mom.get_primary_name().get_regular_name()
|
|
else:
|
|
mother = ""
|
|
else:
|
|
father = ""
|
|
mother = ""
|
|
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text("%s:" % _("Father"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text(father)
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text("%s:" % _("Mother"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
|
|
self.d.start_cell("IVS-NormalCell")
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.write_text(mother)
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
self.d.end_table()
|
|
|
|
self.d.start_paragraph("IVS-Normal")
|
|
self.d.end_paragraph()
|
|
|
|
self.d.start_table("two","IVS-IndTable")
|
|
self.d.start_row()
|
|
self.d.start_cell("IVS-TableHead",2)
|
|
self.d.start_paragraph("IVS-TableTitle")
|
|
self.d.write_text(_("Individual Facts"))
|
|
self.d.end_paragraph()
|
|
self.d.end_cell()
|
|
self.d.end_row()
|
|
|
|
event_list = [ self.person.get_birth_id(), self.person.get_death_id() ]
|
|
event_list = event_list + self.person.get_event_list()
|
|
for event_id in event_list:
|
|
if event_id:
|
|
event = self.database.find_event_from_id(event_id)
|
|
self.write_fact(event)
|
|
self.d.end_table()
|
|
|
|
self.write_families()
|
|
self.end()
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# IndivSummaryDialog
|
|
#
|
|
#------------------------------------------------------------------------
|
|
class IndivSummaryDialog(Report.TextReportDialog):
|
|
|
|
report_options = {}
|
|
|
|
def __init__(self,database,person):
|
|
Report.TextReportDialog.__init__(self,database,person, self.report_options)
|
|
|
|
def get_title(self):
|
|
"""The window title for this dialog"""
|
|
return "%s - %s - GRAMPS" %(_("Individual Summary"),_("Text Reports"))
|
|
|
|
def get_header(self, name):
|
|
"""The header line at the top of the dialog contents"""
|
|
return _("Individual Summary 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 Individual Summary")
|
|
|
|
def get_stylesheet_savefile(self):
|
|
"""Where to save styles for this report."""
|
|
return "individual_summary.xml"
|
|
|
|
def doc_uses_tables(self):
|
|
"""This report requires table support."""
|
|
return 1
|
|
|
|
def make_default_style(self):
|
|
"""Make the default output style for the Individual Summary Report."""
|
|
_make_default_style(self.default_style)
|
|
|
|
def setup_report_options(self):
|
|
"""The 'Report Options' frame is not used in this dialog."""
|
|
pass
|
|
|
|
def make_report(self):
|
|
"""Create the object that will produce the Ancestor Chart.
|
|
All user dialog has already been handled and the output file
|
|
opened."""
|
|
try:
|
|
MyReport = IndivSummary(self.db, self.person,
|
|
self.target_path, self.doc)
|
|
MyReport.setup()
|
|
MyReport.write_report()
|
|
except Errors.FilterError, msg:
|
|
(m1,m2) = msg.messages()
|
|
ErrorDialog(m1,m2)
|
|
except Errors.ReportError, msg:
|
|
(m1,m2) = msg.messages()
|
|
ErrorDialog(m1,m2)
|
|
except:
|
|
import DisplayTrace
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# report
|
|
#
|
|
#------------------------------------------------------------------------
|
|
def report(database,person):
|
|
IndivSummaryDialog(database,person)
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# get_xpm_image
|
|
#
|
|
#------------------------------------------------------------------------
|
|
def get_xpm_image():
|
|
return [
|
|
"48 48 33 1",
|
|
" c None",
|
|
". c #312D2A",
|
|
"+ c #4773AA",
|
|
"@ c #A8A7A5",
|
|
"# c #BABAB6",
|
|
"$ c #CECECE",
|
|
"% c #ECDECB",
|
|
"& c #5C5C60",
|
|
"* c #7C7262",
|
|
"= c #F2EADE",
|
|
"- c #867A6F",
|
|
"; c #8E887E",
|
|
"> c #E2CAA2",
|
|
", c #565354",
|
|
"' c #4C4E51",
|
|
") c #6D655E",
|
|
"! c #B69970",
|
|
"~ c #F6F2EE",
|
|
"{ c #9E9286",
|
|
"] c #416CA3",
|
|
"^ c #3D4557",
|
|
"/ c #A29E96",
|
|
"( c #FAFAFA",
|
|
"_ c #BA7458",
|
|
": c #C67C5E",
|
|
"< c #BDA37E",
|
|
"[ c #CECABE",
|
|
"} c #A26E62",
|
|
"| c #E6E2E2",
|
|
"1 c #423E43",
|
|
"2 c #966A60",
|
|
"3 c #D2D2D2",
|
|
"4 c #E5D2B8",
|
|
" ",
|
|
" ",
|
|
" ;-;-----***)*))))&,&)* ",
|
|
" -##############@#@/;&,* ",
|
|
" -#((((((((((((((=|$#;;{, ",
|
|
" ;#(((((((((((((((~|3/*[{1 ",
|
|
" -#((((((((((((((((~|3,|[;. ",
|
|
" -#((((((((@/@@@@@@/@/'(|[;. ",
|
|
" -#((((((((((((((((((~'((|[;. ",
|
|
" -#(((((((((((]+]+]]+('=((|[;1 ",
|
|
" -#(((((((((((]+]}2&+('|=((|[{, ",
|
|
" *#(((((((((((]+}<:-+('[|~((|#{) ",
|
|
" *#(((((((((((+]2_:)+('...1'&*-)* ",
|
|
" -#(((((((((((]&1(_&+(3@#//--)&1) ",
|
|
" *#~((((((((((+]1}/^]((|$##/;--'1 ",
|
|
" *#(((((((((((]]^)11,(((|$[#@/;)1 ",
|
|
" *#(((((((((((]^.^^&&((~=|$[#@/*. ",
|
|
" *#(((((((((((((~(((((((|$[$[#/-. ",
|
|
" *#~(((((((((((((((((~~~~||$[[@;. ",
|
|
" )#((((@@@@@@/@@/@/@@@@///{;[[[;. ",
|
|
" )#(((((((((((((((((~~~~==|$$[#;. ",
|
|
" )#((((@/@@/@@@@@@@@@//////{4>3{. ",
|
|
" )#(((((((((((((((~~~~==|=||%$[{. ",
|
|
" )#((((@@@@@/@@@///////////{43>/. ",
|
|
" )#((((((((((((((~~~~~==|||%>4[!. ",
|
|
" )#((((@/@@@@@//~~~~======%%%43{. ",
|
|
" )#((((((((((((~~~~=|==||=%%%44!. ",
|
|
" ,#((((@@/@@/@/@////////{/{{%4$!. ",
|
|
" )#~((((((((~~~~~~==||%=%=%%44>/. ",
|
|
" ,#((((/@@//@///////////{{{{%4>!. ",
|
|
" )#((((((((~~~=~||=|%%%%%4%%%44{. ",
|
|
" ,#((((@@@/@/////////{{{{{{{444!. ",
|
|
" &#(((((~~~~~|~|||%%|%%%%44444%!. ",
|
|
" ,#(((~/@//////////{{{{{{;{;4>4!. ",
|
|
" ,#(((~~~~=~|==|%|=%%%4%%44444>!. ",
|
|
" &#(((~//////////{{{{{{{;{;{4>><. ",
|
|
" ,#(~~~~~~==||%|%%%%%%44444>4>>!. ",
|
|
" '#~~~~///////{{{{{{{;!;{;;;>>>!. ",
|
|
" ,#~~~~||=||%|%=%%4%444>44>>>>>!. ",
|
|
" '#~~~~====%=%=%4%%444444>>>>>>!. ",
|
|
" '@~~====|%=%%%%%4%444>>4>>>>>>!. ",
|
|
" ,@~======%%%%%%>%%4444>>>>>>>>!. ",
|
|
" '#====||=%%%%4%44444>4>>>>>>>>!. ",
|
|
" ,@##@<#<<#@<<<<<<<<<<!<!!:!!!!!. ",
|
|
" ................................ ",
|
|
" ",
|
|
" ",
|
|
" "]
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Book Item Options dialog
|
|
#
|
|
#------------------------------------------------------------------------
|
|
class IndivSummaryBareReportDialog(Report.BareReportDialog):
|
|
|
|
def __init__(self,database,person,opt,stl):
|
|
|
|
self.options = opt
|
|
self.db = database
|
|
if self.options[0]:
|
|
self.person = self.db.get_person(self.options[0])
|
|
else:
|
|
self.person = person
|
|
self.style_name = stl
|
|
|
|
Report.BareReportDialog.__init__(self,database,self.person)
|
|
|
|
self.max_gen = int(self.options[1])
|
|
self.pg_brk = int(self.options[2])
|
|
self.new_person = None
|
|
|
|
self.generations_spinbox.set_value(self.max_gen)
|
|
self.pagebreak_checkbox.set_active(self.pg_brk)
|
|
|
|
self.window.run()
|
|
|
|
def get_report_filters(self):
|
|
return []
|
|
|
|
def make_default_style(self):
|
|
_make_default_style(self.default_style)
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Customization hooks
|
|
#
|
|
#------------------------------------------------------------------------
|
|
def get_title(self):
|
|
"""The window title for this dialog"""
|
|
return "%s - GRAMPS Book" % (_("Individual Summary"))
|
|
|
|
def get_header(self, name):
|
|
"""The header line at the top of the dialog contents"""
|
|
return _("Individual Summary Report for GRAMPS Book")
|
|
|
|
def get_stylesheet_savefile(self):
|
|
"""Where to save styles for this report."""
|
|
return "individual_summary.xml"
|
|
|
|
def on_cancel(self, obj):
|
|
pass
|
|
|
|
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()
|
|
|
|
if self.new_person:
|
|
self.person = self.new_person
|
|
self.options = ( self.person.get_id(), self.max_gen, self.pg_brk )
|
|
self.style_name = self.selected_style.get_name()
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Function to write Book Item
|
|
#
|
|
#------------------------------------------------------------------------
|
|
def write_book_item(database,person,doc,options,newpage=0):
|
|
"""Write the FTM Style Descendant Report options set.
|
|
All user dialog has already been handled and the output file opened."""
|
|
try:
|
|
if options[0]:
|
|
person = database.get_person(options[0])
|
|
max_gen = int(options[1])
|
|
pg_brk = int(options[2])
|
|
return IndivSummary(database, person, None, doc, newpage)
|
|
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()
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Makes the default styles
|
|
#
|
|
#------------------------------------------------------------------------
|
|
def _make_default_style(default_style):
|
|
"""Make the default output style for the Individual Summary Report."""
|
|
font = BaseDoc.FontStyle()
|
|
font.set_bold(1)
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
font.set_size(16)
|
|
p = BaseDoc.ParagraphStyle()
|
|
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
p.set_font(font)
|
|
p.set_description(_("The style used for the title of the page."))
|
|
default_style.add_style("IVS-Title",p)
|
|
|
|
font = BaseDoc.FontStyle()
|
|
font.set_bold(1)
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
font.set_size(12)
|
|
font.set_italic(1)
|
|
p = BaseDoc.ParagraphStyle()
|
|
p.set_font(font)
|
|
p.set_description(_("The style used for category labels."))
|
|
default_style.add_style("IVS-TableTitle",p)
|
|
|
|
font = BaseDoc.FontStyle()
|
|
font.set_bold(1)
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
font.set_size(12)
|
|
p = BaseDoc.ParagraphStyle()
|
|
p.set_font(font)
|
|
p.set_description(_("The style used for the spouse's name."))
|
|
default_style.add_style("IVS-Spouse",p)
|
|
|
|
font = BaseDoc.FontStyle()
|
|
font.set_size(12)
|
|
p = BaseDoc.ParagraphStyle()
|
|
p.set_font(font)
|
|
p.set_description(_('The basic style used for the text display.'))
|
|
default_style.add_style("IVS-Normal",p)
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Register plugins
|
|
#
|
|
#------------------------------------------------------------------------
|
|
from Plugins import register_report, register_book_item
|
|
|
|
register_report(
|
|
report,
|
|
_("Individual Summary"),
|
|
status=(_("Beta")),
|
|
category=_("Text Reports"),
|
|
description=_("Produces a detailed report on the selected person."),
|
|
xpm=get_xpm_image(),
|
|
author_name="Donald N. Allingham",
|
|
author_email="dallingham@users.sourceforge.net"
|
|
|
|
)
|
|
|
|
register_book_item(
|
|
_("Individual Summary"),
|
|
_("Text"),
|
|
IndivSummaryBareReportDialog,
|
|
write_book_item,
|
|
_options,
|
|
"default" ,
|
|
"individual_summary.xml",
|
|
_make_default_style
|
|
)
|
|
|