2bf73bee01
svn: r19310
82 lines
3.2 KiB
Python
82 lines
3.2 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2005-2007 Donald N. Allingham
|
|
# Copyright (C) 2008 Brian G. Matherly
|
|
# Copyright (C) 2012 Tim G L Lyons
|
|
#
|
|
# 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$
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Standard Python Modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
import logging
|
|
LOG = logging.getLogger(".Db")
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Gramps Modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from QuestionDialog import ErrorDialog
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Constants
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
_MINVERSION = 9
|
|
_DBVERSION = 14
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Importing data into the currently open database.
|
|
# Ability to import .grdb files removed in accordance with
|
|
# http://gramps.1791082.n4.nabble.com/Status-of-GEPS-023-tp4329141p4329746.html
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
def importData(database, filename, callback=None, cl=0):
|
|
if cl:
|
|
LOG.warn("Error: %s could not be opened.\n%s Exiting." \
|
|
% (filename,
|
|
_("The database version is not supported "
|
|
"by this version of Gramps.\n"\
|
|
"Please upgrade to the corresponding version "
|
|
"or use XML for porting data between different "
|
|
"database versions.")))
|
|
else:
|
|
ErrorDialog(_("%s could not be opened") % filename,
|
|
_("The Database version is not supported "
|
|
"by this version of Gramps."
|
|
"You should use an old copy of Gramps at "
|
|
"version 3.0.x and import your database into "
|
|
"that version. You should then export a copy "
|
|
"of your data to Gramps XML (family tree). "
|
|
"Then you should upgrade to the latest "
|
|
"version of Gramps (for example this version), "
|
|
"create a new empty database and import the "
|
|
"Gramps XML into that version. "
|
|
"Please refer to:"
|
|
"http://www.gramps-project.org/wiki/index.php?"
|
|
"title=Gramps_3.4_Wiki_Manual_-_Manage_Family_Trees#"
|
|
"Moving_a_Gramps_2.2_databases_to_Gramps_3.x"))
|
|
return
|