* src/RelLib.py: Remove file (replaced by the package dir).
* src/RelLib: Add directory.
* src/RelLib/__init__.py, src/RelLib/_helper.py,
src/RelLib/_secondary.py, src/RelLib/Researcher.py,
src/RelLib/GenderStats.py, src/RelLib/Person.py,
src/RelLib/Family.py, src/RelLib/Event.py, src/RelLib/Place.py,
src/RelLib/Source.py, src/RelLib/MediaObject.py,
src/RelLib/Repository.py, src/RelLib/Makefile.am,
src/RelLib/.cvsignore: Add to CVS.
* src/configure.in: Create Makefile in src/RelLib.
svn: r5587
2005-12-20 08:08:07 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2005 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$
|
|
|
|
|
|
|
|
"""The core library of GRAMPS objects"""
|
|
|
|
|
|
|
|
__author__ = "Donald N. Allingham"
|
|
|
|
__version__ = "$Revision$"
|
|
|
|
|
2005-12-21 02:18:18 +05:30
|
|
|
# Secondary objects
|
|
|
|
from _Address import Address
|
|
|
|
from _Location import Location
|
|
|
|
from _Attribute import Attribute
|
|
|
|
from _EventRef import EventRef
|
|
|
|
from _LdsOrd import LdsOrd
|
|
|
|
from _MediaRef import MediaRef
|
|
|
|
from _Name import Name
|
|
|
|
from _Note import Note
|
|
|
|
from _RepoRef import RepoRef
|
|
|
|
from _SourceRef import SourceRef
|
|
|
|
from _Url import Url
|
2005-12-21 05:38:47 +05:30
|
|
|
from _Witness import Witness
|
2005-12-21 02:18:18 +05:30
|
|
|
|
|
|
|
# Primary objects
|
2005-12-21 04:22:54 +05:30
|
|
|
from _PrimaryObject import PrimaryObject
|
2005-12-21 02:18:18 +05:30
|
|
|
from _Person import Person
|
|
|
|
from _Family import Family
|
|
|
|
from _Event import Event
|
|
|
|
from _Place import Place
|
|
|
|
from _Source import Source
|
|
|
|
from _MediaObject import MediaObject
|
|
|
|
from _Repository import Repository
|
|
|
|
|
|
|
|
# These are actually metadata
|
|
|
|
from _GenderStats import GenderStats
|
|
|
|
from _Researcher import Researcher
|