[MERGE] base: raise an exception if the format of the bank account is wrong
[odoo/odoo.git] / openerp / addons / base / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #    Copyright (C) 2010 OpenERP s.a. (<http://openerp.com>).
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'Base',
26     'version': '1.3',
27     'category': 'Hidden',
28     'description': """
29 The kernel of OpenERP, needed for all installation.
30 ===================================================
31 """,
32     'author': 'OpenERP SA',
33     'maintainer': 'OpenERP SA',
34     'website': 'http://www.openerp.com',
35     'depends': [],
36     'data': [
37         'base_data.xml',
38         'currency_data.xml',
39         'country_data.xml',
40         'security/base_security.xml',
41         'base_menu.xml',
42         'res/res_security.xml',
43         'res/res_config.xml',
44         'data/res.country.state.csv',
45         'ir/wizard/wizard_menu_view.xml',
46         'ir/ir.xml',
47         'ir/ir_filters.xml',
48         'ir/ir_config_parameter_view.xml',
49         'ir/workflow/workflow_view.xml',
50         'ir/report/ir_report.xml',
51         'module/module_view.xml',
52         'module/module_data.xml',
53         'module/module_report.xml',
54         'module/wizard/base_module_import_view.xml',
55         'module/wizard/base_module_update_view.xml',
56         'module/wizard/base_language_install_view.xml',
57         'module/wizard/base_import_language_view.xml',
58         'module/wizard/base_module_upgrade_view.xml',
59         'module/wizard/base_module_configuration_view.xml',
60         'module/wizard/base_export_language_view.xml',
61         'module/wizard/base_update_translations_view.xml',
62         'module/wizard/base_module_immediate_install.xml',
63         'res/res_company_view.xml',
64         'res/res_request_view.xml',
65         'res/res_lang_view.xml',
66         'res/res_partner_report.xml',
67         'res/res_partner_view.xml',
68         'res/res_partner_shortcut_data.xml',
69         'res/res_bank_view.xml',
70         'res/res_country_view.xml',
71         'res/res_currency_view.xml',
72         'res/res_users_view.xml',
73         'res/res_partner_data.xml',
74         'res/ir_property_view.xml',
75         'security/base_security.xml',
76         'security/ir.model.access.csv',
77         'security/ir.model.access-1.csv', # res.partner.address is deprecated; it is still there for backward compability only and will be removed in next version
78         'res/res_widget_view.xml',
79         'res/res_widget_data.xml',
80     ],
81     'demo': [
82         'base_demo.xml',
83         'res/res_partner_demo.xml',
84         'res/res_partner_demo.yml',
85         'res/res_widget_demo.xml',
86     ],
87     'test': [
88         'test/base_test.xml',
89         'test/base_test.yml',
90         'test/test_context.xml',
91         'test/bug_lp541545.xml',
92         'test/test_osv_expression.yml',
93         'test/test_ir_rule.yml', # <-- These tests modify/add/delete ir_rules.
94         # Commented because this takes some time.
95         # This must be (un)commented with the corresponding import statement
96         # in test/__init__.py.
97         # 'test/test_ir_cron.yml', # <-- These tests perform a roolback.
98     ],
99     'installable': True,
100     'auto_install': True,
101     'certificate': '0076807797149',
102     'css': ['static/src/css/modules.css'],
103 }
104 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: