2005-01-07 00:56:54 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-03-03 05:40:52 +05:30
|
|
|
# Copyright (C) 2004-2006 Donald N. Allingham
|
2005-01-07 00:56:54 +05:30
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
2006-03-03 05:40:52 +05:30
|
|
|
# $Id: __init__.py 5872 2006-02-03 15:49:59Z hippy $
|
|
|
|
|
|
|
|
"""
|
|
|
|
This package implements access to GRAMPS configuration.
|
|
|
|
It provides the choice between different storage backends.
|
|
|
|
"""
|
2005-01-07 00:56:54 +05:30
|
|
|
|
2006-04-25 02:34:01 +05:30
|
|
|
from _GrampsConfigKeys import *
|
2007-07-23 02:33:52 +05:30
|
|
|
from _GrampsIniKeys import *
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
def __upgrade_gconf():
|
|
|
|
import _GrampsGconfKeys as GconfKeys
|
|
|
|
print "Upgrading INI file"
|
|
|
|
for key in default_value.keys():
|
|
|
|
data = GconfKeys.get(key)
|
|
|
|
set(key, data)
|
2006-03-21 12:03:59 +05:30
|
|
|
|
2007-07-23 02:33:52 +05:30
|
|
|
if not os.path.exists(INIFILE):
|
2006-03-21 12:03:59 +05:30
|
|
|
try:
|
2007-07-23 02:33:52 +05:30
|
|
|
__upgrade_gconf()
|
|
|
|
except ImportError:
|
|
|
|
print "Cannot upgrade GCONF settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|