2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-02-20 07:42:39 +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
|
|
|
|
#
|
|
|
|
|
2003-12-03 09:19:39 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"""The core library of the GRAMPS database"""
|
|
|
|
|
|
|
|
__author__ = "Donald N. Allingham"
|
|
|
|
__version__ = "$Revision$"
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from re import compile
|
|
|
|
import os
|
2004-02-29 00:16:40 +05:30
|
|
|
import os.path
|
2004-02-14 11:10:30 +05:30
|
|
|
import types
|
2004-05-19 11:43:36 +05:30
|
|
|
from gettext import gettext as _
|
2004-05-20 05:42:14 +05:30
|
|
|
import cPickle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-07-21 16:50:31 +05:30
|
|
|
from Date import Date, SingleDate, compare_dates, not_too_old
|
2003-10-12 09:56:00 +05:30
|
|
|
import GrampsCfg
|
2002-10-20 19:55:16 +05:30
|
|
|
import const
|
2004-06-27 08:40:06 +05:30
|
|
|
import Utils
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Confidence levels
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
CONF_VERY_HIGH = 4
|
|
|
|
CONF_HIGH = 3
|
|
|
|
CONF_NORMAL = 2
|
|
|
|
CONF_LOW = 1
|
|
|
|
CONF_VERY_LOW = 0
|
|
|
|
|
2004-07-31 00:26:49 +05:30
|
|
|
PERSON_KEY = 0
|
|
|
|
FAMILY_KEY = 1
|
|
|
|
SOURCE_KEY = 2
|
|
|
|
EVENT_KEY = 3
|
|
|
|
MEDIA_KEY = 4
|
|
|
|
PLACE_KEY = 5
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# SourceNote
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-11-02 01:25:30 +05:30
|
|
|
class SourceNote:
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Base class for storing source references and notes"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""Create a new SourceNote, copying from source if not None"""
|
|
|
|
|
|
|
|
self.source_list = []
|
|
|
|
|
|
|
|
if source:
|
2004-07-28 07:59:07 +05:30
|
|
|
for sref in source.source_list:
|
|
|
|
self.source_list.append(SourceRef(sref))
|
2002-10-20 19:55:16 +05:30
|
|
|
if source.note:
|
|
|
|
self.note = Note(source.note.get())
|
|
|
|
else:
|
|
|
|
self.note = None
|
|
|
|
else:
|
|
|
|
self.note = None
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def add_source_reference(self,handle) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Set the source reference"""
|
2004-07-28 07:59:07 +05:30
|
|
|
self.source_list.append(handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_source_references(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Return the source reference"""
|
2003-11-02 01:25:30 +05:30
|
|
|
return self.source_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_source_reference_list(self,list) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Replaces the source reference"""
|
|
|
|
self.source_list = list
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_note(self,text):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Set the note to the given text"""
|
|
|
|
if self.note == None:
|
|
|
|
self.note = Note()
|
|
|
|
self.note.set(text)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_note(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Return the current note"""
|
|
|
|
if self.note == None:
|
|
|
|
return ""
|
|
|
|
else:
|
|
|
|
return self.note.get()
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_note_format(self,val):
|
2003-12-10 19:51:48 +05:30
|
|
|
"""Set the note's format to the given value"""
|
|
|
|
if self.note:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.note.set_format(val)
|
2003-12-10 19:51:48 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_note_format(self):
|
2003-12-10 19:51:48 +05:30
|
|
|
"""Return the current note's format"""
|
|
|
|
if self.note == None:
|
|
|
|
return 0
|
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.note.get_format()
|
2003-12-10 19:51:48 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_note_object(self,obj):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Change the note object instance to obj"""
|
|
|
|
self.note = obj
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_note_object(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Return in note instance, not just the text"""
|
|
|
|
return self.note
|
|
|
|
|
|
|
|
def unique_note(self):
|
|
|
|
"""Creates a unique instance of the current note"""
|
|
|
|
self.note = Note(self.note.get())
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# LdsOrd
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class LdsOrd(SourceNote):
|
|
|
|
"""LDS Ordinance support"""
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""Creates a LDS Ordinance instance"""
|
|
|
|
SourceNote.__init__(self,source)
|
|
|
|
if source:
|
|
|
|
self.famc = source.famc
|
|
|
|
self.date = Date(source.date)
|
|
|
|
self.temple = source.temple
|
|
|
|
self.status = source.status
|
|
|
|
self.place = source.place
|
|
|
|
else:
|
|
|
|
self.famc = None
|
|
|
|
self.date = None
|
|
|
|
self.temple = ""
|
|
|
|
self.status = 0
|
|
|
|
self.place = None
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_place_name(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the title of the Place associated with the Ordinance"""
|
|
|
|
if self.place:
|
|
|
|
return self.place.get_title()
|
|
|
|
else:
|
|
|
|
return ""
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_place_handle(self,place):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Place instance of the Event"""
|
|
|
|
self.place = place
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_place_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Place instance of the Event"""
|
|
|
|
return self.place
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_family_handle(self,family):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Sets the family associated with the LDS ordinance"""
|
|
|
|
self.famc = family
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_family_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Gets the family associated with the LDS ordinance"""
|
|
|
|
return self.famc
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_status(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Sets the status of the LDS ordinance"""
|
|
|
|
self.status = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_status(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Gets the status of the LDS ordinance"""
|
|
|
|
return self.status
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_date(self, date) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""attempts to sets the date of the LdsOrd instance"""
|
|
|
|
if not self.date:
|
|
|
|
self.date = Date()
|
|
|
|
self.date.set(date)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_date(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a string representation of the date of the LdsOrd instance"""
|
|
|
|
if self.date:
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
return ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_date_object(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Date object associated with the LdsOrd"""
|
|
|
|
if not self.date:
|
|
|
|
self.date = Date()
|
|
|
|
return self.date
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_date_object(self,date):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Date object associated with the LdsOrd"""
|
|
|
|
self.date = date
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_temple(self,temple):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Sets the temple assocated with the LDS ordinance"""
|
|
|
|
self.temple = temple
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_temple(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Gets the temple assocated with the LDS ordinance"""
|
|
|
|
return self.temple
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def is_empty(self):
|
2003-08-01 07:28:51 +05:30
|
|
|
"""Returns 1 if the LDS ordidance is actually empty"""
|
|
|
|
if (self.famc or
|
2004-02-14 11:10:30 +05:30
|
|
|
(self.date and not self.date.is_empty()) or
|
2003-08-01 07:28:51 +05:30
|
|
|
self.temple or
|
|
|
|
self.status or
|
|
|
|
self.place):
|
|
|
|
return 0
|
|
|
|
else:
|
|
|
|
return 1
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def are_equal(self,other):
|
2003-08-01 07:28:51 +05:30
|
|
|
"""returns 1 if the specified ordinance is the same as the instance"""
|
2002-10-20 19:55:16 +05:30
|
|
|
if other == None:
|
2004-07-28 07:59:07 +05:30
|
|
|
return self.is_empty()
|
2002-10-20 19:55:16 +05:30
|
|
|
if (self.famc != other.famc or
|
|
|
|
self.place != other.place or
|
2003-11-17 06:11:32 +05:30
|
|
|
self.status != other.status or
|
2002-10-20 19:55:16 +05:30
|
|
|
self.temple != other.temple or
|
2004-02-14 11:10:30 +05:30
|
|
|
compare_dates(self.get_date_object(),other.get_date_object()) or
|
|
|
|
len(self.get_source_references()) != len(other.get_source_references())):
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
|
|
|
|
|
|
|
index = 0
|
2004-02-14 11:10:30 +05:30
|
|
|
olist = other.get_source_references()
|
|
|
|
for a in self.get_source_references():
|
2002-10-20 19:55:16 +05:30
|
|
|
if not a.are_equal(olist[index]):
|
|
|
|
return 0
|
|
|
|
index = index + 1
|
|
|
|
return 1
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# DataObj
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class DataObj(SourceNote):
|
|
|
|
"""Base class for data elements, providing source, note, and privacy data"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""Create a new DataObj, copying data from a source object if provided"""
|
|
|
|
SourceNote.__init__(self,source)
|
|
|
|
|
|
|
|
if source:
|
|
|
|
self.private = source.private
|
|
|
|
else:
|
|
|
|
self.private = 0
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_privacy(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Sets or clears the privacy flag of the data"""
|
|
|
|
self.private = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_privacy(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Returns the privacy level of the data"""
|
|
|
|
return self.private
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Place
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class Place(SourceNote):
|
|
|
|
"""Contains information related to a place, including multiple address
|
|
|
|
information (since place names can change with time), longitude, latitude,
|
|
|
|
a collection of images and URLs, a note and a source"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""Creates a new Place object.
|
|
|
|
|
|
|
|
source - Object to copy. If none supplied, create an empty place object"""
|
|
|
|
|
|
|
|
SourceNote.__init__(self,source)
|
|
|
|
if source:
|
2004-02-22 10:27:06 +05:30
|
|
|
self.long = source.long
|
2002-10-20 19:55:16 +05:30
|
|
|
self.lat = source.lat
|
|
|
|
self.title = source.title
|
|
|
|
self.main_loc = Location(source.main_loc)
|
|
|
|
self.alt_loc = []
|
|
|
|
for loc in source.alt_loc:
|
|
|
|
self.alt_loc = Location(loc)
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = source.handle
|
2002-10-20 19:55:16 +05:30
|
|
|
self.urls = []
|
|
|
|
for u in source.urls:
|
|
|
|
self.urls.append(Url(u))
|
2004-02-21 11:41:59 +05:30
|
|
|
self.media_list = []
|
2004-02-22 10:27:06 +05:30
|
|
|
for media_id in source.media_list:
|
|
|
|
self.media_list.append(MediaRef(media_id))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.long = ""
|
|
|
|
self.lat = ""
|
|
|
|
self.title = ""
|
|
|
|
self.main_loc = None
|
|
|
|
self.alt_loc = []
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = ""
|
2002-10-20 19:55:16 +05:30
|
|
|
self.urls = []
|
2004-02-21 11:41:59 +05:30
|
|
|
self.media_list = []
|
|
|
|
|
|
|
|
def serialize(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
return (self.handle, self.title, self.long, self.lat, self.main_loc,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.alt_loc, self.urls, self.media_list, self.source_list, self.note)
|
|
|
|
|
|
|
|
def unserialize(self,data):
|
2004-07-28 07:59:07 +05:30
|
|
|
(self.handle, self.title, self.long, self.lat, self.main_loc,
|
2004-06-10 05:29:03 +05:30
|
|
|
self.alt_loc, self.urls, self.media_list, self.source_list,
|
|
|
|
self.note) = data
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_url_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Return the list of URLs"""
|
2003-11-02 01:25:30 +05:30
|
|
|
return self.urls
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_url_list(self,list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Replace the current URL list with the new one"""
|
|
|
|
self.urls = list
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_url(self,url):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Add a URL to the URL list"""
|
|
|
|
self.urls.append(url)
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_handle(self,handle):
|
|
|
|
"""Sets the database handle for the place object"""
|
|
|
|
self.handle = handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_handle(self):
|
|
|
|
"""Returns the database handle for the place object"""
|
|
|
|
return self.handle
|
2004-06-27 08:40:06 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def set_title(self,name):
|
|
|
|
"""Sets the title of the place object"""
|
|
|
|
self.title = name
|
|
|
|
|
|
|
|
def get_title(self):
|
|
|
|
"""Returns the title of the place object"""
|
|
|
|
return self.title
|
|
|
|
|
|
|
|
def set_longitude(self,long):
|
|
|
|
"""Sets the longitude of the place"""
|
|
|
|
self.long = long
|
|
|
|
|
|
|
|
def get_longitude(self):
|
|
|
|
"""Returns the longitude of the place"""
|
|
|
|
return self.long
|
|
|
|
|
|
|
|
def set_latitude(self,long):
|
|
|
|
"""Sets the latitude of the place"""
|
|
|
|
self.lat = long
|
|
|
|
|
|
|
|
def get_latitude(self):
|
|
|
|
"""Returns the latitude of the place"""
|
|
|
|
return self.lat
|
|
|
|
|
|
|
|
def get_main_location(self):
|
|
|
|
"""Returns the Location object representing the primary information"""
|
|
|
|
if not self.main_loc:
|
|
|
|
self.main_loc = Location()
|
|
|
|
return self.main_loc
|
|
|
|
|
|
|
|
def set_main_location(self,loc):
|
|
|
|
"""Assigns the main location to the Location object passed"""
|
|
|
|
self.main_loc = loc
|
|
|
|
|
|
|
|
def get_alternate_locations(self):
|
|
|
|
"""Returns a list of alternate location information objects"""
|
2003-11-02 01:25:30 +05:30
|
|
|
return self.alt_loc
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def set_alternate_locations(self,list):
|
|
|
|
"""Replaces the current alternate location list with the new one"""
|
|
|
|
self.alt_loc = list
|
|
|
|
|
|
|
|
def add_alternate_locations(self,loc):
|
|
|
|
"""Adds a Location to the alternate location list"""
|
|
|
|
if loc not in self.alt_loc:
|
|
|
|
self.alt_loc.append(loc)
|
|
|
|
|
2004-02-22 10:27:06 +05:30
|
|
|
def add_media_reference(self,media_id):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Adds a Photo object to the place object's image list"""
|
2004-02-22 10:27:06 +05:30
|
|
|
self.media_list.append(media_id)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def get_media_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Returns the list of Photo objects"""
|
2004-02-21 11:41:59 +05:30
|
|
|
return self.media_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def set_media_list(self,list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Sets the list of Photo objects"""
|
2004-02-21 11:41:59 +05:30
|
|
|
self.media_list = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_display_info(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Gets the display information associated with the object. This includes
|
|
|
|
the information that is used for display and for sorting. Returns a list
|
|
|
|
consisting of 13 strings. These are: Place Title, Place ID, Main Location
|
|
|
|
Parish, Main Location County, Main Location City, Main Location State/Province,
|
|
|
|
Main Location Country, upper case Place Title, upper case Parish, upper
|
|
|
|
case city, upper case county, upper case state, upper case country"""
|
|
|
|
|
|
|
|
if self.main_loc:
|
2004-07-28 07:59:07 +05:30
|
|
|
return [self.title,self.handle,self.main_loc.parish,self.main_loc.city,
|
2002-10-20 19:55:16 +05:30
|
|
|
self.main_loc.county,self.main_loc.state,self.main_loc.country,
|
2003-01-19 11:55:20 +05:30
|
|
|
self.title.upper(), self.main_loc.parish.upper(),
|
|
|
|
self.main_loc.city.upper(), self.main_loc.county.upper(),
|
|
|
|
self.main_loc.state.upper(), self.main_loc.country.upper()]
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
return [self.title,self.handle,'','','','','',self.title.upper(), '','','','','']
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Researcher
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-11-02 01:25:30 +05:30
|
|
|
class Researcher:
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Contains the information about the owner of the database"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""Initializes the Researcher object"""
|
|
|
|
self.name = ""
|
|
|
|
self.addr = ""
|
|
|
|
self.city = ""
|
|
|
|
self.state = ""
|
|
|
|
self.country = ""
|
|
|
|
self.postal = ""
|
|
|
|
self.phone = ""
|
|
|
|
self.email = ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_name(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's name"""
|
|
|
|
return self.name
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_address(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's address"""
|
|
|
|
return self.addr
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_city(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's city"""
|
|
|
|
return self.city
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_state(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's state"""
|
|
|
|
return self.state
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_country(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's country"""
|
|
|
|
return self.country
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_postal_code(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's postal code"""
|
|
|
|
return self.postal
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_phone(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's phone number"""
|
|
|
|
return self.phone
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_email(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the database owner's email"""
|
|
|
|
return self.email
|
|
|
|
|
|
|
|
def set(self,name,addr,city,state,country,postal,phone,email):
|
|
|
|
"""sets the information about the database owner"""
|
|
|
|
if name:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.name = name.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
if addr:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.addr = addr.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
if city:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.city = city.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
if state:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.state = state.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
if country:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.country = country.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
if postal:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.postal = postal.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
if phone:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.phone = phone.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
if email:
|
2003-12-30 00:07:44 +05:30
|
|
|
self.email = email.strip()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Location
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-11-02 01:25:30 +05:30
|
|
|
class Location:
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Provides information about a place, including city, county, state,
|
|
|
|
and country. Multiple Location objects can represent the same place,
|
|
|
|
since names of citys, countys, states, and even countries can change
|
|
|
|
with time"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""creates a Location object, copying from the source object if it exists"""
|
|
|
|
if source:
|
|
|
|
self.city = source.city
|
|
|
|
self.parish = source.parish
|
|
|
|
self.county = source.county
|
|
|
|
self.state = source.state
|
|
|
|
self.country = source.country
|
2003-12-09 11:30:51 +05:30
|
|
|
self.postal = source.postal
|
|
|
|
self.phone = source.phone
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.city = ""
|
|
|
|
self.parish = ""
|
|
|
|
self.county = ""
|
|
|
|
self.state = ""
|
|
|
|
self.country = ""
|
2003-12-09 11:30:51 +05:30
|
|
|
self.postal = ""
|
|
|
|
self.phone = ""
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def is_empty(self):
|
2004-07-31 00:26:49 +05:30
|
|
|
return not self.city and not self.county and not self.state and \
|
|
|
|
not self.country and not self.postal and not self.phone
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def set_city(self,data):
|
|
|
|
"""sets the city name of the Location object"""
|
|
|
|
self.city = data
|
|
|
|
|
2003-12-09 11:30:51 +05:30
|
|
|
def get_postal_code(self):
|
|
|
|
"""returns the postal code of the Location object"""
|
|
|
|
return self.postal
|
|
|
|
|
|
|
|
def set_postal_code(self,data):
|
|
|
|
"""sets the postal code of the Location object"""
|
|
|
|
self.postal = data
|
|
|
|
|
|
|
|
def get_phone(self):
|
|
|
|
"""returns the phone number of the Location object"""
|
|
|
|
return self.phone
|
|
|
|
|
|
|
|
def set_phone(self,data):
|
|
|
|
"""sets the phone number of the Location object"""
|
|
|
|
self.phone = data
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def get_city(self):
|
|
|
|
"""returns the city name of the Location object"""
|
|
|
|
return self.city
|
|
|
|
|
|
|
|
def set_parish(self,data):
|
|
|
|
"""sets the religious parish name"""
|
|
|
|
self.parish = data
|
|
|
|
|
|
|
|
def get_parish(self):
|
|
|
|
"""gets the religious parish name"""
|
|
|
|
return self.parish
|
|
|
|
|
|
|
|
def set_county(self,data):
|
|
|
|
"""sets the county name of the Location object"""
|
|
|
|
self.county = data
|
|
|
|
|
|
|
|
def get_county(self):
|
|
|
|
"""returns the county name of the Location object"""
|
|
|
|
return self.county
|
|
|
|
|
|
|
|
def set_state(self,data):
|
|
|
|
"""sets the state name of the Location object"""
|
|
|
|
self.state = data
|
|
|
|
|
|
|
|
def get_state(self):
|
|
|
|
"""returns the state name of the Location object"""
|
|
|
|
return self.state
|
|
|
|
|
|
|
|
def set_country(self,data):
|
|
|
|
"""sets the country name of the Location object"""
|
|
|
|
self.country = data
|
|
|
|
|
|
|
|
def get_country(self):
|
|
|
|
"""returns the country name of the Location object"""
|
|
|
|
return self.country
|
|
|
|
|
2004-07-31 00:26:49 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Note
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-11-02 01:25:30 +05:30
|
|
|
class Note:
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Provides general text information"""
|
|
|
|
|
|
|
|
def __init__(self,text = ""):
|
|
|
|
"""create a new Note object from the passed string"""
|
|
|
|
self.text = text
|
2003-12-10 09:19:53 +05:30
|
|
|
self.format = 0
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def set(self,text):
|
|
|
|
"""set the note contents to the passed string"""
|
|
|
|
self.text = text
|
|
|
|
|
|
|
|
def get(self):
|
|
|
|
"""return the note contents"""
|
|
|
|
return self.text
|
|
|
|
|
|
|
|
def append(self,text):
|
|
|
|
"""adds the text to the note's contents"""
|
|
|
|
self.text = self.text + text
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_format(self,format):
|
2003-12-10 09:19:53 +05:30
|
|
|
"""set the format to the passed value"""
|
|
|
|
self.format = format
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_format(self):
|
2003-12-10 09:19:53 +05:30
|
|
|
"""return the note's format"""
|
|
|
|
return self.format
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# MediaObject
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-02-21 11:41:59 +05:30
|
|
|
class MediaObject(SourceNote):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Containter for information about an image file, including location,
|
|
|
|
description and privacy"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
2004-02-21 11:41:59 +05:30
|
|
|
"""Create a new MediaObject object, copying from the source if provided"""
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
SourceNote.__init__(self,source)
|
|
|
|
|
|
|
|
self.attrlist = []
|
|
|
|
if source:
|
|
|
|
self.path = source.path
|
|
|
|
self.mime = source.mime
|
|
|
|
self.desc = source.desc
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = source.handle
|
2004-03-01 10:03:36 +05:30
|
|
|
self.thumb = source.thumb
|
2002-10-20 19:55:16 +05:30
|
|
|
for attr in source.attrlist:
|
|
|
|
self.attrlist.append(Attribute(attr))
|
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = ""
|
2002-10-20 19:55:16 +05:30
|
|
|
self.path = ""
|
|
|
|
self.mime = ""
|
|
|
|
self.desc = ""
|
2004-03-01 10:03:36 +05:30
|
|
|
self.thumb = None
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def serialize(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
return (self.handle, self.path, self.mime, self.desc, self.attrlist,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.source_list, self.note)
|
|
|
|
|
|
|
|
def unserialize(self,data):
|
2004-07-31 00:26:49 +05:30
|
|
|
(self.handle, self.path, self.mime, self.desc, self.attrlist,
|
|
|
|
self.source_list, self.note) = data
|
2004-02-21 11:41:59 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_handle(self,handle):
|
|
|
|
"""Sets the database handle for the place object"""
|
|
|
|
self.handle = handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_handle(self):
|
|
|
|
"""Returns the database handle for the place object"""
|
|
|
|
return self.handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_mime_type(self,type):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.mime = type
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_mime_type(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
return self.mime
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_path(self,path):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""set the file path to the passed path"""
|
|
|
|
self.path = os.path.normpath(path)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_path(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""return the file path"""
|
|
|
|
return self.path
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_description(self,text):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the description of the image"""
|
|
|
|
self.desc = text
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_description(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the description of the image"""
|
|
|
|
return self.desc
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_attribute(self,attr):
|
2004-02-21 11:41:59 +05:30
|
|
|
"""Adds a propery to the MediaObject object. This is not used by gramps,
|
2002-10-20 19:55:16 +05:30
|
|
|
but provides a means for XML users to attach other properties to
|
|
|
|
the image"""
|
|
|
|
self.attrlist.append(attr)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_attribute_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the property list associated with the image"""
|
2003-11-02 01:25:30 +05:30
|
|
|
return self.attrlist
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_attribute_list(self,list):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.attrlist = list
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# MediaRef
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-06-03 11:05:30 +05:30
|
|
|
class MediaRef(SourceNote):
|
|
|
|
"""Media reference class"""
|
2002-10-20 19:55:16 +05:30
|
|
|
def __init__(self,source=None):
|
2004-06-03 11:05:30 +05:30
|
|
|
|
|
|
|
SourceNote.__init__(self,source)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.attrlist = []
|
|
|
|
if source:
|
|
|
|
self.private = source.private
|
|
|
|
self.ref = source.ref
|
|
|
|
self.note = Note(source.note)
|
|
|
|
for attr in source.attrlist:
|
|
|
|
self.attrlist.append(Attribute(attr))
|
|
|
|
else:
|
|
|
|
self.private = 0
|
|
|
|
self.ref = None
|
|
|
|
self.note = None
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_privacy(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Sets or clears the privacy flag of the data"""
|
|
|
|
self.private = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_privacy(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Returns the privacy level of the data"""
|
|
|
|
return self.private
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_reference_handle(self,obj_id):
|
2004-02-25 08:55:57 +05:30
|
|
|
self.ref = obj_id
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_reference_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
return self.ref
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_attribute(self,attr):
|
2004-02-21 11:41:59 +05:30
|
|
|
"""Adds a propery to the MediaObject object. This is not used by gramps,
|
2002-10-20 19:55:16 +05:30
|
|
|
but provides a means for XML users to attach other properties to
|
|
|
|
the image"""
|
|
|
|
self.attrlist.append(attr)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_attribute_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the property list associated with the image"""
|
2003-11-02 01:25:30 +05:30
|
|
|
return self.attrlist
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_attribute_list(self,list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the property list associated with the image"""
|
|
|
|
self.attrlist = list
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Attribute
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class Attribute(DataObj):
|
|
|
|
"""Provides a simple key/value pair for describing properties. Used
|
|
|
|
by the Person and Family objects to store descriptive information."""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""creates a new Attribute object, copying from the source if provided"""
|
|
|
|
DataObj.__init__(self,source)
|
|
|
|
|
|
|
|
if source:
|
|
|
|
self.type = source.type
|
|
|
|
self.value = source.value
|
|
|
|
else:
|
|
|
|
self.type = ""
|
|
|
|
self.value = ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_type(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the type (or key) of the Attribute instance"""
|
|
|
|
self.type = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_type(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the type (or key) or the Attribute instance"""
|
|
|
|
return self.type
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_value(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the value of the Attribute instance"""
|
|
|
|
self.value = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_value(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the value of the Attribute instance"""
|
|
|
|
return self.value
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Address
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class Address(DataObj):
|
|
|
|
"""Provides address information for a person"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""Creates a new Address instance, copying from the source
|
|
|
|
if provided"""
|
|
|
|
DataObj.__init__(self,source)
|
|
|
|
|
|
|
|
if source:
|
|
|
|
self.street = source.street
|
|
|
|
self.city = source.city
|
|
|
|
self.state = source.state
|
|
|
|
self.country = source.country
|
|
|
|
self.postal = source.postal
|
|
|
|
self.date = Date(source.date)
|
2003-12-09 11:30:51 +05:30
|
|
|
self.phone = source.phone
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.street = ""
|
|
|
|
self.city = ""
|
|
|
|
self.state = ""
|
|
|
|
self.country = ""
|
|
|
|
self.postal = ""
|
|
|
|
self.date = Date()
|
2003-12-09 11:30:51 +05:30
|
|
|
self.phone = ""
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_date(self,text):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""attempts to sets the date that the person lived at the address
|
|
|
|
from the passed string"""
|
|
|
|
self.date.set(text)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_date(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a string representation of the date that the person
|
|
|
|
lived at the address"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_preferred_date(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a string representation of the date that the person
|
|
|
|
lived at the address"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.date.get_preferred_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_date_object(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Date object associated with the Address"""
|
|
|
|
return self.date
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_date_object(self,obj):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Date object associated with the Address"""
|
|
|
|
self.date = obj
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_street(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the street portion of the Address"""
|
|
|
|
self.street = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_street(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the street portion of the Address"""
|
|
|
|
return self.street
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_phone(self,val):
|
2003-12-09 11:30:51 +05:30
|
|
|
"""sets the phone number portion of the Address"""
|
|
|
|
self.phone = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_phone(self):
|
2003-12-09 11:30:51 +05:30
|
|
|
"""returns the phone number portion of the Address"""
|
|
|
|
return self.phone
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_city(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the city portion of the Address"""
|
|
|
|
self.city = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_city(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the city portion of the Address"""
|
|
|
|
return self.city
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_state(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the state portion of the Address"""
|
|
|
|
self.state = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_state(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the state portion of the Address"""
|
|
|
|
return self.state
|
|
|
|
|
|
|
|
def setCountry(self,val):
|
|
|
|
"""sets the country portion of the Address"""
|
|
|
|
self.country = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_country(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the country portion of the Address"""
|
|
|
|
return self.country
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_postal_code(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the postal code of the Address"""
|
|
|
|
self.postal = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_postal_code(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the postal code of the Address"""
|
|
|
|
return self.postal
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Name
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class Name(DataObj):
|
|
|
|
"""Provides name information about a person. A person may have more
|
|
|
|
that one name throughout his or her life."""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""creates a new Name instance, copying from the source if provided"""
|
|
|
|
DataObj.__init__(self,source)
|
|
|
|
|
|
|
|
if source:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.first_name = source.first_name
|
|
|
|
self.surname = source.surname
|
|
|
|
self.suffix = source.suffix
|
|
|
|
self.title = source.title
|
2002-10-20 19:55:16 +05:30
|
|
|
self.type = source.type
|
2004-02-14 11:10:30 +05:30
|
|
|
self.prefix = source.prefix
|
2004-01-07 10:35:42 +05:30
|
|
|
self.sname = source.sname
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.first_name = ""
|
|
|
|
self.surname = ""
|
|
|
|
self.suffix = ""
|
|
|
|
self.title = ""
|
2003-03-14 11:16:02 +05:30
|
|
|
self.type = "Birth Name"
|
2004-02-14 11:10:30 +05:30
|
|
|
self.prefix = ""
|
2004-01-07 10:35:42 +05:30
|
|
|
self.sname = '@'
|
2002-12-04 10:28:07 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_surname_prefix(self):
|
|
|
|
return self.prefix
|
2002-12-04 10:28:07 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_surname_prefix(self,val):
|
|
|
|
self.prefix = val
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_type(self,type):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the type of the Name instance"""
|
|
|
|
self.type = type
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_type(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the type of the Name instance"""
|
|
|
|
return self.type
|
|
|
|
|
2004-01-07 10:35:42 +05:30
|
|
|
def build_sort_name(self):
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.surname:
|
|
|
|
self.sname = "%-25s%-30s%s" % (self.surname.upper(),self.first_name.upper(),self.suffix.upper())
|
2004-01-07 10:35:42 +05:30
|
|
|
else:
|
|
|
|
self.sname = "@"
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_first_name(self,name):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the given name for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.first_name = name
|
2004-01-07 10:35:42 +05:30
|
|
|
self.build_sort_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_surname(self,name):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the surname (or last name) for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.surname = name
|
2004-01-07 10:35:42 +05:30
|
|
|
self.build_sort_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_suffix(self,name):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the suffix (such as Jr., III, etc.) for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.suffix = name
|
2004-01-07 10:35:42 +05:30
|
|
|
self.build_sort_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_sort_name(self):
|
2004-01-07 10:35:42 +05:30
|
|
|
return self.sname
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_first_name(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the given name for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.first_name
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_surname(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the surname (or last name) for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.surname
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_upper_surname(self):
|
2003-10-12 09:56:00 +05:30
|
|
|
"""returns the surname (or last name) for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.surname.upper()
|
2003-10-12 09:56:00 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_suffix(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the suffix for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.suffix
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_title(self,title):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the title (Dr., Reverand, Captain) for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.title = title
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_title(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the title for the Name instance"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.title
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_name(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a name string built from the components of the Name
|
2004-02-14 11:10:30 +05:30
|
|
|
instance, in the form of surname, Firstname"""
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.suffix:
|
|
|
|
if self.prefix:
|
|
|
|
return "%s %s, %s %s" % (self.prefix, self.surname, self.first_name, self.suffix)
|
2002-12-04 10:28:07 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s, %s %s" % (self.surname, self.first_name, self.suffix)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.prefix:
|
|
|
|
return "%s %s, %s" % (self.prefix,self.surname, self.first_name)
|
2002-12-04 10:28:07 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s, %s" % (self.surname, self.first_name)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_upper_name(self):
|
2003-10-12 09:56:00 +05:30
|
|
|
"""returns a name string built from the components of the Name
|
2004-02-14 11:10:30 +05:30
|
|
|
instance, in the form of surname, Firstname"""
|
2003-10-12 09:56:00 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.suffix:
|
|
|
|
if self.prefix:
|
|
|
|
return "%s %s, %s %s" % (self.prefix.upper(), self.surname.upper(), self.first_name, self.suffix)
|
2003-10-12 09:56:00 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s, %s %s" % (self.surname.upper(), self.first_name, self.suffix)
|
2003-10-12 09:56:00 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.prefix:
|
|
|
|
return "%s %s, %s" % (self.prefix.upper(), self.surname.upper(), self.first_name)
|
2003-10-12 09:56:00 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s, %s" % (self.surname.upper(), self.first_name)
|
2003-10-12 09:56:00 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_regular_name(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a name string built from the components of the Name
|
2004-02-14 11:10:30 +05:30
|
|
|
instance, in the form of Firstname surname"""
|
|
|
|
if (self.suffix == ""):
|
|
|
|
if self.prefix:
|
|
|
|
return "%s %s %s" % (self.first_name, self.prefix, self.surname)
|
2003-03-16 00:21:30 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s %s" % (self.first_name, self.surname)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.prefix:
|
|
|
|
return "%s %s %s, %s" % (self.first_name, self.prefix, self.surname, self.suffix)
|
2003-03-16 00:21:30 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s %s, %s" % (self.first_name, self.surname, self.suffix)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_regular_upper_name(self):
|
2003-10-12 09:56:00 +05:30
|
|
|
"""returns a name string built from the components of the Name
|
2004-02-14 11:10:30 +05:30
|
|
|
instance, in the form of Firstname surname"""
|
|
|
|
if (self.suffix == ""):
|
|
|
|
if self.prefix:
|
|
|
|
return "%s %s %s" % (self.first_name, self.prefix.upper(), self.surname.upper())
|
2003-10-12 09:56:00 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s %s" % (self.first_name, self.surname.upper())
|
2003-10-12 09:56:00 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.prefix:
|
|
|
|
return "%s %s %s, %s" % (self.first_name, self.prefix.upper(), self.surname.upper(), self.suffix)
|
2003-10-12 09:56:00 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return "%s %s, %s" % (self.first_name, self.surname.upper(), self.suffix)
|
2003-10-12 09:56:00 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def are_equal(self,other):
|
|
|
|
"""compares to names to see if they are equal, return 0 if they
|
|
|
|
are not"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.first_name != other.first_name:
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.surname != other.surname:
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.prefix != other.prefix:
|
2003-04-20 09:22:54 +05:30
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.suffix != other.suffix:
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.title != other.title:
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
|
|
|
if self.type != other.type:
|
|
|
|
return 0
|
|
|
|
if self.private != other.private:
|
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.get_note() != other.get_note():
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if len(self.get_source_references()) != len(other.get_source_references()):
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
|
|
|
index = 0
|
2004-02-14 11:10:30 +05:30
|
|
|
olist = other.get_source_references()
|
|
|
|
for a in self.get_source_references():
|
2002-10-20 19:55:16 +05:30
|
|
|
if not a.are_equal(olist[index]):
|
|
|
|
return 0
|
|
|
|
index = index + 1
|
|
|
|
return 1
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Url
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-11-02 01:25:30 +05:30
|
|
|
class Url:
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Contains information related to internet Uniform Resource Locators,
|
|
|
|
allowing gramps to store information about internet resources"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""creates a new URL instance, copying from the source if present"""
|
|
|
|
if source:
|
|
|
|
self.path = source.path
|
|
|
|
self.desc = source.desc
|
|
|
|
self.private = source.private
|
|
|
|
else:
|
|
|
|
self.path = ""
|
|
|
|
self.desc = ""
|
|
|
|
self.private = 0
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_privacy(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the privacy flag for the URL instance"""
|
|
|
|
self.private = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_privacy(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the privacy flag for the URL instance"""
|
|
|
|
return self.private
|
|
|
|
|
|
|
|
def set_path(self,path):
|
|
|
|
"""sets the URL path"""
|
|
|
|
self.path = path
|
|
|
|
|
|
|
|
def get_path(self):
|
|
|
|
"""returns the URL path"""
|
|
|
|
return self.path
|
|
|
|
|
|
|
|
def set_description(self,description):
|
|
|
|
"""sets the description of the URL"""
|
|
|
|
self.desc = description
|
|
|
|
|
|
|
|
def get_description(self):
|
|
|
|
"""returns the description of the URL"""
|
|
|
|
return self.desc
|
|
|
|
|
|
|
|
def are_equal(self,other):
|
|
|
|
"""returns 1 if the specified URL is the same as the instance"""
|
|
|
|
if other == None:
|
|
|
|
return 0
|
|
|
|
if self.path != other.path:
|
|
|
|
return 0
|
|
|
|
if self.desc != other.desc:
|
|
|
|
return 0
|
|
|
|
return 1
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Person
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-10-29 10:34:43 +05:30
|
|
|
class Person(SourceNote):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Represents an individual person in the gramps database"""
|
|
|
|
|
|
|
|
unknown = 2
|
|
|
|
male = 1
|
|
|
|
female = 0
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def __init__(self,handle=""):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""creates a new Person instance"""
|
2003-10-29 10:34:43 +05:30
|
|
|
SourceNote.__init__(self)
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = handle
|
|
|
|
self.gramps_id = ""
|
2004-02-21 11:41:59 +05:30
|
|
|
self.primary_name = Name()
|
2004-02-14 11:10:30 +05:30
|
|
|
self.event_list = []
|
|
|
|
self.family_list = []
|
|
|
|
self.parent_family_list = []
|
2004-02-21 11:41:59 +05:30
|
|
|
self.media_list = []
|
2002-10-20 19:55:16 +05:30
|
|
|
self.nickname = ""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.alternate_names = []
|
2002-10-20 19:55:16 +05:30
|
|
|
self.gender = 2
|
2004-07-28 07:59:07 +05:30
|
|
|
self.death_handle = None
|
|
|
|
self.birth_handle = None
|
2004-02-14 11:10:30 +05:30
|
|
|
self.address_list = []
|
|
|
|
self.attribute_list = []
|
2002-10-20 19:55:16 +05:30
|
|
|
self.urls = []
|
|
|
|
self.ancestor = None
|
|
|
|
self.lds_bapt = None
|
|
|
|
self.lds_endow = None
|
|
|
|
self.lds_seal = None
|
2003-12-03 09:19:39 +05:30
|
|
|
self.complete = 0
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-06-24 19:46:47 +05:30
|
|
|
# We hold a reference to the GrampsDB so that we can maintain
|
|
|
|
# its genderStats. It doesn't get set here, but from
|
|
|
|
# GenderStats.count_person.
|
|
|
|
self.db = None
|
2004-02-21 11:41:59 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def serialize(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
return (self.handle, self.gramps_id, self.gender,
|
2004-02-14 11:10:30 +05:30
|
|
|
self.primary_name, self.alternate_names, self.nickname,
|
2004-07-28 07:59:07 +05:30
|
|
|
self.death_handle, self.birth_handle, self.event_list,
|
2004-02-14 11:10:30 +05:30
|
|
|
self.family_list, self.parent_family_list,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.media_list,
|
2004-02-14 11:10:30 +05:30
|
|
|
self.address_list,
|
|
|
|
self.attribute_list,
|
|
|
|
self.urls,
|
|
|
|
self.lds_bapt, self.lds_endow, self.lds_seal,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.complete,
|
|
|
|
self.source_list,
|
|
|
|
self.note)
|
|
|
|
|
|
|
|
def unserialize(self,data):
|
2004-07-28 07:59:07 +05:30
|
|
|
(self.handle, self.gramps_id, self.gender,
|
|
|
|
self.primary_name, self.alternate_names, self.nickname,
|
|
|
|
self.death_handle, self.birth_handle, self.event_list,
|
|
|
|
self.family_list, self.parent_family_list,
|
|
|
|
self.media_list,
|
|
|
|
self.address_list,
|
|
|
|
self.attribute_list,
|
|
|
|
self.urls,
|
|
|
|
self.lds_bapt, self.lds_endow, self.lds_seal,
|
|
|
|
self.complete, self.source_list, self.note) = data
|
2004-07-09 10:01:43 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_complete(self,val):
|
2003-12-03 09:19:39 +05:30
|
|
|
self.complete = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_complete(self):
|
2003-12-03 09:19:39 +05:30
|
|
|
return self.complete
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_display_info(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.gender == Person.male:
|
|
|
|
gender = const.male
|
|
|
|
elif self.gender == Person.female:
|
|
|
|
gender = const.female
|
|
|
|
else:
|
|
|
|
gender = const.unknown
|
2004-07-28 07:59:07 +05:30
|
|
|
bday = self.birth_handle
|
|
|
|
dday = self.death_handle
|
2004-07-15 08:24:04 +05:30
|
|
|
return [ GrampsCfg.get_display_name()(self),
|
2004-07-28 07:59:07 +05:30
|
|
|
self.gramps_id,
|
2004-02-19 10:35:43 +05:30
|
|
|
gender,
|
|
|
|
bday,
|
|
|
|
dday,
|
2004-02-14 11:10:30 +05:30
|
|
|
self.get_primary_name().get_sort_name(),
|
2004-02-19 10:35:43 +05:30
|
|
|
bday, dday,
|
2004-07-15 08:24:04 +05:30
|
|
|
GrampsCfg.get_display_surname()(self.primary_name)]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_primary_name(self,name):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the primary name of the Person to the specified
|
|
|
|
Name instance"""
|
2003-06-24 19:46:47 +05:30
|
|
|
db = self.db
|
|
|
|
if db:
|
|
|
|
db.genderStats.uncount_person (self)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
self.primary_name = name
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-06-24 19:46:47 +05:30
|
|
|
if db:
|
|
|
|
db.genderStats.count_person (self, db)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_primary_name(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Name instance marked as the Person's primary name"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if not self.primary_name:
|
|
|
|
self.primary_name = Name()
|
|
|
|
return self.primary_name
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_alternate_names(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of alternate Names"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.alternate_names
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_alternate_names(self,list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""changes the list of alternate names to the passed list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.alternate_names = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_alternate_name(self,name):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds an alternate Name instance to the list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.alternate_names.append(name)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_url_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of URL instances"""
|
2003-11-02 01:25:30 +05:30
|
|
|
return self.urls
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_url_list(self,list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the list of URL instances to list"""
|
|
|
|
self.urls = list
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_url(self,url):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds a URL instance to the list"""
|
|
|
|
self.urls.append(url)
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_gramps_id(self,gramps_id):
|
|
|
|
"""sets the GRAMPS ID for the Person"""
|
|
|
|
self.gramps_id = gramps_id
|
2004-06-27 08:40:06 +05:30
|
|
|
|
|
|
|
def get_gramps_id(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
"""returns the GRAMPS ID for the Person"""
|
|
|
|
return self.gramps_id
|
2004-06-27 08:40:06 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_handle(self,handle):
|
|
|
|
"""sets the database handle for the Person"""
|
|
|
|
self.handle = handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_handle(self):
|
|
|
|
"""returns the database handle for the Person"""
|
|
|
|
return self.handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_nick_name(self,name):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the nickname for the Person"""
|
|
|
|
self.nickname = name
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_nick_name(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the nickname for the Person"""
|
|
|
|
return self.nickname
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_gender(self,val) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the gender of the Person"""
|
2003-06-24 19:46:47 +05:30
|
|
|
db = self.db
|
|
|
|
if db:
|
|
|
|
db.genderStats.uncount_person (self)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.gender = val
|
|
|
|
|
2003-06-24 19:46:47 +05:30
|
|
|
if db:
|
|
|
|
db.genderStats.count_person (self, db)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_gender(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the gender of the Person"""
|
|
|
|
return self.gender
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_birth_handle(self,event_handle) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the birth event to the passed event"""
|
2004-07-28 07:59:07 +05:30
|
|
|
self.birth_handle = event_handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_death_handle(self,event_handle) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the death event to the passed event"""
|
2004-07-28 07:59:07 +05:30
|
|
|
self.death_handle = event_handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_birth_handle(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the birth event"""
|
2004-07-28 07:59:07 +05:30
|
|
|
return self.birth_handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_death_handle(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the death event"""
|
2004-07-28 07:59:07 +05:30
|
|
|
return self.death_handle
|
2004-02-19 10:35:43 +05:30
|
|
|
|
2004-02-22 10:27:06 +05:30
|
|
|
def add_media_reference(self,media_id):
|
2004-02-21 11:41:59 +05:30
|
|
|
"""adds a MediaObject instance to the image list"""
|
2004-02-22 10:27:06 +05:30
|
|
|
self.media_list.append(media_id)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def get_media_list(self):
|
|
|
|
"""returns the list of MediaObjects"""
|
|
|
|
return self.media_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def set_media_list(self,list):
|
|
|
|
"""Sets the list of MediaObject objects"""
|
|
|
|
self.media_list = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def add_event_handle(self,event_handle):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds an Event to the event list"""
|
2004-07-28 07:59:07 +05:30
|
|
|
self.event_list.append(event_handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_event_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of Event instances"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.event_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def set_event_list(self,elist):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the event list to the passed list"""
|
2004-05-14 04:15:51 +05:30
|
|
|
self.event_list = elist
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def add_family_handle(self,family_handle):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds the specified Family instance to the list of
|
|
|
|
families/marriages/partnerships in which the person is a
|
|
|
|
parent or spouse"""
|
2004-03-30 10:20:24 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
self.family_list.append(family_handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_preferred_family_handle(self,family):
|
2004-02-14 11:10:30 +05:30
|
|
|
if family in self.family_list:
|
|
|
|
self.family_list.remove(family)
|
|
|
|
self.family_list = [family] + self.family_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_family_handle_list(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of Family instances in which the
|
|
|
|
person is a parent or spouse"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.family_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def clear_family_handle_list(self) :
|
2004-02-14 11:10:30 +05:30
|
|
|
self.family_list = []
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def remove_family_handle(self,family):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""removes the specified Family instance from the list
|
|
|
|
of marriages/partnerships"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if family in self.family_list:
|
|
|
|
self.family_list.remove(family)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_address(self,address):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds the Address instance to the list of addresses"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.address_list.append(address)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def remove_address(self,address):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""removes the Address instance from the list of addresses"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if address in self.address_list:
|
|
|
|
self.address_list.remove(address)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_address_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of addresses"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.address_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def set_address_list(self,alist):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the address list to the specified list"""
|
2004-05-14 04:15:51 +05:30
|
|
|
self.address_list = alist
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_attribute(self,attribute):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds an Attribute instance to the attribute list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.attribute_list.append(attribute)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def remove_attribute(self,attribute):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""removes the specified Attribute instance from the attribute list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if attribute in self.attribute_list:
|
|
|
|
self.attribute_list.remove(attribute)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_attribute_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the attribute list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.attribute_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_attribute_list(self,list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the attribute list to the specified list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.attribute_list = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_parent_family_handle_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of alternate Family instances, in which the Person
|
|
|
|
is a child of the family, but not a natural child of both parents"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.parent_family_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def add_parent_family_handle(self,family,mrel,frel):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds a Family to the alternate family list, indicating the
|
|
|
|
relationship to the mother (mrel) and the father (frel)"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.parent_family_list.append((family,mrel,frel))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def clear_parent_family_handle_list(self):
|
2004-02-14 11:10:30 +05:30
|
|
|
self.parent_family_list = []
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def remove_parent_family_handle(self,family):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""removes a Family instance from the alternate family list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
for f in self.parent_family_list[:]:
|
2002-10-20 19:55:16 +05:30
|
|
|
if f[0] == family:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.parent_family_list.remove(f)
|
2002-10-20 19:55:16 +05:30
|
|
|
return f
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def change_parent_family_handle(self,family,mrel,frel):
|
2003-06-17 09:45:58 +05:30
|
|
|
"""removes a Family instance from the alternate family list"""
|
|
|
|
index = 0
|
2004-02-14 11:10:30 +05:30
|
|
|
for f in self.parent_family_list[:]:
|
2003-06-17 09:45:58 +05:30
|
|
|
if f[0] == family:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.parent_family_list[index] = (family,mrel,frel)
|
2003-06-17 09:45:58 +05:30
|
|
|
index += 1
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def has_family(self,family):
|
2004-02-14 11:10:30 +05:30
|
|
|
for f in self.parent_family_list:
|
2002-10-20 19:55:16 +05:30
|
|
|
if f[0] == family:
|
|
|
|
return f
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_main_parent_family_handle(self,family):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the main Family of the Person, the Family in which the
|
|
|
|
Person is a natural born child"""
|
2004-07-28 07:59:07 +05:30
|
|
|
f = self.remove_parent_family_handle(family)
|
2002-10-20 19:55:16 +05:30
|
|
|
if f:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.parent_family_list = [f] + self.parent_family_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_main_parents_family_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the main Family of the Person, the Family in which the
|
|
|
|
Person is a natural born child"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if len(self.parent_family_list) == 0:
|
2002-10-20 19:55:16 +05:30
|
|
|
return None
|
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.parent_family_list[0][0]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_main_parents_family_handleRel(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the main Family of the Person, the Family in which the
|
|
|
|
Person is a natural born child"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if len(self.parent_family_list) == 0:
|
2002-10-20 19:55:16 +05:30
|
|
|
return (None,None,None)
|
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.parent_family_list[0]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_ancestor(self, value):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""set ancestor flag and recurse"""
|
|
|
|
self.ancestor = value
|
2004-02-14 11:10:30 +05:30
|
|
|
# for (fam,m,f) in self.parent_family_list:
|
|
|
|
# family
|
|
|
|
# if family.Father:
|
|
|
|
# # Don't waste time if the ancestor is already flagged.
|
|
|
|
# # This will happen when cousins marry.
|
|
|
|
# if not family.Father.get_ancestor():
|
|
|
|
# family.Father.set_ancestor(value)
|
2004-07-28 07:59:07 +05:30
|
|
|
# if family.get_mother_handle():
|
2004-02-14 11:10:30 +05:30
|
|
|
# if not family.Mother.get_ancestor():
|
|
|
|
# family.Mother.set_ancestor(value)
|
|
|
|
|
|
|
|
def get_ancestor(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
return self.ancestor
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_lds_baptism(self,ord):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.lds_bapt = ord
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_lds_baptism(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
return self.lds_bapt
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_lds_endowment(self,ord):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.lds_endow = ord
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_lds_endowment(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
return self.lds_endow
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_lds_sealing(self,ord):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.lds_seal = ord
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_lds_sealing(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
return self.lds_seal
|
|
|
|
|
2004-03-11 09:54:03 +05:30
|
|
|
def probably_alive(self,db):
|
2003-07-21 16:50:31 +05:30
|
|
|
"""Returns true if the person may be alive."""
|
2004-07-28 07:59:07 +05:30
|
|
|
if self.death_handle:
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
2004-07-28 07:59:07 +05:30
|
|
|
if self.birth_handle:
|
|
|
|
birth = db.find_event_from_handle(self.birth_handle)
|
2004-03-11 09:54:03 +05:30
|
|
|
if birth.get_date() != "":
|
|
|
|
return not_too_old(birth.get_date_object().get_start_date())
|
2003-07-21 16:50:31 +05:30
|
|
|
|
|
|
|
# Neither birth nor death events are available. Try looking
|
|
|
|
# for descendants that were born more than a lifespan ago.
|
|
|
|
|
|
|
|
min_generation = 13
|
2003-07-22 16:22:55 +05:30
|
|
|
max_generation = 60
|
|
|
|
max_age_difference = 60
|
2003-07-21 16:50:31 +05:30
|
|
|
def descendants_too_old (person, years):
|
2004-07-28 07:59:07 +05:30
|
|
|
for family_handle in person.get_family_handle_list():
|
|
|
|
family = db.find_family_from_handle(family_handle)
|
|
|
|
for child_handle in family.get_child_handle_list():
|
|
|
|
child = db.find_person_from_handle(child_handle)
|
|
|
|
if child.birth_handle:
|
|
|
|
child_birth = db.find_event_from_handle(child.birth_handle)
|
|
|
|
if child_birth.get_date() != "":
|
|
|
|
d = SingleDate (child_birth.get_date_object().
|
|
|
|
get_start_date())
|
|
|
|
d.set_year (d.get_year() - years)
|
2004-03-11 09:54:03 +05:30
|
|
|
if not not_too_old (d):
|
|
|
|
return 1
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
if child.death_handle:
|
|
|
|
child_death = db.find_event_from_handle(child.death_handle)
|
|
|
|
if child_death.get_date() != "":
|
|
|
|
d = SingleDate (child_death.get_date_object().
|
|
|
|
get_start_date())
|
2004-03-11 09:54:03 +05:30
|
|
|
if not not_too_old (d):
|
|
|
|
return 1
|
2003-07-21 16:50:31 +05:30
|
|
|
|
|
|
|
if descendants_too_old (child, years + min_generation):
|
|
|
|
return 1
|
|
|
|
|
|
|
|
if descendants_too_old (self, min_generation):
|
|
|
|
return 0
|
|
|
|
|
|
|
|
# What about their parents?
|
2003-07-22 16:22:55 +05:30
|
|
|
def parents_too_old (person, age_difference):
|
2004-07-28 07:59:07 +05:30
|
|
|
family_handle = person.get_main_parents_family_handle()
|
|
|
|
if family_handle:
|
|
|
|
family = db.find_family_from_handle(family_handle)
|
|
|
|
for parent_id in [family.get_father_handle(), family.get_mother_handle()]:
|
2004-03-11 09:54:03 +05:30
|
|
|
if not parent_id:
|
2003-07-22 16:22:55 +05:30
|
|
|
continue
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
parent = db.find_person_from_handle(parent_id)
|
|
|
|
if parent.birth_handle:
|
|
|
|
parent_birth = db.find_event_from_handle(parent.birth_handle)
|
|
|
|
if parent_birth.get_date():
|
|
|
|
d = SingleDate (parent_birth.get_date_object().
|
|
|
|
get_start_date())
|
|
|
|
d.set_year (d.get_year() + max_generation +
|
2003-07-22 16:22:55 +05:30
|
|
|
age_difference)
|
2004-03-11 09:54:03 +05:30
|
|
|
if not not_too_old (d):
|
|
|
|
return 1
|
2003-07-21 16:50:31 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
if parent.death_handle:
|
|
|
|
parent_death = db.find_event_from_handle(parent.death_handle)
|
|
|
|
if parent_death.get_date() != "":
|
|
|
|
d = SingleDate (parent_death.get_date_object().
|
|
|
|
get_start_date())
|
|
|
|
d.set_year (d.get_year() + age_difference)
|
2004-03-11 09:54:03 +05:30
|
|
|
if not not_too_old (d):
|
|
|
|
return 1
|
2003-07-22 16:22:55 +05:30
|
|
|
|
|
|
|
if parents_too_old (self, 0):
|
|
|
|
return 0
|
|
|
|
|
|
|
|
# As a last resort, trying seeing if their spouse's age gives
|
|
|
|
# any clue.
|
2004-07-28 07:59:07 +05:30
|
|
|
for family_handle in self.get_family_handle_list():
|
|
|
|
family = db.find_family_from_handle(family_handle)
|
|
|
|
for spouse_id in [family.get_father_handle(), family.get_mother_handle()]:
|
2004-03-11 09:54:03 +05:30
|
|
|
if not spouse_id:
|
2003-07-22 16:22:55 +05:30
|
|
|
continue
|
2004-07-28 07:59:07 +05:30
|
|
|
if spouse_id == self.handle:
|
2003-07-22 16:22:55 +05:30
|
|
|
continue
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse = db.find_person_from_handle(spouse_id)
|
|
|
|
if spouse.birth_handle:
|
|
|
|
spouse_birth = db.find_event_from_handle(spouse.birth_handle)
|
|
|
|
if spouse_birth.get_date() != "":
|
2004-05-13 23:42:37 +05:30
|
|
|
d = SingleDate (spouse_birth.get_date_object().
|
2004-07-28 07:59:07 +05:30
|
|
|
get_start_date())
|
|
|
|
d.set_year (d.get_year() + max_age_difference)
|
2004-03-11 09:54:03 +05:30
|
|
|
if not not_too_old (d):
|
|
|
|
return 0
|
2003-07-21 16:50:31 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
if spouse.death_handle:
|
|
|
|
spouse_death = db.find_event_from_handle(spouse.death_handle)
|
|
|
|
if spouse_death.get_date() != "":
|
2004-05-13 23:42:37 +05:30
|
|
|
d = SingleDate (spouse_birth.get_date_object().
|
2004-07-28 07:59:07 +05:30
|
|
|
get_start_date())
|
|
|
|
d.set_year (d.get_year() - min_generation)
|
2004-03-11 09:54:03 +05:30
|
|
|
if not not_too_old (d):
|
|
|
|
return 0
|
2003-07-21 16:50:31 +05:30
|
|
|
|
2003-07-22 16:22:55 +05:30
|
|
|
if parents_too_old (spouse, max_age_difference):
|
|
|
|
return 0
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
return 1
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Event
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class Event(DataObj):
|
|
|
|
"""Event record, recording the event type, description, place, and date
|
|
|
|
of a particular event"""
|
2003-02-24 10:21:57 +05:30
|
|
|
|
|
|
|
NAME = 0
|
|
|
|
ID = 1
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""creates a new Event instance, copying from the source if present"""
|
|
|
|
|
|
|
|
DataObj.__init__(self,source)
|
|
|
|
|
|
|
|
if source:
|
|
|
|
self.place = source.place
|
|
|
|
self.date = Date(source.date)
|
|
|
|
self.description = source.description
|
|
|
|
self.name = source.name
|
|
|
|
self.cause = source.cause
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = source.handle
|
2004-06-03 11:05:30 +05:30
|
|
|
self.media_list = [MediaRef(media_id) for media_id in source.media_list]
|
2003-06-09 23:34:04 +05:30
|
|
|
try:
|
|
|
|
if source.witness:
|
2003-06-07 19:41:52 +05:30
|
|
|
self.witness = source.witness[:]
|
2003-06-09 23:34:04 +05:30
|
|
|
else:
|
2003-06-07 19:41:52 +05:30
|
|
|
self.witness = None
|
2003-06-09 23:34:04 +05:30
|
|
|
except:
|
2003-02-24 10:21:57 +05:30
|
|
|
self.witness = None
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.place = u''
|
2002-10-20 19:55:16 +05:30
|
|
|
self.date = None
|
|
|
|
self.description = ""
|
|
|
|
self.name = ""
|
|
|
|
self.cause = ""
|
2003-02-24 10:21:57 +05:30
|
|
|
self.witness = None
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = None
|
2004-06-03 11:05:30 +05:30
|
|
|
self.media_list = []
|
2004-02-19 10:35:43 +05:30
|
|
|
|
|
|
|
def clone(self,source):
|
|
|
|
self.place = source.place
|
|
|
|
self.date = Date(source.date)
|
|
|
|
self.description = source.description
|
|
|
|
self.name = source.name
|
|
|
|
self.cause = source.cause
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = source.handle
|
2004-02-21 11:41:59 +05:30
|
|
|
self.private = source.private
|
|
|
|
self.source_list = source.source_list[:]
|
|
|
|
self.note = source.note
|
2004-06-03 11:05:30 +05:30
|
|
|
self.media_list = [MediaRef(media_id) for media_id in source.media_list]
|
2004-02-19 10:35:43 +05:30
|
|
|
try:
|
|
|
|
if source.witness:
|
|
|
|
self.witness = source.witness[:]
|
|
|
|
else:
|
|
|
|
self.witness = None
|
|
|
|
except:
|
|
|
|
self.witness = None
|
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def serialize(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
return (self.handle, self.name, self.date, self.description,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.place, self.cause, self.private, self.source_list,
|
2004-06-13 11:48:20 +05:30
|
|
|
self.note, self.witness, self.media_list)
|
2004-02-21 11:41:59 +05:30
|
|
|
|
|
|
|
def unserialize(self,data):
|
2004-07-28 07:59:07 +05:30
|
|
|
(self.handle, self.name, self.date, self.description,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.place, self.cause, self.private, self.source_list,
|
2004-06-13 11:48:20 +05:30
|
|
|
self.note, self.witness, self.media_list) = data
|
2004-02-21 11:41:59 +05:30
|
|
|
|
2004-06-03 11:05:30 +05:30
|
|
|
def add_media_reference(self,media_id):
|
|
|
|
"""Adds a Photo object to the Event object's image list"""
|
|
|
|
self.media_list.append(media_id)
|
|
|
|
|
|
|
|
def get_media_list(self):
|
|
|
|
"""Returns the list of Photo objects"""
|
|
|
|
return self.media_list
|
|
|
|
|
|
|
|
def set_media_list(self,mlist):
|
|
|
|
"""Sets the list of Photo objects"""
|
|
|
|
self.media_list = mlist
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_handle(self,handle):
|
|
|
|
"""Sets the database handle for the place object"""
|
|
|
|
self.handle = handle
|
2004-02-19 10:35:43 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_handle(self):
|
|
|
|
"""Returns the database handle for the place object"""
|
|
|
|
return self.handle
|
2003-02-24 10:21:57 +05:30
|
|
|
|
|
|
|
def get_witness_list(self):
|
|
|
|
return self.witness
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-02-24 10:21:57 +05:30
|
|
|
def set_witness_list(self,list):
|
|
|
|
if list:
|
|
|
|
self.witness = list[:]
|
|
|
|
else:
|
|
|
|
self.witness = None
|
|
|
|
|
|
|
|
def add_witness(self,value):
|
|
|
|
if self.witness:
|
|
|
|
self.witness.append(value)
|
|
|
|
else:
|
|
|
|
self.witness = [value]
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def is_empty(self):
|
2004-02-14 11:10:30 +05:30
|
|
|
date = self.get_date_object()
|
2004-07-28 07:59:07 +05:30
|
|
|
place = self.get_place_handle()
|
2002-10-20 19:55:16 +05:30
|
|
|
description = self.description
|
2003-07-10 16:56:48 +05:30
|
|
|
cause = self.cause
|
2002-10-20 19:55:16 +05:30
|
|
|
name = self.name
|
|
|
|
if (not name or name == "Birth" or name == "Death") and \
|
2004-02-14 11:10:30 +05:30
|
|
|
date.is_empty() and not place and not description and not cause:
|
2002-10-20 19:55:16 +05:30
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def set(self,name,date,place,description):
|
|
|
|
"""sets the name, date, place, and description of an Event instance"""
|
|
|
|
self.name = name
|
|
|
|
self.place = place
|
|
|
|
self.description = description
|
2004-02-14 11:10:30 +05:30
|
|
|
self.set_date(date)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def are_equal(self,other):
|
|
|
|
"""returns 1 if the specified event is the same as the instance"""
|
|
|
|
if other == None:
|
|
|
|
return 0
|
|
|
|
if (self.name != other.name or self.place != other.place or
|
|
|
|
self.description != other.description or self.cause != other.cause or
|
|
|
|
self.private != other.private or
|
2004-02-14 11:10:30 +05:30
|
|
|
compare_dates(self.get_date_object(),other.get_date_object()) or
|
|
|
|
len(self.get_source_references()) != len(other.get_source_references())):
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
|
|
|
|
|
|
|
index = 0
|
2004-02-14 11:10:30 +05:30
|
|
|
olist = other.get_source_references()
|
|
|
|
for a in self.get_source_references():
|
2002-10-20 19:55:16 +05:30
|
|
|
if not a.are_equal(olist[index]):
|
|
|
|
return 0
|
|
|
|
index = index + 1
|
|
|
|
|
2004-02-21 12:10:44 +05:30
|
|
|
witness_list = self.get_witness_list()
|
|
|
|
other_list = other.get_witness_list()
|
|
|
|
if (not witness_list) and (not other_list):
|
|
|
|
return 1
|
|
|
|
elif not (witness_list and other_list):
|
|
|
|
return 0
|
|
|
|
for a in witness_list:
|
|
|
|
if a in other_list:
|
|
|
|
other_list.remove(a)
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
if other_list:
|
|
|
|
return 0
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
return 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_name(self,name):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the name of the Event"""
|
|
|
|
self.name = name
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_name(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the name of the Event"""
|
|
|
|
return self.name
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_place_handle(self,place):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Place instance of the Event"""
|
|
|
|
self.place = place
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_place_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Place instance of the Event"""
|
|
|
|
return self.place
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_cause(self,cause):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the cause of the Event"""
|
|
|
|
self.cause = cause
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_cause(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the cause of the Event"""
|
|
|
|
return self.cause
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_description(self,description):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the description of the Event instance"""
|
|
|
|
self.description = description
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_description(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the description of the Event instance"""
|
|
|
|
return self.description
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_date(self, date) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""attempts to sets the date of the Event instance"""
|
|
|
|
if not self.date:
|
|
|
|
self.date = Date()
|
|
|
|
self.date.set(date)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_date(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a string representation of the date of the Event instance"""
|
|
|
|
if self.date:
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
return ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_preferred_date(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a string representation of the date of the Event instance"""
|
|
|
|
if self.date:
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
return ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_quote_date(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a string representation of the date of the Event instance,
|
|
|
|
enclosing the results in quotes if it is not a valid date"""
|
|
|
|
if self.date:
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.date.get_quote_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
return ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_date_object(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Date object associated with the Event"""
|
|
|
|
if not self.date:
|
|
|
|
self.date = Date()
|
|
|
|
return self.date
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_date_object(self,date):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Date object associated with the Event"""
|
|
|
|
self.date = date
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Witness
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-11-02 01:25:30 +05:30
|
|
|
class Witness:
|
2003-02-24 10:21:57 +05:30
|
|
|
def __init__(self,type=Event.NAME,val="",comment=""):
|
|
|
|
self.set_type(type)
|
|
|
|
self.set_value(val)
|
|
|
|
self.set_comment(comment)
|
|
|
|
|
|
|
|
def set_type(self,type):
|
|
|
|
self.type = type
|
|
|
|
|
|
|
|
def get_type(self):
|
|
|
|
return self.type
|
|
|
|
|
|
|
|
def set_value(self,val):
|
|
|
|
self.val = val
|
|
|
|
|
|
|
|
def get_value(self):
|
|
|
|
return self.val
|
|
|
|
|
|
|
|
def set_comment(self,comment):
|
|
|
|
self.comment = comment
|
|
|
|
|
|
|
|
def get_comment(self):
|
|
|
|
return self.comment
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Family
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-10-29 10:34:43 +05:30
|
|
|
class Family(SourceNote):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Represents a family unit in the gramps database"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""creates a new Family instance"""
|
2003-10-29 10:34:43 +05:30
|
|
|
SourceNote.__init__(self)
|
2004-07-28 07:59:07 +05:30
|
|
|
self.father_handle = None
|
|
|
|
self.mother_handle = None
|
2004-02-14 11:10:30 +05:30
|
|
|
self.child_list = []
|
2004-07-31 00:26:49 +05:30
|
|
|
self.type = const.FAMILY_MARRIED
|
2004-02-14 11:10:30 +05:30
|
|
|
self.event_list = []
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = ""
|
2004-02-21 11:41:59 +05:30
|
|
|
self.media_list = []
|
2004-02-14 11:10:30 +05:30
|
|
|
self.attribute_list = []
|
2002-10-20 19:55:16 +05:30
|
|
|
self.lds_seal = None
|
2003-10-29 10:34:43 +05:30
|
|
|
self.complete = 0
|
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
|
|
|
|
def serialize(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
return (self.handle, self.father_handle, self.mother_handle,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.child_list, self.type, self.event_list,
|
|
|
|
self.media_list, self.attribute_list, self.lds_seal,
|
|
|
|
self.complete,
|
|
|
|
self.source_list,
|
|
|
|
self.note)
|
|
|
|
|
|
|
|
def unserialize(self, data):
|
2004-07-28 07:59:07 +05:30
|
|
|
(self.handle, self.father_handle, self.mother_handle,
|
2004-02-21 11:41:59 +05:30
|
|
|
self.child_list, self.type, self.event_list,
|
|
|
|
self.media_list, self.attribute_list, self.lds_seal,
|
|
|
|
self.complete,
|
|
|
|
self.source_list,
|
|
|
|
self.note) = data
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_complete(self,val):
|
2003-10-29 10:34:43 +05:30
|
|
|
self.complete = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_complete(self):
|
2003-10-29 10:34:43 +05:30
|
|
|
return self.complete
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_lds_sealing(self,ord):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.lds_seal = ord
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_lds_sealing(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
return self.lds_seal
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def add_attribute(self,attribute) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds an Attribute instance to the attribute list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.attribute_list.append(attribute)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def remove_attribute(self,attribute):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""removes the specified Attribute instance from the attribute list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if attribute in self.attribute_list:
|
|
|
|
self.attribute_list.remove(attribute)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_attribute_list(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the attribute list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.attribute_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_attribute_list(self,list) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the attribute list to the specified list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.attribute_list = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_handle(self,handle) :
|
|
|
|
"""sets the database handle for the Family"""
|
|
|
|
self.handle = str(handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_handle(self) :
|
|
|
|
"""returns the database handle for the Family"""
|
|
|
|
return unicode(self.handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_relationship(self,type):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""assigns a string indicating the relationship between the
|
|
|
|
father and the mother"""
|
|
|
|
self.type = type
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_relationship(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns a string indicating the relationship between the
|
|
|
|
father and the mother"""
|
|
|
|
return self.type
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_father_handle(self,person_handle):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the father of the Family to the specfied Person"""
|
2004-02-16 02:19:34 +05:30
|
|
|
# update = self.some_child_is_ancestor()
|
2004-07-28 07:59:07 +05:30
|
|
|
# if update and father_handle:
|
|
|
|
# father_handle.set_ancestor(0)
|
|
|
|
self.father_handle = person_handle
|
|
|
|
# if update and father_handle:
|
|
|
|
# father_handle.set_ancestor(1)
|
2004-02-14 11:10:30 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_father_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the father of the Family"""
|
2004-07-28 07:59:07 +05:30
|
|
|
return self.father_handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_mother_handle(self,person):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the mother of the Family to the specfied Person"""
|
2004-02-16 02:19:34 +05:30
|
|
|
# update = self.some_child_is_ancestor()
|
2004-07-28 07:59:07 +05:30
|
|
|
# if self.mother_handle and update:
|
|
|
|
# self.mother_handle.set_ancestor(0)
|
|
|
|
self.mother_handle = person
|
|
|
|
# if update and self.mother_handle:
|
|
|
|
# self.mother_handle.set_ancestor(1)
|
2004-02-14 11:10:30 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_mother_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the mother of the Family"""
|
2004-07-28 07:59:07 +05:30
|
|
|
return self.mother_handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def add_child_handle(self,person):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds the specfied Person as a child of the Family, adding it
|
|
|
|
to the child list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if person not in self.child_list:
|
|
|
|
self.child_list.append(person)
|
|
|
|
# if person.get_ancestor():
|
2004-07-28 07:59:07 +05:30
|
|
|
# if father_handle:
|
|
|
|
# father_handle.set_ancestor(1)
|
|
|
|
# if self.mother_handle:
|
|
|
|
# self.mother_handle.set_ancestor(1)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def remove_child_handle(self,person):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""removes the specified Person from the child list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
if person in self.child_list:
|
|
|
|
self.child_list.remove(person)
|
|
|
|
# if person.get_ancestor():
|
2004-07-28 07:59:07 +05:30
|
|
|
# if father_handle:
|
|
|
|
# father_handle.set_ancestor(0)
|
|
|
|
# if self.mother_handle:
|
|
|
|
# self.mother_handle.set_ancestor(0)
|
2004-02-14 11:10:30 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_child_handle_list(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of children"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.child_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_child_handle_list(self, list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the list of children"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.child_list = list[:]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-19 10:35:43 +05:30
|
|
|
# def get_marriage(self):
|
|
|
|
# """returns the marriage event of the Family. Obsolete"""
|
|
|
|
# for e in self.event_list:
|
|
|
|
# if e.get_name() == "Marriage":
|
|
|
|
# return e
|
|
|
|
# return None
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_divorce(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the divorce event of the Family. Obsolete"""
|
2004-02-14 11:10:30 +05:30
|
|
|
for e in self.event_list:
|
|
|
|
if e.get_name() == "Divorce":
|
2002-10-20 19:55:16 +05:30
|
|
|
return e
|
|
|
|
return None
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def add_event_handle(self,event_handle):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""adds an Event to the event list"""
|
2004-07-28 07:59:07 +05:30
|
|
|
self.event_list.append(event_handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_event_list(self) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the list of Event instances"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.event_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_event_list(self,list) :
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the event list to the passed list"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.event_list = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-22 10:27:06 +05:30
|
|
|
def add_media_reference(self,media_id):
|
2004-02-21 11:41:59 +05:30
|
|
|
"""Adds a MediaObject object to the Family instance's image list"""
|
2004-02-22 10:27:06 +05:30
|
|
|
self.media_list.append(media_id)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def get_media_list(self):
|
|
|
|
"""Returns the list of MediaObject objects"""
|
|
|
|
return self.media_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def set_media_list(self,list):
|
|
|
|
"""Sets the list of MediaObject objects"""
|
|
|
|
self.media_list = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def some_child_is_ancestor(self):
|
|
|
|
for child in self.child_list:
|
|
|
|
if (child.get_ancestor()):
|
2002-10-20 19:55:16 +05:30
|
|
|
return 1
|
|
|
|
return None
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Source
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-11-02 01:25:30 +05:30
|
|
|
class Source:
|
2002-10-20 19:55:16 +05:30
|
|
|
"""A record of a source of information"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""creates a new Source instance"""
|
|
|
|
self.title = ""
|
|
|
|
self.author = ""
|
|
|
|
self.pubinfo = ""
|
|
|
|
self.note = Note()
|
2004-02-21 11:41:59 +05:30
|
|
|
self.media_list = []
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = ""
|
2003-12-08 07:53:53 +05:30
|
|
|
self.abbrev = ""
|
2004-02-21 11:41:59 +05:30
|
|
|
|
|
|
|
def serialize(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
return (self.handle,self.title,self.author,self.pubinfo,
|
|
|
|
self.note,self.media_list,self.abbrev)
|
2004-02-21 11:41:59 +05:30
|
|
|
|
|
|
|
def unserialize(self,data):
|
2004-07-28 07:59:07 +05:30
|
|
|
(self.handle,self.title,self.author,self.pubinfo,
|
|
|
|
self.note,self.media_list,self.abbrev) = data
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_display_info(self):
|
2004-07-28 07:59:07 +05:30
|
|
|
return [self.title,self.handle,self.author,self.title.upper(),self.author.upper()]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_handle(self,handle):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the gramps' ID for the Source instance"""
|
2004-07-28 07:59:07 +05:30
|
|
|
self.handle = str(handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the gramps' ID of the Source instance"""
|
2004-07-28 07:59:07 +05:30
|
|
|
return self.handle
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-22 10:27:06 +05:30
|
|
|
def add_media_reference(self,media_id):
|
2004-02-21 11:41:59 +05:30
|
|
|
"""Adds a MediaObject object to the Source instance's image list"""
|
2004-02-22 10:27:06 +05:30
|
|
|
self.media_list.append(media_id)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def get_media_list(self):
|
|
|
|
"""Returns the list of MediaObject objects"""
|
|
|
|
return self.media_list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
def set_media_list(self,list):
|
|
|
|
"""Sets the list of MediaObject objects"""
|
|
|
|
self.media_list = list
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_title(self,title):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the title of the Source"""
|
|
|
|
self.title = title
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_title(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the title of the Source"""
|
|
|
|
return self.title
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_note(self,text):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the text of the note attached to the Source"""
|
|
|
|
self.note.set(text)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_note(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the text of the note attached to the Source"""
|
|
|
|
return self.note.get()
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_note_format(self,val):
|
2003-12-10 19:51:48 +05:30
|
|
|
"""Set the note's format to the given value"""
|
2004-02-14 11:10:30 +05:30
|
|
|
self.note.set_format(val)
|
2003-12-10 19:51:48 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_note_format(self):
|
2003-12-10 19:51:48 +05:30
|
|
|
"""Return the current note's format"""
|
2004-02-14 11:10:30 +05:30
|
|
|
return self.note.get_format()
|
2003-12-10 19:51:48 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_note_object(self,obj):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Note instance attached to the Source"""
|
|
|
|
self.note = obj
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_note_object(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Note instance attached to the Source"""
|
|
|
|
return self.note
|
|
|
|
|
|
|
|
def unique_note(self):
|
|
|
|
"""Creates a unique instance of the current note"""
|
|
|
|
self.note = Note(self.note.get())
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_author(self,author):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the author of the Source"""
|
|
|
|
self.author = author
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_author(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the author of the Source"""
|
|
|
|
return self.author
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_publication_info(self,text):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the publication information of the Source"""
|
|
|
|
self.pubinfo = text
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_publication_info(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the publication information of the Source"""
|
|
|
|
return self.pubinfo
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_abbreviation(self,abbrev):
|
2003-12-08 07:53:53 +05:30
|
|
|
"""sets the title abbreviation of the Source"""
|
|
|
|
self.abbrev = abbrev
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_abbreviation(self):
|
2003-12-08 07:53:53 +05:30
|
|
|
"""returns the title abbreviation of the Source"""
|
|
|
|
return self.abbrev
|
|
|
|
|
2003-11-02 01:25:30 +05:30
|
|
|
class SourceRef:
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Source reference, containing detailed information about how a
|
|
|
|
referenced source relates to it"""
|
|
|
|
|
|
|
|
def __init__(self,source=None):
|
|
|
|
"""creates a new SourceRef, copying from the source if present"""
|
|
|
|
if source:
|
|
|
|
self.confidence = source.confidence
|
|
|
|
self.ref = source.ref
|
|
|
|
self.page = source.page
|
|
|
|
self.date = Date(source.date)
|
|
|
|
self.comments = Note(source.comments.get())
|
|
|
|
self.text = source.text
|
|
|
|
else:
|
|
|
|
self.confidence = CONF_NORMAL
|
|
|
|
self.ref = None
|
|
|
|
self.page = ""
|
|
|
|
self.date = Date()
|
|
|
|
self.comments = Note()
|
|
|
|
self.text = ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_confidence_level(self,val):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Sets the confidence level"""
|
|
|
|
self.confidence = val
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_confidence_level(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Returns the confidence level"""
|
|
|
|
return self.confidence
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def set_base_handle(self,ref):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Source instance to which the SourceRef refers"""
|
|
|
|
self.ref = ref
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_base_handle(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Source instance to which the SourceRef refers"""
|
|
|
|
return self.ref
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_date(self,date):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the Date instance of the SourceRef"""
|
|
|
|
self.date = date
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_date(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the Date instance of the SourceRef"""
|
|
|
|
return self.date
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_page(self,page):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the page indicator of the SourceRef"""
|
|
|
|
self.page = page
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_page(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""gets the page indicator of the SourceRef"""
|
|
|
|
return self.page
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_text(self,text):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the text related to the SourceRef"""
|
|
|
|
self.text = text
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_text(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the text related to the SourceRef"""
|
|
|
|
return self.text
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_note_object(self,note):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Change the Note instance to obj"""
|
|
|
|
self.comments = note
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def set_comments(self,comments):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""sets the comments about the SourceRef"""
|
|
|
|
self.comments.set(comments)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
def get_comments(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""returns the comments about the SourceRef"""
|
|
|
|
return self.comments.get()
|
|
|
|
|
|
|
|
def are_equal(self,other):
|
|
|
|
"""returns 1 if the passed SourceRef is equal to the current"""
|
|
|
|
if self.ref and other.ref:
|
|
|
|
if self.page != other.page:
|
|
|
|
return 0
|
|
|
|
if compare_dates(self.date,other.date) != 0:
|
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.get_text() != other.get_text():
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.get_comments() != other.get_comments():
|
2002-10-20 19:55:16 +05:30
|
|
|
return 0
|
|
|
|
if self.confidence != other.confidence:
|
|
|
|
return 0
|
|
|
|
return 1
|
|
|
|
elif not self.ref and not other.ref:
|
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def unique_note(self):
|
|
|
|
"""Creates a unique instance of the current note"""
|
|
|
|
self.comments = Note(self.comments.get())
|
|
|
|
|
2004-03-30 10:20:24 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GenderStats
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-06-24 19:46:47 +05:30
|
|
|
class GenderStats:
|
|
|
|
def __init__ (self):
|
|
|
|
self.stats = {}
|
|
|
|
|
|
|
|
def _get_key (self, person):
|
2004-07-28 07:59:07 +05:30
|
|
|
name = person.get_primary_name().get_first_name()
|
2003-06-24 19:46:47 +05:30
|
|
|
return self._get_key_from_name (name)
|
|
|
|
|
|
|
|
def _get_key_from_name (self, name):
|
|
|
|
return name.split (' ')[0].replace ('?', '')
|
|
|
|
|
|
|
|
def name_stats (self, name):
|
|
|
|
if self.stats.has_key (name):
|
|
|
|
return self.stats[name]
|
|
|
|
return (0, 0, 0)
|
|
|
|
|
|
|
|
def count_person (self, person, db, undo = 0):
|
|
|
|
# Let the Person do their own counting later
|
|
|
|
person.db = db
|
|
|
|
|
|
|
|
name = self._get_key (person)
|
|
|
|
if not name:
|
|
|
|
return
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
gender = person.get_gender()
|
2003-06-24 19:46:47 +05:30
|
|
|
(male, female, unknown) = self.name_stats (name)
|
|
|
|
if not undo:
|
|
|
|
increment = 1
|
|
|
|
else:
|
|
|
|
increment = -1
|
|
|
|
|
|
|
|
if gender == Person.male:
|
|
|
|
male += increment
|
|
|
|
elif gender == Person.female:
|
|
|
|
female += increment
|
|
|
|
elif gender == Person.unknown:
|
|
|
|
unknown += increment
|
|
|
|
|
|
|
|
self.stats[name] = (male, female, unknown)
|
|
|
|
return
|
|
|
|
|
|
|
|
def uncount_person (self, person):
|
|
|
|
return self.count_person (person, None, undo = 1)
|
|
|
|
|
|
|
|
def guess_gender (self, name):
|
|
|
|
name = self._get_key_from_name (name)
|
|
|
|
if not name or not self.stats.has_key (name):
|
|
|
|
return Person.unknown
|
|
|
|
|
|
|
|
(male, female, unknown) = self.stats[name]
|
|
|
|
if unknown == 0:
|
|
|
|
if male and not female:
|
|
|
|
return Person.male
|
|
|
|
if female and not male:
|
|
|
|
return Person.female
|
|
|
|
|
|
|
|
if male > (2 * female):
|
|
|
|
return Person.male
|
|
|
|
|
|
|
|
if female > (2 * male):
|
|
|
|
return Person.female
|
|
|
|
|
|
|
|
return Person.unknown
|
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
|
2004-07-31 00:26:49 +05:30
|
|
|
from bsddb import dbshelve, db
|
2004-02-25 08:55:57 +05:30
|
|
|
|
|
|
|
def find_surname(key,data):
|
2004-06-27 08:40:06 +05:30
|
|
|
return str(data[3].get_surname())
|
|
|
|
|
|
|
|
def find_idmap(key,data):
|
|
|
|
return str(data[1])
|
2004-02-25 08:55:57 +05:30
|
|
|
|
2004-05-12 09:28:14 +05:30
|
|
|
def find_eventname(key,data):
|
|
|
|
return str(data[1])
|