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
|
2010-05-04 04:17:47 +05:30
|
|
|
|
|
|
|
# Map from gen.obj name to Editor:
|
|
|
|
EDITORS = {
|
|
|
|
'Person': EditPerson,
|
|
|
|
'Event': EditEvent,
|
|
|
|
'Family': EditFamily,
|
|
|
|
'Media': EditMedia,
|
|
|
|
'Source': EditSource,
|
|
|
|
'Place': EditPlace,
|
|
|
|
'Repository': EditRepository,
|
|
|
|
'Note': EditNote,
|
|
|
|
}
|
|
|
|
|
|
|
|
def EditObject(dbstate, uistate, track, obj_class, prop, value):
|
|
|
|
"""
|
|
|
|
Generic Object Editor.
|
|
|
|
obj_class is Person, Source, Repository, etc.
|
|
|
|
prop is 'handle' or 'gramps_id'
|
|
|
|
value is string handle or string gramps_id
|
|
|
|
"""
|
|
|
|
if obj_class in dbstate.db.get_table_names():
|
|
|
|
if prop in ("gramps_id", "handle"):
|
|
|
|
obj = dbstate.db.get_table_metadata(obj_class)[prop + "_func"](value)
|
|
|
|
if obj:
|
|
|
|
EDITORS[obj_class](dbstate, uistate, track, obj)
|
|
|
|
else:
|
|
|
|
raise AttributeError("gramps://%s/%s/%s not found" %
|
|
|
|
(obj_class, prop, value))
|
|
|
|
else:
|
|
|
|
raise AttributeError("unknown property to edit '%s'; "
|
|
|
|
"should be 'gramps_id' or 'handle'" % prop)
|
|
|
|
else:
|
|
|
|
raise AttributeError("unknown object to edit '%s'; "
|
|
|
|
"should be one of %s" % (obj_class, EDITORS.keys()))
|
|
|
|
|