Add End Of Line Report.
svn: r8790
This commit is contained in:
parent
85d33c2a85
commit
6cbb0a7d27
@ -1,3 +1,8 @@
|
||||
2007-07-29 Brian Matherly <brian@gramps-project.org>
|
||||
* src/plugins/EndOfLineReport.py: Add End of Line report
|
||||
* src/plugins/Makefile.in: Add EndOfLineReport.py
|
||||
* po/POTFILES.in: Add EndOfLineReport.py
|
||||
|
||||
2007-07-29 Don Allingham <don@gramps-project.org>
|
||||
* src/Merge/_MergePerson.py (MergePeople.copy_note): convert to the
|
||||
new notelist format (#0001130)
|
||||
|
@ -294,6 +294,7 @@ src/plugins/DescendChart.py
|
||||
src/plugins/DescendReport.py
|
||||
src/plugins/DetAncestralReport.py
|
||||
src/plugins/DetDescendantReport.py
|
||||
src/plugins/EndOfLineReport.py
|
||||
src/plugins/Eval.py
|
||||
src/plugins/EventCmp.py
|
||||
src/plugins/EventNames.py
|
||||
|
264
src/plugins/EndOfLineReport.py
Normal file
264
src/plugins/EndOfLineReport.py
Normal file
@ -0,0 +1,264 @@
|
||||
#
|
||||
# Gramps - a GTK+/GNOME based genealogy program
|
||||
#
|
||||
# Copyright (C) 2007 Brian G. Matherly
|
||||
#
|
||||
# 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$
|
||||
|
||||
"Text Reports/End of Line Report"
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
#
|
||||
# python modules
|
||||
#
|
||||
#------------------------------------------------------------------------
|
||||
from gettext import gettext as _
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
#
|
||||
# gramps modules
|
||||
#
|
||||
#------------------------------------------------------------------------
|
||||
from PluginUtils import register_report
|
||||
from ReportBase import Report, ReportUtils, ReportOptions, \
|
||||
CATEGORY_TEXT, MODE_GUI, MODE_BKI, MODE_CLI
|
||||
import BaseDoc
|
||||
from Filters import GenericFilterFactory, Rules
|
||||
from BasicUtils import name_displayer
|
||||
import DateHandler
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
#
|
||||
# EndOfLineReport
|
||||
#
|
||||
#------------------------------------------------------------------------
|
||||
class EndOfLineReport(Report):
|
||||
|
||||
def __init__(self, database, person, options_class):
|
||||
"""
|
||||
Creates the EndOfLineReport 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.
|
||||
|
||||
"""
|
||||
Report.__init__(self,database,person,options_class)
|
||||
|
||||
self.person = person
|
||||
|
||||
plist = self.database.get_person_handles(sort_handles=False)
|
||||
FilterClass = GenericFilterFactory('Person')
|
||||
filter = FilterClass()
|
||||
gid = person.get_gramps_id()
|
||||
filter.add_rule(Rules.Person.IsAncestorOf([gid,1]))
|
||||
filter.add_rule(Rules.Person.MissingParent([]))
|
||||
self.ind_list = filter.apply(self.database,plist)
|
||||
|
||||
def write_report(self):
|
||||
"""
|
||||
The routine the actually creates the report. At this point, the document
|
||||
is opened and ready for writing.
|
||||
"""
|
||||
pname = name_displayer.display(self.person)
|
||||
|
||||
self.doc.start_paragraph("EOL-Title")
|
||||
title = _("End of Line Report for %s") % pname
|
||||
mark = BaseDoc.IndexMark(title,BaseDoc.INDEX_TYPE_TOC,1)
|
||||
self.doc.write_text(title,mark)
|
||||
self.doc.end_paragraph()
|
||||
|
||||
self.doc.start_paragraph("EOL-Subtitle")
|
||||
title = _("All the ancestors of %s who are missing a parent") % pname
|
||||
self.doc.write_text(title)
|
||||
self.doc.end_paragraph()
|
||||
|
||||
self.doc.start_table('EolTable','EOL-Table')
|
||||
self.write_collumn_header()
|
||||
for person_handle in self.ind_list:
|
||||
self.write_person_row(person_handle)
|
||||
self.doc.end_table()
|
||||
|
||||
def write_collumn_header(self):
|
||||
"""
|
||||
Write out a row in the table with the collumn headings.
|
||||
"""
|
||||
self.doc.start_row()
|
||||
|
||||
self.doc.start_cell('EOL-TableCell')
|
||||
self.doc.start_paragraph('EOL-Normal-Bold')
|
||||
self.doc.write_text(_("Name"))
|
||||
self.doc.end_paragraph()
|
||||
self.doc.end_cell()
|
||||
|
||||
self.doc.start_cell('EOL-TableCell')
|
||||
self.doc.start_paragraph('EOL-Normal-Bold')
|
||||
self.doc.write_text(_("Birth"))
|
||||
self.doc.end_paragraph()
|
||||
self.doc.end_cell()
|
||||
|
||||
self.doc.start_cell('EOL-TableCell')
|
||||
self.doc.start_paragraph('EOL-Normal-Bold')
|
||||
self.doc.write_text(_("Death"))
|
||||
self.doc.end_paragraph()
|
||||
self.doc.end_cell()
|
||||
|
||||
self.doc.end_row()
|
||||
|
||||
def write_person_row(self,person_handle):
|
||||
"""
|
||||
Write a row in the table with information about the given person.
|
||||
"""
|
||||
person = self.database.get_person_from_handle(person_handle)
|
||||
|
||||
self.doc.start_row()
|
||||
|
||||
name = name_displayer.display(person)
|
||||
mark = ReportUtils.get_person_mark(self.database, person)
|
||||
self.doc.start_cell('EOL-TableCell')
|
||||
self.doc.start_paragraph('EOL-Normal')
|
||||
self.doc.write_text(name,mark)
|
||||
self.doc.end_paragraph()
|
||||
self.doc.end_cell()
|
||||
|
||||
self.doc.start_cell('EOL-TableCell')
|
||||
self.doc.start_paragraph('EOL-Normal')
|
||||
birth_ref = person.get_birth_ref()
|
||||
text = ""
|
||||
if birth_ref:
|
||||
event = self.database.get_event_from_handle(birth_ref.ref)
|
||||
text += DateHandler.get_date( event )
|
||||
|
||||
place_handle = event.get_place_handle()
|
||||
place = ReportUtils.place_name(self.database,place_handle)
|
||||
if place:
|
||||
if text:
|
||||
text += "\n"
|
||||
text += place
|
||||
|
||||
self.doc.write_text(text)
|
||||
self.doc.end_paragraph()
|
||||
self.doc.end_cell()
|
||||
|
||||
self.doc.start_cell('EOL-TableCell')
|
||||
self.doc.start_paragraph('EOL-Normal')
|
||||
death_ref = person.get_death_ref()
|
||||
if death_ref:
|
||||
event = self.database.get_event_from_handle(death_ref.ref)
|
||||
text += DateHandler.get_date( event )
|
||||
|
||||
place_handle = event.get_place_handle()
|
||||
place = ReportUtils.place_name(self.database,place_handle)
|
||||
if place:
|
||||
if text:
|
||||
text += "\n"
|
||||
text += place
|
||||
|
||||
self.doc.write_text(text)
|
||||
self.doc.end_paragraph()
|
||||
self.doc.end_cell()
|
||||
|
||||
self.doc.end_row()
|
||||
|
||||
class EndOfLineOptions(ReportOptions):
|
||||
"""
|
||||
Defines options and provides handling interface.
|
||||
"""
|
||||
|
||||
def __init__(self,name,person_id=None):
|
||||
ReportOptions.__init__(self,name,person_id)
|
||||
|
||||
def make_default_style(self,default_style):
|
||||
"""Make the default output style for the End of Line Report."""
|
||||
# Paragraph Styles
|
||||
f = BaseDoc.FontStyle()
|
||||
f.set_size(16)
|
||||
f.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
||||
f.set_bold(1)
|
||||
p = BaseDoc.ParagraphStyle()
|
||||
p.set_header_level(1)
|
||||
p.set_bottom_border(1)
|
||||
p.set_bottom_margin(ReportUtils.pt2cm(8))
|
||||
p.set_font(f)
|
||||
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
||||
p.set_description(_("The style used for the title of the page."))
|
||||
default_style.add_paragraph_style("EOL-Title",p)
|
||||
|
||||
font = BaseDoc.FontStyle()
|
||||
font.set(face=BaseDoc.FONT_SANS_SERIF,size=12,italic=1)
|
||||
p = BaseDoc.ParagraphStyle()
|
||||
p.set_bottom_margin(ReportUtils.pt2cm(6))
|
||||
p.set_font(font)
|
||||
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
||||
p.set_description(_('The style used for the section headers.'))
|
||||
default_style.add_paragraph_style("EOL-Subtitle",p)
|
||||
|
||||
font = BaseDoc.FontStyle()
|
||||
font.set_size(10)
|
||||
p = BaseDoc.ParagraphStyle()
|
||||
p.set_font(font)
|
||||
p.set_top_margin(ReportUtils.pt2cm(3))
|
||||
p.set_bottom_margin(ReportUtils.pt2cm(3))
|
||||
p.set_description(_('The basic style used for the text display.'))
|
||||
default_style.add_paragraph_style("EOL-Normal",p)
|
||||
|
||||
font = BaseDoc.FontStyle()
|
||||
font.set_size(12)
|
||||
font.set_bold(True)
|
||||
p = BaseDoc.ParagraphStyle()
|
||||
p.set_font(font)
|
||||
p.set_top_margin(ReportUtils.pt2cm(3))
|
||||
p.set_bottom_margin(ReportUtils.pt2cm(3))
|
||||
p.set_description(_('The basic style used for table headings.'))
|
||||
default_style.add_paragraph_style("EOL-Normal-Bold",p)
|
||||
|
||||
#Table Styles
|
||||
cell = BaseDoc.TableCellStyle()
|
||||
cell.set_padding(0.2)
|
||||
default_style.add_cell_style('EOL-TableCell',cell)
|
||||
|
||||
table = BaseDoc.TableStyle()
|
||||
table.set_width(100)
|
||||
table.set_columns(3)
|
||||
table.set_column_width(0,26)
|
||||
table.set_column_width(1,37)
|
||||
table.set_column_width(2,37)
|
||||
default_style.add_table_style('EOL-Table',table)
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
#
|
||||
# Register the plugin
|
||||
#
|
||||
#------------------------------------------------------------------------
|
||||
register_report(
|
||||
name = 'endofline_report',
|
||||
category = CATEGORY_TEXT,
|
||||
report_class = EndOfLineReport,
|
||||
options_class = EndOfLineOptions,
|
||||
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
||||
translated_name = _("End of Line Report"),
|
||||
status=(_("Stable")),
|
||||
description= _("Produces a textual end of line report"),
|
||||
author_name="Brian G. Matherly",
|
||||
author_email="brian@gramps-project.org"
|
||||
)
|
@ -19,6 +19,7 @@ pkgdata_PYTHON = \
|
||||
DescendChart.py\
|
||||
DetAncestralReport.py\
|
||||
DetDescendantReport.py\
|
||||
EndOfLineReport.py\
|
||||
EventCmp.py\
|
||||
EventNames.py\
|
||||
ExportCSV.py\
|
||||
|
Loading…
Reference in New Issue
Block a user