#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2009 Benny Malengier
# Copyright (C) 2009 Serge Noiraud
#
# 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$
"""File and File format management for the openoffice reports
"""
#------------------------------------------------------------------------
#
# Python modules
#
#------------------------------------------------------------------------
from xml.sax.saxutils import escape
import os.path
#-------------------------------------------------------------------------
#
# GTK modules
#
#-------------------------------------------------------------------------
#------------------------------------------------------------------------
#
# Gramps modules
#
#------------------------------------------------------------------------
from gen.plug.docbackend import DocBackend
#------------------------------------------------------------------------
#
# Set up logging
#
#------------------------------------------------------------------------
import logging
LOG = logging.getLogger(".odfbackend.py")
#------------------------------------------------------------------------
#
# Document Backend class for cairo docs
#
#------------------------------------------------------------------------
def _escape(string):
""" a write to the file
""""""
change text in text that latex shows correctly
special characters: & < and >
"""
string = string.replace('&', '&') # must be the first
string = string.replace('<', '<')
string = string.replace('>', '>')
return string
class OdfBackend(DocBackend):
"""
Implementation for open document format docs
"""
STYLETAG_TO_PROPERTY = {
}
# overwrite base class attributes, they become static var of CairoDoc
SUPPORTED_MARKUP = [
DocBackend.BOLD,
DocBackend.ITALIC,
DocBackend.UNDERLINE,
DocBackend.FONTFACE,
DocBackend.FONTSIZE,
DocBackend.FONTCOLOR,
DocBackend.HIGHLIGHT,
DocBackend.SUPERSCRIPT,
DocBackend.LINK,
]
STYLETAG_MARKUP = {
DocBackend.BOLD :
("",
""),
DocBackend.ITALIC :
("",
""),
DocBackend.UNDERLINE :
("",
""),
DocBackend.SUPERSCRIPT :
("",
""),
}
ESCAPE_FUNC = lambda x: _escape
def __init__(self, filename=None):
"""
@param filename: path name of the file the backend works on
"""
DocBackend.__init__(self, filename)
def _create_xmltag(self, tagtype, value):
"""
overwrites the method in DocBackend
creates the pango xml tags needed for non bool style types
"""
if tagtype not in self.SUPPORTED_MARKUP:
return None
if ( tagtype == DocBackend.FONTCOLOR ):
return ('' %
self.ESCAPE_FUNC()(value),
'')
elif ( tagtype == DocBackend.FONTFACE ):
return ('' %
self.ESCAPE_FUNC()(value),
'')
elif ( tagtype == DocBackend.FONTSIZE ):
return ('' %
self.ESCAPE_FUNC()(value),
'')
else: #elif ( tagtype == DocBackend.HIGHLIGHT ):
return ('' %
self.ESCAPE_FUNC()(value),
'')
def format_link(self, value):
"""
Override of base method.
"""
if value.startswith("gramps://"):
return self.STYLETAG_MARKUP[DocBackend.UNDERLINE]
else:
return ('' % self.ESCAPE_FUNC()(value),
'')