2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-01-27 04:28:49 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2002-10-20 19:55:16 +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
|
|
|
|
#
|
2003-11-24 02:25:14 +05:30
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Contains the interface to allow a database to get written using
|
|
|
|
GRAMPS' XML file format.
|
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# load standard python libraries
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2006-03-05 10:01:24 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Set up logging
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger(".WriteXML")
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# load GRAMPS libraries
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
2002-10-21 06:48:07 +05:30
|
|
|
from QuestionDialog import ErrorDialog
|
2006-09-02 04:27:57 +05:30
|
|
|
|
2007-02-18 03:42:56 +05:30
|
|
|
from GrampsDb import GrampsDbXmlWriter, GrampsDbWriteFailure
|
|
|
|
from GrampsDb import exportData as _exportData
|
|
|
|
from GrampsDb import quick_write as _quick_write
|
2006-12-12 02:39:25 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-02-18 03:42:56 +05:30
|
|
|
def exportData(database, filename, person, callback=None, version=const.version):
|
|
|
|
return _exportData(database, filename, person, version)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-02-18 03:42:56 +05:30
|
|
|
def quick_write(database, filename,callback=None,version=const.version):
|
|
|
|
return _quick_write(database, filename, version)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-02-18 03:42:56 +05:30
|
|
|
class XmlWriter(GrampsDbXmlWriter):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Writes a database to the XML file.
|
|
|
|
"""
|
|
|
|
|
2007-04-08 09:54:38 +05:30
|
|
|
def __init__(self, db, callback, strip_photos, compress=1):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
"""
|
2007-06-20 10:14:32 +05:30
|
|
|
GrampsDbXmlWriter.__init__(self, db, strip_photos, compress, const.version)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write(self,filename):
|
|
|
|
"""
|
2003-04-20 09:22:54 +05:30
|
|
|
Write the database to the specified file.
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
2006-07-04 11:20:24 +05:30
|
|
|
try:
|
2007-02-18 03:42:56 +05:30
|
|
|
ret = GrampsDbXmlWriter.write(self, filename)
|
|
|
|
except GrampsDbWriteFailure, val:
|
|
|
|
ErrorDialog(val[0],val[1])
|
2006-01-28 02:08:33 +05:30
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
return ret
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-01 09:39:55 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-07-09 23:49:47 +05:30
|
|
|
_title = _('GRAMPS _XML database')
|
|
|
|
_description = _('The GRAMPS XML database is a format used by older '
|
|
|
|
'versions of GRAMPS. It is read-write compatible with '
|
|
|
|
'the present GRAMPS database format.')
|
|
|
|
_config = None
|
|
|
|
_filename = 'gramps'
|
2004-07-01 09:39:55 +05:30
|
|
|
|
2006-03-11 06:42:06 +05:30
|
|
|
from PluginUtils import register_export
|
2004-07-09 23:49:47 +05:30
|
|
|
register_export(exportData,_title,_description,_config,_filename)
|