improved
[odoo/odoo.git] / bin / report / render / odt2odt / odt2odt.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #    
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
19 #
20 ##############################################################################
21
22 from report.render.rml2pdf import utils
23 from lxml import etree
24 import copy
25
26 class odt2odt(object):
27     def __init__(self, odt, localcontext):
28         self.localcontext = localcontext
29         self.etree = odt
30         self._node = None
31
32     def render(self):
33         def process_text(node,new_node):
34             for child in utils._child_get(node, self):
35                 new_child = copy.deepcopy(child)
36                 new_node.append(new_child)
37                 if len(child):
38                     for n in new_child:
39                         new_child.text  = utils._process_text(self, child.text)
40                         new_child.tail  = utils._process_text(self, child.tail)
41                         new_child.remove(n)
42                     process_text(child, new_child)
43                 else:
44                     new_child.text  = utils._process_text(self, child.text)
45                     new_child.tail  = utils._process_text(self, child.tail)
46         self._node = copy.deepcopy(self.etree)
47         for n in self._node:
48             self._node.remove(n)
49         process_text(self.etree, self._node)
50         return self._node
51
52 def parseNode(node, localcontext = {}):
53     r = odt2odt(node, localcontext)
54     return r.render()
55