cd5518015b
* src/Utils.py: Remove obsolete code. * src/DisplayTabs.py (EventRefModel.column_role): Adapt to new types. * src/PeopleModel.py: Adapt to new types. * src/plugins/TestcaseGenerator.py: Adapt to new types. * src/RelLib/Makefile.am: Ship new files. * src/RelLib/_EventRef.py: Adapt to new types. * src/RelLib/_PrimaryObject.py: Adapt to new types. * src/RelLib/_EventRoleType.py: Add new module. * src/RelLib/_RepoRef.py: Adapt to new types. * src/RelLib/_MarkerType.py: Add new module. * src/RelLib/_Family.py: Adapt to new types. * src/RelLib/_Person.py: Adapt to new types. * src/RelLib/_SourceMediaType.py: Add new module. * src/RelLib/__init__.py: Expose new modules. * src/Editors/_EditPerson.py: Use new type. * src/GrampsDb/_GrampsBSDDB.py (gramps_upgrade_9): Adapt to new types. * src/GrampsDb/_ConstXML.py: Comment out obsolete code. * src/GrampsDb/_ReadXML.py: Adapt to new types. * src/GrampsDb/_GrampsDbBase.py (commit_person): Properly use marker. * src/GrampsDb/_ReadGedcom.py: Adapt to new types. * src/DataViews/_FamilyView.py (write_relationship): Use new type. * src/DataViews/_PedigreeView.py (format_relation): Use new type. svn: r6372
118 lines
3.5 KiB
Python
118 lines
3.5 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
# $Id$
|
|
|
|
"""
|
|
Repository Reference class for GRAMPS
|
|
"""
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from _BaseObject import BaseObject
|
|
from _NoteBase import NoteBase
|
|
from _RefBase import RefBase
|
|
from _SourceMediaType import SourceMediaType
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Repository Reference for Sources
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class RepoRef(BaseObject,NoteBase,RefBase):
|
|
"""
|
|
Repository reference class.
|
|
"""
|
|
|
|
def __init__(self,source=None):
|
|
BaseObject.__init__(self)
|
|
NoteBase.__init__(self)
|
|
RefBase.__init__(self)
|
|
if source:
|
|
self.call_number = source.call_number
|
|
self.media_type = source.media_type
|
|
else:
|
|
self.call_number = ""
|
|
self.media_type = SourceMediaType()
|
|
|
|
def serialize(self):
|
|
return (
|
|
NoteBase.serialize(self),
|
|
RefBase.serialize(self),
|
|
self.call_number,self.media_type.serialize())
|
|
|
|
def unserialize(self,data):
|
|
(note,ref,self.call_number,media_type) = data
|
|
self.media_type = SourceMediaType(media_type)
|
|
NoteBase.unserialize(self,note)
|
|
RefBase.unserialize(self,ref)
|
|
return self
|
|
|
|
def get_text_data_list(self):
|
|
"""
|
|
Returns the list of all textual attributes of the object.
|
|
|
|
@return: Returns the list of all textual attributes of the object.
|
|
@rtype: list
|
|
"""
|
|
return [self.call_number,str(self.media_type)]
|
|
|
|
def get_text_data_child_list(self):
|
|
"""
|
|
Returns the list of child objects that may carry textual data.
|
|
|
|
@return: Returns the list of child objects that may carry textual data.
|
|
@rtype: list
|
|
"""
|
|
if self.note:
|
|
return [self.note]
|
|
return []
|
|
|
|
def get_referenced_handles(self):
|
|
"""
|
|
Returns the list of (classname,handle) tuples for all directly
|
|
referenced primary objects.
|
|
|
|
@return: Returns the list of (classname,handle) tuples for referenced objects.
|
|
@rtype: list
|
|
"""
|
|
if self.ref:
|
|
return [('Repository',self.ref)]
|
|
else:
|
|
return []
|
|
|
|
def set_call_number(self,number):
|
|
self.call_number = number
|
|
|
|
def get_call_number(self):
|
|
return self.call_number
|
|
|
|
def get_media_type(self):
|
|
return self.media_type
|
|
|
|
def set_media_type(self,media_type):
|
|
if type(media_type) == tuple:
|
|
self.media_type = SourceMediaType(media_type)
|
|
else:
|
|
self.media_type = media_type
|