* src/RelLib/__init__.py: More breaking up in RelLib;
* src/RelLib/Makefile.am: Ship new files; * src/RelLib/ various files: add more files. svn: r5593
This commit is contained in:
parent
1a102afbd1
commit
0899df3342
@ -1,3 +1,8 @@
|
||||
2005-12-20 Alex Roitman <shura@gramps-project.org>
|
||||
* src/RelLib/__init__.py: More breaking up in RelLib;
|
||||
* src/RelLib/Makefile.am: Ship new files;
|
||||
* src/RelLib/ various files: add more files.
|
||||
|
||||
2005-12-20 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
||||
* src/RelLib/_helper.py: removed get_backlink_handles
|
||||
* test/RelLib_Test.py: removed test for get_backlink_handles
|
||||
|
||||
@ -6,18 +6,41 @@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/RelLib
|
||||
|
||||
pkgdata_PYTHON = \
|
||||
_AddressBase.py\
|
||||
_Address.py\
|
||||
_AttributeBase.py\
|
||||
_Attribute.py\
|
||||
_BaseObject.py\
|
||||
_DateBase.py\
|
||||
_Event.py\
|
||||
_EventRef.py\
|
||||
_Family.py\
|
||||
_GenderStats.py\
|
||||
__init__.py\
|
||||
_helper.py\
|
||||
_secondary.py\
|
||||
Researcher.py\
|
||||
GenderStats.py\
|
||||
Person.py\
|
||||
Family.py\
|
||||
Event.py\
|
||||
Place.py\
|
||||
Source.py\
|
||||
MediaObject.py\
|
||||
Repository.py
|
||||
_LdsOrd.py\
|
||||
_LocationBase.py\
|
||||
_Location.py\
|
||||
_MediaBase.py\
|
||||
_MediaObject.py\
|
||||
_MediaRef.py\
|
||||
_Name.py\
|
||||
_NoteBase.py\
|
||||
_Note.py\
|
||||
_Person.py\
|
||||
_PlaceBase.py\
|
||||
_Place.py\
|
||||
_PrimaryObject.py\
|
||||
_PrivacyBase.py\
|
||||
_PrivateSourceNote.py\
|
||||
_RepoRef.py\
|
||||
_Repository.py\
|
||||
_Researcher.py\
|
||||
_SourceNote.py\
|
||||
_Source.py\
|
||||
_SourceRef.py\
|
||||
_UrlBase.py\
|
||||
_Url.py\
|
||||
_Witness.py\
|
||||
|
||||
pkgpyexecdir = @pkgpyexecdir@/RelLib
|
||||
pkgpythondir = @pkgpythondir@/RelLib
|
||||
|
||||
95
src/RelLib/_Address.py
Normal file
95
src/RelLib/_Address.py
Normal file
@ -0,0 +1,95 @@
|
||||
#
|
||||
# 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
|
||||