2009-12-15 11:26:12 +05:30
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
from editaddress import EditAddress
|
|
|
|
from editattribute import EditAttribute, EditFamilyAttribute
|
|
|
|
from editchildref import EditChildRef
|
|
|
|
from editevent import EditEvent, DeleteEventQuery
|
2009-12-22 17:51:37 +05:30
|
|
|
from editeventref import EditEventRef, EditFamilyEventRef
|
2009-12-15 11:26:12 +05:30
|
|
|
from editfamily import EditFamily
|
|
|
|
from editldsord import EditLdsOrd, EditFamilyLdsOrd
|
|
|
|
from editlocation import EditLocation
|
|
|
|
from editmedia import EditMedia, DeleteMediaQuery
|
|
|
|
from editmediaref import EditMediaRef
|
|
|
|
from editname import EditName
|
|
|
|
from editnote import EditNote, DeleteNoteQuery
|
|
|
|
from editperson import EditPerson
|
|
|
|
from editpersonref import EditPersonRef
|
|
|
|
from editplace import EditPlace, DeletePlaceQuery
|
|
|
|
from editrepository import EditRepository, DeleteRepositoryQuery
|
|
|
|
from editreporef import EditRepoRef
|
|
|
|
from editsource import EditSource, DeleteSrcQuery
|
|
|
|
from editsourceref import EditSourceRef
|
|
|
|
from editurl import EditUrl
|