2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-05-05 07:34:30 +05:30
|
|
|
# Copyright (C) 2000-2004 Donald N. Allingham
|
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
|
|
|
|
#
|
|
|
|
|
2004-05-05 07:34:30 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Provides the SubstKeywords class that will replace keywords in a passed
|
|
|
|
string with informatin about the person. For sample:
|
|
|
|
|
|
|
|
foo = SubstKeywords(person)
|
|
|
|
print foo.replace('$n was born on $b.')
|
|
|
|
|
|
|
|
Will return a value such as:
|
|
|
|
|
|
|
|
Mary Smith was born on 3/28/1923.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Donald N. Allingham"
|
|
|
|
__version__ = "$Revision$"
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python classes
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import string
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# SubstKeywords
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class SubstKeywords:
|
|
|
|
"""
|
|
|
|
Produces an object that will substitute information about a person
|
|
|
|
into a passed string.
|
|
|
|
|
|
|
|
$n -> Name - FirstName LastName
|
|
|
|
$N -> Name - LastName, FirstName
|
|
|
|
$i -> GRAMPS ID
|
|
|
|
$b -> Date of birth
|
|
|
|
$B -> Place of birth
|
|
|
|
$d -> Date of death
|
|
|
|
$D -> Place of death
|
|
|
|
$s -> Preferred spouse's name - FirstName LastName
|
|
|
|
$S -> Preferred spouse's name - LastName, FirstName
|
|
|
|
$m -> Date of preferred marriage
|
|
|
|
$M -> Place of preferred marriage
|
|
|
|
"""
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def __init__(self,database,person_handle):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Creates a new object and associates a person with it."""
|
|
|
|
|
2004-08-07 10:46:57 +05:30
|
|
|
person = database.get_person_from_handle(person_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
self.n = person.get_primary_name().get_regular_name()
|
|
|
|
self.N = person.get_primary_name().get_name()
|
2004-05-05 07:34:30 +05:30
|
|
|
self.b = ""
|
|
|
|
self.B = ""
|
|
|
|
self.d = ""
|
|
|
|
self.D = ""
|
2002-11-28 11:22:02 +05:30
|
|
|
self.s = ""
|
|
|
|
self.S = ""
|
|
|
|
self.m = ""
|
|
|
|
self.M = ""
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
birth_handle = person.get_birth_handle()
|
|
|
|
if birth_handle:
|
|
|
|
birth = database.find_event_from_handle(birth_handle)
|
2004-05-05 07:34:30 +05:30
|
|
|
self.b = birth.get_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
bplace_handle = birth.get_place_handle()
|
|
|
|
if bplace_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
self.B = database.get_place_from_handle(bplace_handle).get_title()
|
2004-07-28 07:59:07 +05:30
|
|
|
death_handle = person.get_death_handle()
|
|
|
|
if death_handle:
|
|
|
|
death = database.find_event_from_handle(death_handle)
|
2004-05-05 07:34:30 +05:30
|
|
|
self.d = death.get_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
dplace_handle = death.get_place_handle()
|
|
|
|
if dplace_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
self.D = database.get_place_from_handle(dplace_handle).get_title()
|
2004-07-28 07:59:07 +05:30
|
|
|
self.i = str(person_handle)
|
2004-05-05 07:34:30 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
if person.get_family_handle_list():
|
|
|
|
f_id = person.get_family_handle_list()[0]
|
2004-08-20 03:05:16 +05:30
|
|
|
f = database.get_family_from_handle(f_id)
|
2004-07-28 07:59:07 +05:30
|
|
|
father_handle = f.get_father_handle()
|
|
|
|
mother_handle = f.get_mother_handle()
|
|
|
|
if father_handle == person_handle:
|
|
|
|
if mother_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
mother = database.get_person_from_handle(mother_handle)
|
2004-05-05 07:34:30 +05:30
|
|
|
self.s = mother.get_primary_name().get_regular_name()
|
|
|
|
self.S = mother.get_primary_name().get_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
if father_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
father = database.get_person_from_handle(father_handle)
|
2004-05-05 07:34:30 +05:30
|
|
|
self.s = father.get_primary_name().get_regular_name()
|
|
|
|
self.S = father.get_primary_name().get_name()
|
|
|
|
for e_id in f.get_event_list():
|
|
|
|
if not e_id:
|
|
|
|
continue
|
2004-07-28 07:59:07 +05:30
|
|
|
e = database.find_event_from_handle(e_id)
|
2004-02-14 11:10:30 +05:30
|
|
|
if e.get_name() == 'Marriage':
|
|
|
|
self.m = e.get_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
mplace_handle = e.get_place_handle()
|
|
|
|
if mplace_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
self.M = database.get_place_from_handle(mplace_handle).get_title()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def replace(self,line):
|
|
|
|
"""Returns a new line of text with the substitutions performed."""
|
|
|
|
|
|
|
|
line = string.replace(line,"$n",self.n)
|
|
|
|
line = string.replace(line,"$N",self.N)
|
|
|
|
line = string.replace(line,"$b",self.b)
|
|
|
|
line = string.replace(line,"$B",self.B)
|
|
|
|
line = string.replace(line,"$d",self.d)
|
|
|
|
line = string.replace(line,"$D",self.D)
|
|
|
|
line = string.replace(line,"$i",self.i)
|
|
|
|
line = string.replace(line,"$S",self.S)
|
|
|
|
line = string.replace(line,"$s",self.s)
|
|
|
|
line = string.replace(line,"$m",self.m)
|
|
|
|
line = string.replace(line,"$M",self.M)
|
|
|
|
return string.replace(line,"$$",'$')
|