~openerp-groupes/openobject-server/6.0-fix-setup-windows

« back to all changes in this revision

Viewing changes to bin/addons/base/module/wizard/wizard_export_lang.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-3f10ee12cea3c4c75cef44ab04ad33ef47432907
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: iso-8859-1 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2005-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
5
#                    Fabien Pinckaers <fp@tiny.Be>
 
6
#
 
7
# WARNING: This program as such is intended to be used by professional
 
8
# programmers who take the whole responsability of assessing all potential
 
9
# consequences resulting from its eventual inadequacies and bugs
 
10
# End users who are looking for a ready-to-use solution with commercial
 
11
# garantees and support are strongly adviced to contract a Free Software
 
12
# Service Company
 
13
#
 
14
# This program is Free Software; you can redistribute it and/or
 
15
# modify it under the terms of the GNU General Public License
 
16
# as published by the Free Software Foundation; either version 2
 
17
# of the License, or (at your option) any later version.
 
18
#
 
19
# This program is distributed in the hope that it will be useful,
 
20
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
# GNU General Public License for more details.
 
23
#
 
24
# You should have received a copy of the GNU General Public License
 
25
# along with this program; if not, write to the Free Software
 
26
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
27
#
 
28
##############################################################################
 
29
 
 
30
import wizard
 
31
import tools
 
32
import base64
 
33
import StringIO
 
34
import csv
 
35
import pooler
 
36
 
 
37
view_form_init="""<?xml version="1.0"?>
 
38
<form string="Export language">
 
39
        <image name="gtk-info" size="64" colspan="2"/>
 
40
        <group colspan="2" col="4">
 
41
                <separator string="Export translation file" colspan="4"/>
 
42
                <label align="0.0" string="Choose a language to export:" colspan="4"/>
 
43
                <field name="lang" colspan="4"/>
 
44
        </group>
 
45
</form>"""
 
46
 
 
47
view_form_finish="""<?xml version="1.0"?>
 
48
<form string="Export language">
 
49
        <image name="gtk-info" size="64" colspan="2"/>
 
50
        <group colspan="2" col="4">
 
51
                <separator string="Export done" colspan="4"/>
 
52
                <field name="data" readonly="1" colspan="3"/>
 
53
                <label align="0.0" string="Save this document to a .CSV file and open it with\n your favourite spreadsheet software. The file\n encoding is UTF-8. You have to translate the latest\n column before reimporting it." colspan="4"/>
 
54
        </group>
 
55
</form>"""
 
56
 
 
57
class wizard_export_lang(wizard.interface):
 
58
        def _get_language(self, cr, uid, context):
 
59
                lang_obj=pooler.get_pool(cr.dbname).get('res.lang')
 
60
                ids=lang_obj.search(cr, uid, [('active', '=', True),])
 
61
                langs=lang_obj.browse(cr, uid, ids)
 
62
                return [(lang.code, lang.translatable and lang.name or 'New language') for lang in langs]
 
63
 
 
64
        def _get_file(self, cr, uid, data, context):
 
65
                file=tools.trans_generate(data['form']['lang'], 'all')
 
66
                buf=StringIO.StringIO()
 
67
                writer=csv.writer(buf)
 
68
                for row in file:
 
69
                        writer.writerow(row)
 
70
                del file
 
71
                out=base64.encodestring(buf.getvalue())
 
72
                buf.close()
 
73
                return {'data': out}
 
74
 
 
75
        fields_form={
 
76
                'lang': {'string':'Language', 'type':'selection', 'selection':_get_language,},
 
77
        }
 
78
        fields_form_finish={
 
79
                'data': {'string':'File', 'type':'binary', 'readonly': True,},
 
80
        }
 
81
        states={
 
82
                'init':{
 
83
                        'actions':[],
 
84
                        'result':{'type':'form', 'arch':view_form_init, 'fields': fields_form, 'state':[('end', 'Cancel', 'gtk-cancel'),('finish', 'Ok', 'gtk-ok')]}
 
85
                },
 
86
                'finish':{
 
87
                        'actions':[_get_file],
 
88
                        'result':{'type':'form', 'arch':view_form_finish, 'fields': fields_form_finish, 'state':[('end', 'Close', 'gtk-cancel')]}
 
89
                },
 
90
        }
 
91
wizard_export_lang('module.lang.export')