[ADD] ir.actions.act_window: added support for multi=True parameter to hide an act_wi...
[odoo/odoo.git] / bin / tools / pdf_utils.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 """ Copyright (c) 2003-2007 LOGILAB S.A. (Paris, FRANCE).
23  http://www.logilab.fr/ -- mailto:contact@logilab.fr
24
25 manipulate pdf and fdf files. pdftk recommended.
26
27 Notes regarding pdftk, pdf forms and fdf files (form definition file)
28 fields names can be extracted with:
29     pdftk orig.pdf generate_fdf output truc.fdf
30 to merge fdf and pdf:
31     pdftk orig.pdf fill_form test.fdf output result.pdf [flatten]
32 without flatten, one could further edit the resulting form.
33 with flatten, everything is turned into text.
34 """
35
36 import os
37 import netsvc,logging
38
39
40 HEAD="""%FDF-1.2
41 %\xE2\xE3\xCF\xD3
42 1 0 obj
43 <<
44 /FDF
45 <<
46 /Fields [
47 """
48
49 TAIL="""]
50 >>
51 >>
52 endobj
53 trailer
54
55 <<
56 /Root 1 0 R
57 >>
58 %%EOF
59 """
60
61 def output_field( f ):
62     return "\xfe\xff" + "".join( [ "\x00"+c for c in f ] )
63
64 def extract_keys(lines):
65     keys = []
66     for line in lines:
67         if line.startswith('/V'):
68             pass #print 'value',line
69         elif line.startswith('/T'):
70             key = line[7:-2]
71             key = ''.join(key.split('\x00'))
72             keys.append( key )
73     return keys
74
75 def write_field(out, key, value):
76     out.write("<<\n")
77     if value:
78         out.write("/V (%s)\n" %value)
79     else:
80         out.write("/V /\n")
81     out.write("/T (%s)\n" % output_field(key) )
82     out.write(">> \n")
83
84 def write_fields(out, fields):
85     out.write(HEAD)
86     for key in fields:
87         value = fields[key]
88         write_field(out, key, value)
89 #        write_field(out, key+"a", value) # pour copie-carbone sur autres pages
90     out.write(TAIL)
91
92 def extract_keys_from_pdf(filename):
93     # what about using 'pdftk filename dump_data_fields' and parsing the output ?
94     os.system('pdftk %s generate_fdf output /tmp/toto.fdf' % filename)
95     lines = file('/tmp/toto.fdf').readlines()
96     return extract_keys(lines)
97
98
99 def fill_pdf(infile, outfile, fields):
100     write_fields(file('/tmp/toto.fdf', 'w'), fields)
101     os.system('pdftk %s fill_form /tmp/toto.fdf output %s flatten' % (infile, outfile))
102
103 def testfill_pdf(infile, outfile):
104     keys = extract_keys_from_pdf(infile)
105     fields = []
106     for key in keys:
107         fields.append( (key, key, '') )
108     fill_pdf(infile, outfile, fields)
109
110
111 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
112