2006-05-15  Alex Roitman  <shura@gramps-project.org>
	* configure.in: Generate new Makefile.
	* src/Makefile.am: adapt to new module.
	* src/Selectors: separate selectors in their own module.
	* src/Select*.py: move to Selectors.
	* src/DataViews/_FamilyView.py: Use new module.
	* src/Editors/_EditLdsOrd.py: Use new module.
	* src/Editors/_EditPersonRef.py: Use new module.
	* src/Editors/_EditFamily.py: Use new module.
	* src/DisplayTabs/_SourceEmbedList.py: Use new module.
	* src/DisplayTabs/_RepoEmbedList.py: Use new module.
	* src/DisplayTabs/_EventEmbedList.py: Use new module.
	* src/DisplayTabs/_GalleryTab.py: Use new module.
	* src/plugins/FilterEditor.py: Use new module.
	* src/plugins/SimpleBookTitle.py: Use new module.
	* src/PluginUtils/_Report.py: Use new module.

In po:
2006-05-15  Alex Roitman  <shura@gramps-project.org>
	* POTFILES.in: Add new files.



svn: r6669
This commit is contained in:
Alex Roitman
2006-05-15 15:53:42 +00:00
parent 8b64f038a1
commit e2330971df
27 changed files with 299 additions and 29 deletions

View File

@@ -0,0 +1,52 @@
#
# 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: __init__.py 6392 2006-04-21 18:15:23Z dallingham $
from _SelectorExceptions import SelectorException
def selector_factory(classname):
if classname == 'Person':
from _SelectPerson import SelectPerson
cls = SelectPerson
elif classname == 'Family':
from _SelectFamily import SelectFamily
cls = SelectFamily
elif classname == 'Event':
from _SelectEvent import SelectEvent
cls = SelectEvent
elif classname == 'Place':
from _SelectPlace import SelectPlace
cls = SelectPlace
elif classname == 'Source':
from _SelectSource import SelectSource
cls = SelectSource
elif classname == 'MediaObject':
from _SelectObject import SelectObject
cls = SelectObject
elif classname == 'Repository':
from _SelectRepository import SelectRepository
cls = SelectRepository
else:
raise SelectorException("Attempt to create unknown "
"selector class: "
"classname = %s" % (str(classname),))
return cls