2003-08-15 04:03:30 +05:30
|
|
|
|
# -*- coding: utf-8 -*-
|
2002-10-20 19:55:16 +05:30
|
|
|
|
#
|
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
|
#
|
2005-05-28 02:02:33 +05:30
|
|
|
|
# Copyright (C) 2000-2005 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
|
|
|
|
|
#
|
|
|
|
|
|
2003-11-18 09:56:06 +05:30
|
|
|
|
# $Id$
|
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# internationalization
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
2003-08-17 07:44:33 +05:30
|
|
|
|
from gettext import gettext as _
|
2002-11-03 02:49:58 +05:30
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# GTK/Gnome modules
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
import gtk.glade
|
2003-11-18 09:56:06 +05:30
|
|
|
|
import gnome
|
2005-07-09 01:54:54 +05:30
|
|
|
|
import gobject
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# gramps modules
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
2003-01-10 10:51:32 +05:30
|
|
|
|
import RelLib
|
2002-10-20 19:55:16 +05:30
|
|
|
|
import const
|
|
|
|
|
import Utils
|
2004-03-23 10:31:19 +05:30
|
|
|
|
import PeopleModel
|
2005-01-01 09:57:15 +05:30
|
|
|
|
import NameDisplay
|
2005-06-08 19:11:51 +05:30
|
|
|
|
import AutoComp
|
2004-04-21 09:52:37 +05:30
|
|
|
|
from QuestionDialog import ErrorDialog
|
2005-07-09 01:54:54 +05:30
|
|
|
|
import GenericFilter
|
|
|
|
|
import Date
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2005-06-08 19:11:51 +05:30
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Constants
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
UNKNOWN_REL = (RelLib.Person.CHILD_UNKNOWN,
|
|
|
|
|
Utils.child_relations[RelLib.Person.CHILD_UNKNOWN])
|
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# SelectChild
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
class SelectChild:
|
|
|
|
|
|
2005-04-04 09:29:42 +05:30
|
|
|
|
def __init__(self,parent,db,family,person,callback):
|
2004-02-25 10:04:20 +05:30
|
|
|
|
self.parent = parent
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.db = db
|
2005-04-04 09:29:42 +05:30
|
|
|
|
self.callback = callback
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.person = person
|
|
|
|
|
self.family = family
|
2004-03-23 10:31:19 +05:30
|
|
|
|
self.renderer = gtk.CellRendererText()
|
2003-08-17 07:44:33 +05:30
|
|
|
|
self.xml = gtk.glade.XML(const.gladeFile,"select_child","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if person:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
self.default_name = person.get_primary_name().get_surname().upper()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
else:
|
|
|
|
|
self.default_name = ""
|
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.xml.signal_autoconnect({
|
|
|
|
|
"on_save_child_clicked" : self.on_save_child_clicked,
|
2003-11-18 09:56:06 +05:30
|
|
|
|
"on_child_help_clicked" : self.on_child_help_clicked,
|
2002-10-20 19:55:16 +05:30
|
|
|
|
"on_show_toggled" : self.on_show_toggled,
|
2004-02-25 10:04:20 +05:30
|
|
|
|
"destroy_passed_object" : self.close,
|
|
|
|
|
"on_select_child_delete_event" : self.on_delete_event,
|
2002-10-20 19:55:16 +05:30
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
self.select_child_list = {}
|
2003-03-05 11:31:31 +05:30
|
|
|
|
self.top = self.xml.get_widget("select_child")
|
|
|
|
|
title_label = self.xml.get_widget('title')
|
2003-03-06 11:42:51 +05:30
|
|
|
|
|
2003-06-15 09:43:16 +05:30
|
|
|
|
Utils.set_titles(self.top,title_label,_('Add Child to Family'))
|
2003-03-05 11:31:31 +05:30
|
|
|
|
|
2002-11-03 02:49:58 +05:30
|
|
|
|
self.add_child = self.xml.get_widget("childlist")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2005-03-03 02:18:58 +05:30
|
|
|
|
self.mrel = self.xml.get_widget("mrel_combo")
|
|
|
|
|
self.frel = self.xml.get_widget("frel_combo")
|
|
|
|
|
|
2005-06-08 19:11:51 +05:30
|
|
|
|
self.frel_selector = AutoComp.StandardCustomSelector(
|
|
|
|
|
Utils.child_relations,self.frel,
|
|
|
|
|
RelLib.Person.CHILD_CUSTOM,RelLib.Person.CHILD_BIRTH)
|
|
|
|
|
self.mrel_selector = AutoComp.StandardCustomSelector(
|
|
|
|
|
Utils.child_relations,self.mrel,
|
|
|
|
|
RelLib.Person.CHILD_CUSTOM,RelLib.Person.CHILD_BIRTH)
|
|
|
|
|
|
|
|
|
|
#self.build_list(self.mrel,RelLib.Person.CHILD_BIRTH)
|
|
|
|
|
#self.build_list(self.frel,RelLib.Person.CHILD_BIRTH)
|
2005-03-03 02:18:58 +05:30
|
|
|
|
|
|
|
|
|
if self.family:
|
2004-08-07 10:46:57 +05:30
|
|
|
|
father = self.db.get_person_from_handle(self.family.get_father_handle())
|
|
|
|
|
mother = self.db.get_person_from_handle(self.family.get_mother_handle())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
else:
|
2005-05-31 02:11:43 +05:30
|
|
|
|
if self.person.get_gender() == RelLib.Person.MALE:
|
2005-03-03 02:18:58 +05:30
|
|
|
|
self.mrel.set_sensitive(False)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
else:
|
2005-03-03 02:18:58 +05:30
|
|
|
|
self.frel.set_sensitive(False)
|
2002-11-03 02:49:58 +05:30
|
|
|
|
|
2005-07-09 01:54:54 +05:30
|
|
|
|
self.likely_filter = GenericFilter.GenericFilter()
|
|
|
|
|
self.likely_filter.add_rule(LikelyFilter([self.person.handle]))
|
|
|
|
|
self.active_filter = self.likely_filter
|
2004-06-03 08:58:46 +05:30
|
|
|
|
|
2005-07-09 01:54:54 +05:30
|
|
|
|
self.top.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
|
|
|
|
|
gobject.idle_add(self.redraw_child_list)
|
2004-02-25 10:04:20 +05:30
|
|
|
|
self.add_itself_to_menu()
|
2004-03-23 10:31:19 +05:30
|
|
|
|
self.add_columns(self.add_child)
|
2004-02-25 10:04:20 +05:30
|
|
|
|
self.top.show()
|
|
|
|
|
|
2005-03-03 02:18:58 +05:30
|
|
|
|
def build_list(self,opt_menu,sel):
|
|
|
|
|
cell = gtk.CellRendererText()
|
|
|
|
|
opt_menu.pack_start(cell,True)
|
|
|
|
|
opt_menu.add_attribute(cell,'text',0)
|
|
|
|
|
|
|
|
|
|
store = gtk.ListStore(str)
|
2005-06-08 10:10:33 +05:30
|
|
|
|
for val in Utils.child_relations.values():
|
2005-03-03 02:18:58 +05:30
|
|
|
|
store.append(row=[val])
|
|
|
|
|
opt_menu.set_model(store)
|
2005-03-03 11:03:22 +05:30
|
|
|
|
opt_menu.set_active(sel)
|
2005-03-03 02:18:58 +05:30
|
|
|
|
|
2004-03-23 10:31:19 +05:30
|
|
|
|
def add_columns(self,tree):
|
|
|
|
|
column = gtk.TreeViewColumn(_('Name'), self.renderer,text=0)
|
2005-02-24 05:55:34 +05:30
|
|
|
|
column.set_resizable(True)
|
|
|
|
|
#column.set_clickable(True)
|
2004-03-23 10:31:19 +05:30
|
|
|
|
column.set_min_width(225)
|
|
|
|
|
tree.append_column(column)
|
|
|
|
|
column = gtk.TreeViewColumn(_('ID'), self.renderer,text=1)
|
2005-02-24 05:55:34 +05:30
|
|
|
|
column.set_resizable(True)
|
|
|
|
|
#column.set_clickable(True)
|
2004-03-23 10:31:19 +05:30
|
|
|
|
column.set_min_width(75)
|
|
|
|
|
tree.append_column(column)
|
|
|
|
|
column = gtk.TreeViewColumn(_('Birth date'), self.renderer,text=3)
|
2005-02-24 05:55:34 +05:30
|
|
|
|
#column.set_resizable(True)
|
|
|
|
|
column.set_clickable(True)
|
2004-03-23 10:31:19 +05:30
|
|
|
|
tree.append_column(column)
|
|
|
|
|
|
2004-02-25 10:04:20 +05:30
|
|
|
|
def on_delete_event(self,obj,b):
|
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
|
|
|
|
|
|
def close(self,obj):
|
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
|
self.top.destroy()
|
|
|
|
|
|
|
|
|
|
def add_itself_to_menu(self):
|
|
|
|
|
self.parent.child_windows[self] = self
|
|
|
|
|
self.parent_menu_item = gtk.MenuItem(_('Add Child to Family'))
|
|
|
|
|
self.parent_menu_item.connect("activate",self.present)
|
|
|
|
|
self.parent_menu_item.show()
|
|
|
|
|
self.parent.winsmenu.append(self.parent_menu_item)
|
|
|
|
|
|
|
|
|
|
def remove_itself_from_menu(self):
|
|
|
|
|
del self.parent.child_windows[self]
|
|
|
|
|
self.parent_menu_item.destroy()
|
|
|
|
|
|
|
|
|
|
def present(self,obj):
|
|
|
|
|
self.top.present()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2003-11-18 09:56:06 +05:30
|
|
|
|
def on_child_help_clicked(self,obj):
|
|
|
|
|
"""Display the relevant portion of GRAMPS manual"""
|
2003-12-02 09:57:23 +05:30
|
|
|
|
gnome.help_display('gramps-manual','gramps-edit-quick')
|
2003-11-18 09:56:06 +05:30
|
|
|
|
|
2005-07-09 01:54:54 +05:30
|
|
|
|
def redraw_child_list(self):
|
|
|
|
|
self.refmodel = PeopleModel.PeopleModel(self.db,self.active_filter)
|
|
|
|
|
self.add_child.set_model(self.refmodel)
|
|
|
|
|
self.top.window.set_cursor(None)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2004-08-23 04:46:57 +05:30
|
|
|
|
def select_function(self,store,path,node,id_list):
|
|
|
|
|
id_list.append(self.refmodel.get_value(node,PeopleModel.COLUMN_INT_ID))
|
2004-03-23 10:31:19 +05:30
|
|
|
|
|
|
|
|
|
def get_selected_ids(self):
|
|
|
|
|
mlist = []
|
|
|
|
|
self.add_child.get_selection().selected_foreach(self.select_function,mlist)
|
|
|
|
|
return mlist
|
2003-05-22 02:38:20 +05:30
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
def on_save_child_clicked(self,obj):
|
|
|
|
|
|
2004-03-23 10:31:19 +05:30
|
|
|
|
idlist = self.get_selected_ids()
|
|
|
|
|
|
|
|
|
|
if not idlist or not idlist[0]:
|
2002-11-03 02:49:58 +05:30
|
|
|
|
return
|
|
|
|
|
|
2004-10-06 09:12:54 +05:30
|
|
|
|
handle = idlist[0]
|
|
|
|
|
select_child = self.db.get_person_from_handle(handle)
|
|
|
|
|
if self.person.get_handle() == handle:
|
2004-04-22 07:18:47 +05:30
|
|
|
|
ErrorDialog(_("Error selecting a child"),
|
|
|
|
|
_("A person cannot be linked as his/her own child"),
|
|
|
|
|
self.top)
|
|
|
|
|
return
|
2004-08-13 10:04:07 +05:30
|
|
|
|
|
|
|
|
|
trans = self.db.transaction_begin()
|
2004-04-22 07:18:47 +05:30
|
|
|
|
|
2002-11-03 02:49:58 +05:30
|
|
|
|
if self.family == None:
|
2004-08-13 10:04:07 +05:30
|
|
|
|
self.family = RelLib.Family()
|
|
|
|
|
self.db.add_family(self.family,trans)
|
2004-07-28 07:59:07 +05:30
|
|
|
|
self.person.add_family_handle(self.family.get_handle())
|
2005-05-24 18:38:06 +05:30
|
|
|
|
self.db.commit_person(self.person,trans)
|
2005-05-31 02:11:43 +05:30
|
|
|
|
if self.person.get_gender() == RelLib.Person.MALE:
|
2005-05-24 18:38:06 +05:30
|
|
|
|
self.family.set_father_handle(self.person.get_handle())
|
2002-11-03 02:49:58 +05:30
|
|
|
|
else:
|
2005-05-24 18:38:06 +05:30
|
|
|
|
self.family.set_mother_handle(self.person.get_handle())
|
|
|
|
|
self.db.commit_family(self.family,trans)
|
2002-11-03 02:49:58 +05:30
|
|
|
|
|
2004-10-06 09:12:54 +05:30
|
|
|
|
if handle in (self.family.get_father_handle(),self.family.get_mother_handle()):
|
2004-04-22 07:18:47 +05:30
|
|
|
|
ErrorDialog(_("Error selecting a child"),
|
|
|
|
|
_("A person cannot be linked as his/her own child"),
|
|
|
|
|
self.top)
|
|
|
|
|
return
|
|
|
|
|
|
2005-06-05 09:31:56 +05:30
|
|
|
|
# TODO: Add child ordered by birth day
|
2004-07-28 07:59:07 +05:30
|
|
|
|
self.family.add_child_handle(select_child.get_handle())
|
2004-04-22 07:18:47 +05:30
|
|
|
|
|
2005-06-08 19:11:51 +05:30
|
|
|
|
mrel = self.mrel_selector.get_values()
|
2004-08-07 10:46:57 +05:30
|
|
|
|
mother = self.db.get_person_from_handle(self.family.get_mother_handle())
|
2005-05-31 02:11:43 +05:30
|
|
|
|
if mother and mother.get_gender() != RelLib.Person.FEMALE:
|
2005-06-08 19:11:51 +05:30
|
|
|
|
if mrel[0] == RelLib.Person.CHILD_BIRTH:
|
|
|
|
|
mrel = UNKNOWN_REL
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2005-06-08 19:11:51 +05:30
|
|
|
|
frel = self.frel_selector.get_values()
|
2004-08-07 10:46:57 +05:30
|
|
|
|
father = self.db.get_person_from_handle(self.family.get_father_handle())
|
2005-05-31 02:11:43 +05:30
|
|
|
|
if father and father.get_gender() != RelLib.Person.MALE:
|
2005-06-08 19:11:51 +05:30
|
|
|
|
if frel[0] == RelLib.Person.CHILD_BIRTH:
|
|
|
|
|
frel = UNKNOWN_REL
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2005-03-03 11:03:22 +05:30
|
|
|
|
select_child.add_parent_family_handle(self.family.get_handle(),
|
|
|
|
|
mrel,frel)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
|
self.db.commit_person(select_child,trans)
|
2004-05-19 11:43:36 +05:30
|
|
|
|
self.db.commit_family(self.family,trans)
|
2005-08-18 11:28:28 +05:30
|
|
|
|
n = NameDisplay.displayer.display(select_child)
|
2004-08-13 10:04:07 +05:30
|
|
|
|
self.db.transaction_commit(trans,_("Add Child to Family (%s)") % n)
|
2004-02-25 10:04:20 +05:30
|
|
|
|
self.close(obj)
|
2005-05-24 18:38:06 +05:30
|
|
|
|
self.callback()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
def on_show_toggled(self,obj):
|
2005-07-09 01:54:54 +05:30
|
|
|
|
if obj.get_active():
|
|
|
|
|
self.active_filter = None
|
|
|
|
|
else:
|
|
|
|
|
self.active_filter = self.likely_filter
|
|
|
|
|
self.top.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
|
|
|
|
|
while(gtk.events_pending()):
|
|
|
|
|
gtk.main_iteration()
|
|
|
|
|
self.redraw_child_list()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2003-05-18 09:48:12 +05:30
|
|
|
|
def north_american(self,val):
|
2005-05-31 02:11:43 +05:30
|
|
|
|
if self.person.get_gender() == RelLib.Person.MALE:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
return self.person.get_primary_name().get_surname()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
elif self.family:
|
2004-07-28 07:59:07 +05:30
|
|
|
|
f = self.family.get_father_handle()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if f:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
pname = f.get_primary_name()
|
|
|
|
|
return (pname.get_surname_prefix(),pname.get_surname())
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
|
|
|
|
|
def no_name(self,val):
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
|
|
|
|
|
def latin_american(self,val):
|
|
|
|
|
if self.family:
|
2004-07-28 07:59:07 +05:30
|
|
|
|
father = self.family.get_father_handle()
|
|
|
|
|
mother = self.family.get_mother_handle()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if not father or not mother:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fsn = father.get_primary_name().get_surname()
|
|
|
|
|
msn = mother.get_primary_name().get_surname()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if not father or not mother:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
try:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","%s %s" % (fsn.split()[0],msn.split()[0]))
|
2003-05-18 09:48:12 +05:30
|
|
|
|
except:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
else:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
|
|
|
|
|
def icelandic(self,val):
|
|
|
|
|
fname = ""
|
2005-05-31 02:11:43 +05:30
|
|
|
|
if self.person.get_gender() == RelLib.Person.MALE:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fname = self.person.get_primary_name().get_first_name()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
elif self.family:
|
2004-07-28 07:59:07 +05:30
|
|
|
|
f = self.family.get_father_handle()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if f:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fname = f.get_primary_name().get_first_name()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if fname:
|
2003-10-30 09:47:05 +05:30
|
|
|
|
fname = fname.split()[0]
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if val == 0:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","%ssson" % fname)
|
2003-05-18 09:48:12 +05:30
|
|
|
|
elif val == 1:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","%sd<EFBFBD>ttir" % fname)
|
2003-05-18 09:48:12 +05:30
|
|
|
|
else:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2005-07-09 01:54:54 +05:30
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Likely Filters
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
class LikelyFilter(GenericFilter.Rule):
|
|
|
|
|
|
2005-08-18 11:28:28 +05:30
|
|
|
|
labels = [ 'Person handle' ]
|
|
|
|
|
category = _('General filters')
|
2005-07-09 01:54:54 +05:30
|
|
|
|
|
|
|
|
|
def prepare(self,db):
|
|
|
|
|
person = db.get_person_from_handle(self.list[0])
|
|
|
|
|
if person.birth_handle:
|
|
|
|
|
birth = db.get_event_from_handle(person.birth_handle)
|
|
|
|
|
dateobj = Date.Date(birth.date)
|
|
|
|
|
year = dateobj.get_year()
|
|
|
|
|
dateobj.set_year(year+10)
|
|
|
|
|
self.lower = dateobj.sortval
|
|
|
|
|
dateobj.set_year(year+70)
|
|
|
|
|
self.upper = dateobj.sortval
|
|
|
|
|
else:
|
|
|
|
|
self.lower = None
|
|
|
|
|
self.upper = None
|
|
|
|
|
|
|
|
|
|
def apply(self,db,person):
|
|
|
|
|
if not person.birth_handle or (self.upper == None and
|
|
|
|
|
self.lower == None):
|
|
|
|
|
return True
|
|
|
|
|
event = db.get_event_from_handle(person.birth_handle)
|
|
|
|
|
return (event.date == None or event.date.sortval == 0 or
|
|
|
|
|
self.lower < event.date.sortval < self.upper)
|
|
|
|
|
|