[FIX] Data order
[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, 2012 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         'res/res_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_actions.xml',
47         'ir/ir_attachment_view.xml',
48         'ir/ir_config_parameter_view.xml',
49         'ir/ir_cron_view.xml',
50         'ir/ir_filters.xml',
51         'ir/ir_mail_server_view.xml',
52         'ir/ir_model_view.xml',
53         'ir/ir_rule_view.xml',
54         'ir/ir_sequence_view.xml',
55         'ir/ir_translation_view.xml',
56         'ir/ir_ui_menu_view.xml',
57         'ir/ir_ui_view_view.xml',
58         'ir/ir_values_view.xml',
59         'ir/osv_memory_autovacuum.xml',
60         'ir/report/ir_report.xml',
61         'ir/workflow/workflow_view.xml',
62         'module/module_view.xml',
63         'module/module_data.xml',
64         'module/module_report.xml',
65         'module/wizard/base_module_import_view.xml',
66         'module/wizard/base_module_update_view.xml',
67         'module/wizard/base_language_install_view.xml',
68         'module/wizard/base_import_language_view.xml',
69         'module/wizard/base_module_upgrade_view.xml',
70         'module/wizard/base_module_configuration_view.xml',
71         'module/wizard/base_export_language_view.xml',
72         'module/wizard/base_update_translations_view.xml',
73         'module/wizard/base_module_immediate_install.xml',
74         'res/res_company_view.xml',
75         'res/res_request_view.xml',
76         'res/res_lang_view.xml',
77         'res/res_partner_report.xml',
78         'res/res_partner_view.xml',
79         'res/res_partner_shortcut_data.xml',
80         'res/res_bank_view.xml',
81         'res/res_country_view.xml',
82         'res/res_currency_view.xml',
83         'res/wizard/change_password_wizard_view.xml',
84         'res/res_users_view.xml',
85         'res/res_partner_data.xml',
86         'res/ir_property_view.xml',
87         'res/wizard/change_password_wizard_view.xml',
88         'security/base_security.xml',
89         'security/ir.model.access.csv',
90     ],
91     'demo': [
92         'base_demo.xml',
93         'res/res_partner_demo.xml',
94         'res/res_partner_demo.yml',
95         'res/res_partner_image_demo.xml',
96     ],
97     'test': [
98         'test/base_test.yml',
99         'test/test_context.xml',
100         'test/bug_lp541545.xml',
101         'test/test_osv_expression.yml',
102         'test/test_ir_rule.yml', # <-- These tests modify/add/delete ir_rules.
103     ],
104     'installable': True,
105     'auto_install': True,
106     'css': ['static/src/css/modules.css'],
107 }
108 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: