2006-03-04 21:07:04 +05:30
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2001-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
|
|
|
|
#
|
|
|
|
|
2008-01-22 14:47:46 +05:30
|
|
|
# $Id$
|
2006-03-04 21:07:04 +05:30
|
|
|
|
2007-01-09 10:02:07 +05:30
|
|
|
"""
|
2008-01-25 02:08:10 +05:30
|
|
|
Package init for the DataViews package.
|
2007-01-09 10:02:07 +05:30
|
|
|
"""
|
2008-12-08 16:34:54 +05:30
|
|
|
|
2008-01-07 04:27:34 +05:30
|
|
|
from GrampletView import GrampletView, register, Gramplet
|
2007-12-27 20:54:30 +05:30
|
|
|
from PersonView import PersonView
|
|
|
|
from RelationView import RelationshipView
|
|
|
|
from FamilyList import FamilyListView
|
|
|
|
from PedigreeView import PedigreeView
|
|
|
|
from EventView import EventView
|
|
|
|
from SourceView import SourceView
|
|
|
|
from PlaceView import PlaceView
|
|
|
|
from MediaView import MediaView
|
|
|
|
from RepositoryView import RepositoryView
|
|
|
|
from NoteView import NoteView
|
2006-03-04 21:07:04 +05:30
|
|
|
|
2008-12-08 04:18:30 +05:30
|
|
|
geopresent = True
|
|
|
|
try:
|
2008-12-10 04:20:21 +05:30
|
|
|
from GeoView import HtmlView, GeoView
|
2008-12-08 04:18:30 +05:30
|
|
|
except:
|
|
|
|
geopresent = False
|
|
|
|
|
2007-12-24 20:26:15 +05:30
|
|
|
try:
|
|
|
|
import Config
|
2008-12-10 04:20:21 +05:30
|
|
|
dv = Config.get(Config.DATA_VIEWS)
|
|
|
|
#remove GeoView so we do not try to eval it if import fails
|
|
|
|
if not geopresent and not dv.find('GeoView') == -1:
|
|
|
|
dv = dv.replace('GeoView','').replace(',,',',')
|
|
|
|
DATA_VIEWS = eval("["+dv+"]")
|
|
|
|
#add or remove GeoView if config says so
|
2008-12-08 04:18:30 +05:30
|
|
|
if geopresent and Config.get(Config.GEOVIEW) and \
|
|
|
|
not GeoView in DATA_VIEWS:
|
|
|
|
DATA_VIEWS.append(GeoView)
|
|
|
|
Config.set(Config.DATA_VIEWS,
|
|
|
|
Config.get(Config.DATA_VIEWS)+",GeoView")
|
|
|
|
elif geopresent and not Config.get(Config.GEOVIEW) and \
|
|
|
|
GeoView in DATA_VIEWS:
|
|
|
|
DATA_VIEWS.remove(GeoView)
|
|
|
|
newval = Config.get(Config.DATA_VIEWS).replace('GeoView','')\
|
|
|
|
.replace(',,',',')
|
|
|
|
if newval[-1] == ',':
|
|
|
|
newval = newval[:-1]
|
|
|
|
Config.set(Config.DATA_VIEWS, newval)
|
|
|
|
except AttributeError:
|
2007-12-24 20:26:15 +05:30
|
|
|
# Fallback if bad config line, or if no Config system
|
|
|
|
DATA_VIEWS = [
|
2008-01-07 04:27:34 +05:30
|
|
|
GrampletView,
|
2006-06-18 08:35:33 +05:30
|
|
|
PersonView,
|
|
|
|
RelationshipView,
|
|
|
|
FamilyListView,
|
|
|
|
PedigreeView,
|
|
|
|
EventView,
|
|
|
|
SourceView,
|
|
|
|
PlaceView,
|
|
|
|
MediaView,
|
2007-02-13 11:31:16 +05:30
|
|
|
RepositoryView,
|
|
|
|
NoteView,
|
2006-06-18 08:35:33 +05:30
|
|
|
]
|
2008-12-08 04:18:30 +05:30
|
|
|
if geopresent:
|
|
|
|
DATA_VIEWS.append(GeoView)
|
2007-12-24 20:26:15 +05:30
|
|
|
|
|
|
|
def get_views():
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return a list of PageView instances, in order
|
2007-12-24 20:26:15 +05:30
|
|
|
"""
|
|
|
|
return DATA_VIEWS
|