2007-09-08 Benny Malengier <benny.malengier@gramps-project.org>
* src/plugins/lineage.py: Quick report lineage based on code Jerome * po/POTFILES.in : translate lineage * src/plugins/Makefile.am : distribute lineage svn: r8963
This commit is contained in:
parent
55d5734423
commit
2fbe01e584
@ -1,3 +1,8 @@
|
||||
2007-09-08 Benny Malengier <benny.malengier@gramps-project.org>
|
||||
* src/plugins/lineage.py: Quick report lineage based on code Jerome
|
||||
* po/POTFILES.in : translate lineage
|
||||
* src/plugins/Makefile.am : distribute lineage
|
||||
|
||||
2007-09-11 Don Allingham <don@gramps-project.org>
|
||||
* src/PageView.py: add some documentation
|
||||
|
||||
|
@ -320,6 +320,7 @@ src/plugins/ImportvCard.py
|
||||
src/plugins/IndivComplete.py
|
||||
src/plugins/KinshipReport.py
|
||||
src/plugins/Leak.py
|
||||
src/plugins/lineage.py
|
||||
src/plugins/MarkerReport.py
|
||||
src/plugins/MediaManager.py
|
||||
src/plugins/NarrativeWeb.py
|
||||
|
@ -75,8 +75,9 @@ pkgdata_PYTHON = \
|
||||
RemoveUnused.py\
|
||||
rel_pl.py\
|
||||
RebuildRefMap.py\
|
||||
all_events.py \
|
||||
siblings.py \
|
||||
all_events.py\
|
||||
siblings.py\
|
||||
lineage.py\
|
||||
WebCal.py
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/plugins
|
||||
|
148
src/plugins/lineage.py
Normal file
148
src/plugins/lineage.py
Normal file
@ -0,0 +1,148 @@
|
||||
#
|
||||
# Gramps - a GTK+/GNOME based genealogy program
|
||||
#
|
||||
# Copyright (C) 2000-2007 Donald N. Allingham
|
||||
# Copyright (C) 2007 Jerome Rapinat, B. Malengier
|
||||
#
|
||||
# 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: _FamilyList.py 8897 2007-08-30 19:49:04Z bmcage $
|
||||
|
||||
"""
|
||||
Display a person's father or mother lineage
|
||||
"""
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# gramps modules
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
import RelLib
|
||||
from Simple import SimpleAccess, SimpleDoc
|
||||
from gettext import gettext as _
|
||||
from PluginUtils import register_quick_report
|
||||
from ReportBase import CATEGORY_QR_PERSON
|
||||
|
||||
__FMT = "%-30s\t%-12s - %-12s\t%s"
|
||||
|
||||
def run_father(database, document, person):
|
||||
|
||||
sa = SimpleAccess(database)
|
||||
sd = SimpleDoc(document)
|
||||
|
||||
# display the results
|
||||
|
||||
sd.title(_("Father lineage for %s") % sa.name(person))
|
||||
sd.paragraph("")
|
||||
sd.paragraph(_(""
|
||||
"This report shows the father lineage, also called patronymic lineage"
|
||||
" or Y-line."
|
||||
" People in this lineage all share the same Y-chromosone."
|
||||
))
|
||||
sd.paragraph("")
|
||||
|
||||
sd.header2(__FMT %(_("Name Father"),_("Birth Date"),_("Death Date")
|
||||
,_("Remark")))
|
||||
sd.paragraph("")
|
||||
|
||||
make_details(RelLib.Person.MALE, person, sa, sd, database)
|
||||
|
||||
def run_mother(database, document, person):
|
||||
|
||||
sa = SimpleAccess(database)
|
||||
sd = SimpleDoc(document)
|
||||
|
||||
# display the results
|
||||
|
||||
sd.title(_("Mother lineage for %s") % sa.name(person))
|
||||
sd.paragraph("")
|
||||
sd.paragraph(_(""
|
||||
"This report shows the mother lineage, also called matronymic lineage "
|
||||
"or M-line."
|
||||
" People in this lineage all share the same RNA."
|
||||
))
|
||||
sd.paragraph("")
|
||||
|
||||
sd.header2(__FMT %(_("Name Mother"),_("Birth Date"),_("Death Date")
|
||||
,_("Remark")))
|
||||
sd.paragraph("")
|
||||
|
||||
make_details(RelLib.Person.FEMALE, person, sa, sd, database)
|
||||
|
||||
def make_details(gender, person, sa, sd, database) :
|
||||
# loop as long as there are fathers/mothers
|
||||
rem_str = ""
|
||||
while person:
|
||||
person_handle = person.handle
|
||||
sd.paragraph(__FMT % (sa.name(person), sa.birth_date(person),
|
||||
sa.death_date(person), rem_str))
|
||||
# obtain the first father/mother we find in the list
|
||||
parent_handle_list = person.get_parent_family_handle_list()
|
||||
person = None
|
||||
for parent in parent_handle_list:
|
||||
rem_str = ""
|
||||
family_id = parent_handle_list[0]
|
||||
family = database.get_family_from_handle(family_id)
|
||||
if gender == RelLib.Person.MALE :
|
||||
person = database.get_person_from_handle(
|
||||
family.get_father_handle())
|
||||
else :
|
||||
person = database.get_person_from_handle(
|
||||
family.get_mother_handle())
|
||||
childrel = [(ref.get_mother_relation(),
|
||||
ref.get_father_relation()) for ref in
|
||||
family.get_child_ref_list()
|
||||
if ref.ref == person_handle]
|
||||
if not childrel[0][1] == RelLib.ChildRefType.BIRTH :
|
||||
rem_str += " "+_("No birth relation with child")+" "
|
||||
if person and person.gender == gender :
|
||||
break
|
||||
elif person and person.gender == RelLib.Person.UNKNOWN :
|
||||
rem_str += " "+_("Unknown gender")+" "
|
||||
break
|
||||
else :
|
||||
person = None
|
||||
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
#
|
||||
#
|
||||
#
|
||||
#------------------------------------------------------------------------
|
||||
|
||||
register_quick_report(
|
||||
name = 'father_lineage',
|
||||
category = CATEGORY_QR_PERSON,
|
||||
run_func = run_father,
|
||||
translated_name = _("Father lineage"),
|
||||
status = _("Stable"),
|
||||
description= _("Display father lineage"),
|
||||
author_name="B. Malengier",
|
||||
author_email="benny.malengier@gramps-project.org"
|
||||
)
|
||||
|
||||
register_quick_report(
|
||||
name = 'mother_lineage',
|
||||
category = CATEGORY_QR_PERSON,
|
||||
run_func = run_mother,
|
||||
translated_name = _("Mother lineage"),
|
||||
status = _("Stable"),
|
||||
description= _("Display mother lineage"),
|
||||
author_name="B. Malengier",
|
||||
author_email="benny.malengier@gramps-project.org"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user