2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2007-06-28 11:11:40 +05:30
|
|
|
# Copyright (C) 2000-2007 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.
|
|
|
|
#
|
2007-09-08 02:54:01 +05:30
|
|
|
# This program is distributed in the hope that it will be useful,
|
2002-10-20 19:55:16 +05:30
|
|
|
# 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
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# 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-09-06 04:04:47 +05:30
|
|
|
import GrampsDb
|
2007-09-01 04:21:16 +05:30
|
|
|
import ExportOptions
|
2006-12-12 02:39:25 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2007-09-08 02:54:01 +05:30
|
|
|
# export_data
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-09-08 02:54:01 +05:30
|
|
|
def export_data(database, filename, person, option_box, callback=None):
|
|
|
|
"""
|
|
|
|
Calls the XML writer with the syntax expected by the export plugin
|
|
|
|
"""
|
2007-09-06 04:04:47 +05:30
|
|
|
return GrampsDb.exportData(database, filename, person, option_box,
|
2007-09-08 11:24:02 +05:30
|
|
|
callback, const.VERSION)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2007-09-06 04:04:47 +05:30
|
|
|
# XmlWriter
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-09-06 04:51:34 +05:30
|
|
|
class XmlWriter(GrampsDb.GrampsDbXmlWriter):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Writes a database to the XML file.
|
|
|
|
"""
|
|
|
|
|
2007-09-08 02:54:01 +05:30
|
|
|
def __init__(self, dbase, callback, strip_photos, compress=1):
|
|
|
|
GrampsDb.GrampsDbXmlWriter.__init__(
|
2007-09-08 11:24:02 +05:30
|
|
|
self, dbase, strip_photos, compress, const.VERSION, callback)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2007-09-08 02:54:01 +05:30
|
|
|
def write(self, filename):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
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-09-08 02:54:01 +05:30
|
|
|
ret = GrampsDb.GrampsDbXmlWriter.write(self, filename)
|
2007-09-06 04:04:47 +05:30
|
|
|
except GrampsDb.GrampsDbWriteFailure, val:
|
2007-09-08 02:54:01 +05:30
|
|
|
ErrorDialog(val[0], val[1])
|
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
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-09-08 02:54:01 +05:30
|
|
|
TITLE = _('GRAMPS _XML database')
|
|
|
|
DESCRIPTION = _('The GRAMPS XML database is a format used by older '
|
2004-07-09 23:49:47 +05:30
|
|
|
'versions of GRAMPS. It is read-write compatible with '
|
|
|
|
'the present GRAMPS database format.')
|
2007-09-08 02:54:01 +05:30
|
|
|
CONFIG = (_('GRAMPS XML export options'), ExportOptions.WriterOptionBox)
|
|
|
|
FILENAME = 'gramps'
|
2004-07-01 09:39:55 +05:30
|
|
|
|
2006-03-11 06:42:06 +05:30
|
|
|
from PluginUtils import register_export
|
2007-09-08 02:54:01 +05:30
|
|
|
register_export(export_data, TITLE, DESCRIPTION, CONFIG, FILENAME)
|