2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2007-06-28 11:11:40 +05:30
|
|
|
# Copyright (C) 2000-2007 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.
|
|
|
|
#
|
2007-09-10 08:33:46 +05:30
|
|
|
# This program is distributed in the hope that it will be useful,
|
2002-10-20 19:55:16 +05:30
|
|
|
# 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
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Provide the SubstKeywords class that will replace keywords in a passed
|
2002-10-20 19:55:16 +05:30
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2005-05-24 18:38:06 +05:30
|
|
|
# Gramps modules
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2010-01-14 09:38:04 +05:30
|
|
|
from gen.display.name import displayer as name_displayer
|
2005-08-06 08:27:37 +05:30
|
|
|
import DateHandler
|
2007-10-08 22:11:39 +05:30
|
|
|
import gen.lib
|
2009-12-21 11:28:55 +05:30
|
|
|
from gen.utils import get_birth_or_fallback, get_death_or_fallback
|
2005-01-01 09:57:15 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# SubstKeywords
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2009-05-21 22:49:50 +05:30
|
|
|
class SubstKeywords(object):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Produce an object that will substitute information about a person
|
2002-10-20 19:55:16 +05:30
|
|
|
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
|
|
|
|
"""
|
|
|
|
|
2007-09-10 08:33:46 +05:30
|
|
|
def __init__(self, database, person_handle):
|
2008-02-24 19:25:55 +05:30
|
|
|
"""Create a new object and associates a person with it."""
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-08-07 10:46:57 +05:30
|
|
|
person = database.get_person_from_handle(person_handle)
|
2007-06-28 11:11:40 +05:30
|
|
|
self.n = name_displayer.display(person)
|
|
|
|
self.N = name_displayer.sorted(person)
|
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 = ""
|
|
|
|
|
2009-12-21 11:28:55 +05:30
|
|
|
birth = get_birth_or_fallback(database, person)
|
2008-04-20 03:36:22 +05:30
|
|
|
if birth:
|
2005-08-06 08:27:37 +05:30
|
|
|
self.b = DateHandler.get_date(birth)
|
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()
|
2009-12-21 11:28:55 +05:30
|
|
|
death = get_death_or_fallback(database, person)
|
2008-04-20 03:36:22 +05:30
|
|
|
if death:
|
2005-08-06 08:27:37 +05:30
|
|
|
self.d = DateHandler.get_date(death)
|
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()
|
2007-01-08 08:42:42 +05:30
|
|
|
self.i = person.get_gramps_id()
|
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)
|
2007-06-28 11:11:40 +05:30
|
|
|
self.s = name_displayer.display(mother)
|
|
|
|
self.S = name_displayer.sorted(mother)
|
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)
|
2007-06-28 11:11:40 +05:30
|
|
|
self.s = name_displayer.display(father)
|
|
|
|
self.S = name_displayer.sorted(father)
|
2006-03-30 10:45:54 +05:30
|
|
|
for e_ref in f.get_event_ref_list():
|
|
|
|
if not e_ref:
|
2004-05-05 07:34:30 +05:30
|
|
|
continue
|
2006-03-30 10:45:54 +05:30
|
|
|
e = database.get_event_from_handle(e_ref.ref)
|
2007-10-08 22:11:39 +05:30
|
|
|
if e.get_type() == gen.lib.EventType.MARRIAGE:
|
2005-08-06 08:27:37 +05:30
|
|
|
self.m = DateHandler.get_date(e)
|
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
|
|
|
|
2007-09-10 08:33:46 +05:30
|
|
|
def replace(self, line):
|
2008-02-24 19:25:55 +05:30
|
|
|
"""Return a new line of text with the substitutions performed."""
|
2007-09-11 09:43:20 +05:30
|
|
|
array = [ ("$n", self.n), ("$N", self.N), ("$b", self.b),
|
|
|
|
("$B", self.B), ("$d", self.d), ("$D", self.D),
|
|
|
|
("$i", self.i), ("$S", self.S), ("$s", self.s),
|
|
|
|
("$m", self.m), ("$M", self.M), ("$$", "$") ]
|
|
|
|
|
|
|
|
for (key, value) in array:
|
2007-09-10 08:33:46 +05:30
|
|
|
line = line.replace(key, value)
|
|
|
|
return line
|
2005-12-06 12:08:09 +05:30
|
|
|
|
|
|
|
def replace_and_clean(self, lines):
|
2007-09-11 09:43:20 +05:30
|
|
|
array = [ ("%n", self.n), ("%N", self.N), ("%b", self.b),
|
|
|
|
("%B", self.B), ("%d", self.d), ("%D", self.D),
|
|
|
|
("%i", self.i), ("%S", self.S), ("%s", self.s),
|
|
|
|
("%m", self.m), ("%M", self.M) ]
|
2005-12-06 12:08:09 +05:30
|
|
|
|
|
|
|
new = []
|
|
|
|
for line in lines:
|
|
|
|
remove = False
|
2007-09-11 09:43:20 +05:30
|
|
|
for (key, value) in array:
|
2005-12-06 12:08:09 +05:30
|
|
|
if line.find(key) != -1:
|
|
|
|
if value:
|
2007-09-10 08:33:46 +05:30
|
|
|
line = line.replace(key, value)
|
2005-12-06 12:08:09 +05:30
|
|
|
else:
|
|
|
|
remove = True
|
|
|
|
if not remove:
|
|
|
|
new.append(self.replace(line))
|
|
|
|
if len(new) == 0:
|
|
|
|
return [ u"" ]
|
|
|
|
else:
|
|
|
|
return new
|
|
|
|
|
|
|
|
|
|
|
|
|