[FIX] website_mail_group: restore missing snippet icon
[odoo/odoo.git] / history / migrate / 3.4.0-4.0.0 / post-tiny.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 __author__ = 'Gaetan de Menten, <ged@tiny.be>'
23 __version__ = '0.1.0'
24
25 import psycopg
26 import optparse
27 import ConfigParser
28
29 # -----
30
31 parser = optparse.OptionParser(version="Tiny ERP server migration script " + __version__)
32
33 parser.add_option("-c", "--config", dest="config", help="specify path to Tiny ERP config file")
34
35 group = optparse.OptionGroup(parser, "Database related options")
36 group.add_option("--db_host", dest="db_host", help="specify the database host") 
37 group.add_option("--db_port", dest="db_port", help="specify the database port") 
38 group.add_option("-d", "--database", dest="db_name", help="specify the database name")
39 group.add_option("-r", "--db_user", dest="db_user", help="specify the database user name")
40 group.add_option("-w", "--db_password", dest="db_password", help="specify the database password") 
41 parser.add_option_group(group)
42
43 options = optparse.Values()
44 options.db_name = 'terp' # default value
45 parser.parse_args(values=options)
46
47 if hasattr(options, 'config'):
48     configparser = ConfigParser.ConfigParser()
49     configparser.read([options.config])
50     for name, value in configparser.items('options'):
51         if not (hasattr(options, name) and getattr(options, name)):
52             if value in ('true', 'True'):
53                 value = True
54             if value in ('false', 'False'):
55                 value = False
56             setattr(options, name, value)
57
58 # -----
59
60 host = hasattr(options, 'db_host') and "host=%s" % options.db_host or ''
61 port = hasattr(options, 'db_port') and "port=%s" % options.db_port or ''
62 name = "dbname=%s" % options.db_name
63 user = hasattr(options, 'db_user') and "user=%s" % options.db_user or ''
64 password = hasattr(options, 'db_password') and "password=%s" % options.db_password or ''
65
66 db = psycopg.connect('%s %s %s %s %s' % (host, port, name, user, password), serialize=0)
67 cr = db.cursor()
68
69 # --------------- #
70 # remove old menu #
71 # --------------- #
72
73 cr.execute("delete from ir_ui_menu where (id not in (select parent_id from ir_ui_menu where parent_id is not null)) and (id not in (select res_id from ir_values where model='ir.ui.menu'))")
74 cr.commit()
75
76 # --------------- #
77 # remove ir_value #
78 # --------------- #
79
80 cr.execute("delete from ir_values where model = 'ir.ui.menu' and res_id is null")
81 cr.commit()
82
83 cr.close()
84
85
86 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
87