[IMP] base: add partner categories in partner kanban view
[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': """The kernel of OpenERP, needed for all installation.""",
29     'author': 'OpenERP SA',
30     'maintainer': 'OpenERP SA',
31     'website': 'http://www.openerp.com',
32     'depends': [],
33     'init_xml': [
34         'base_data.xml',
35         'security/base_security.xml',
36         'base_menu.xml',
37         'res/res_security.xml',
38         'res/res_config.xml',
39         'data/res.country.state.csv'
40     ],
41     'update_xml': [
42         'ir/wizard/wizard_menu_view.xml',
43         'ir/ir.xml',
44         'ir/ir_filters.xml',
45         'ir/ir_config_parameter_view.xml',
46         'ir/workflow/workflow_view.xml',
47         'ir/report/ir_report.xml',
48         'module/module_view.xml',
49         'module/module_data.xml',
50         'module/module_report.xml',
51         'module/wizard/base_module_import_view.xml',
52         'module/wizard/base_module_update_view.xml',
53         'module/wizard/base_language_install_view.xml',
54         'module/wizard/base_import_language_view.xml',
55         'module/wizard/base_module_upgrade_view.xml',
56         'module/wizard/base_module_configuration_view.xml',
57         'module/wizard/base_export_language_view.xml',
58         'module/wizard/base_update_translations_view.xml',
59         'res/res_company_view.xml',
60         'res/res_request_view.xml',
61         'res/res_lang_view.xml',
62         'res/res_partner_report.xml',
63         'res/res_partner_view.xml',
64         'res/res_partner_shortcut_data.xml',
65         'res/res_bank_view.xml',
66         'res/res_country_view.xml',
67         'res/res_currency_view.xml',
68         'res/res_users_view.xml',
69         'res/res_partner_data.xml',
70         'res/ir_property_view.xml',
71         'security/base_security.xml',
72         'publisher_warranty/publisher_warranty_view.xml',
73         'security/ir.model.access.csv',
74         '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
75         'res/res_widget_view.xml',
76         'res/res_widget_data.xml',
77         'publisher_warranty/publisher_warranty_data.xml',
78     ],
79     'demo_xml': [
80         'base_demo.xml',
81         'res/res_partner_demo.xml',
82         'res/res_widget_demo.xml',
83     ],
84     'test': [
85         'test/base_test.xml',
86         'test/base_test.yml',
87         'test/test_context.xml',
88         'test/bug_lp541545.xml',
89         'test/test_osv_expression.yml',
90         'test/test_ir_rule.yml', # <-- These tests modify/add/delete ir_rules.
91         # Commented because this takes some time.
92         # This must be (un)commented with the corresponding import statement
93         # in test/__init__.py.
94         # 'test/test_ir_cron.yml', # <-- These tests perform a roolback.
95     ],
96     'installable': True,
97     'auto_install': True,
98     'certificate': '0076807797149',
99     'css': ['static/src/css/modules.css'],
100     'js': ['static/src/js/base.js'],
101 }
102 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: