|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -############################################################################## |
3 |
| -# |
4 |
| -# Authors: Nemry Jonathan |
5 |
| -# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu) |
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 published |
9 |
| -# by the Free Software Foundation, either version 3 of the License, or |
10 |
| -# (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 |
| -############################################################################## |
| 2 | +# Copyright 2014 ACSONE SA/NV (<http://acsone.eu>) |
| 3 | +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
| 4 | + |
21 | 5 | {
|
22 | 6 | 'name': 'Help Online',
|
23 |
| - 'version': '8.0.1.0.0', |
| 7 | + 'version': '9.0.1.0.0', |
24 | 8 | 'author': "ACSONE SA/NV,Odoo Community Association (OCA)",
|
25 | 9 | 'maintainer': 'ACSONE SA/NV',
|
26 | 10 | 'website': 'http://www.acsone.eu',
|
| 11 | + 'license': 'AGPL-3', |
27 | 12 | 'category': 'Documentation',
|
28 | 13 | 'depends': [
|
29 | 14 | 'base',
|
30 | 15 | 'website',
|
31 | 16 | ],
|
32 |
| - 'description': """ |
33 |
| -Help Online |
34 |
| -=========== |
35 |
| -
|
36 |
| -This module allows the creation of an online help available from the lists |
37 |
| -and forms in Odoo. |
38 |
| -
|
39 |
| -When loading a view, the module generates a button allowing access to an help |
40 |
| -page for the related model if the page exists and the user is member of the |
41 |
| -group 'Help reader'. If the page doesn't exist and the user is member of |
42 |
| -the group 'Help writer', the module generate a button allowing the creation an |
43 |
| -help page. |
44 |
| -
|
45 |
| -The help pages are created and managed via the website Module. |
46 |
| -
|
47 |
| -Note: When updating the page prefix parameters, the record rules must be |
48 |
| - adapted. |
49 |
| - """, |
50 | 17 | 'data': [
|
51 | 18 | 'security/help_online_groups.xml',
|
52 | 19 | 'security/help_online_rules.xml',
|
53 |
| - 'views/export_help_wizard_view.xml', |
54 |
| - 'views/import_help_wizard_view.xml', |
| 20 | + 'wizards/export_help_wizard_view.xml', |
| 21 | + 'wizards/import_help_wizard_view.xml', |
55 | 22 | 'views/ir_ui_view_view.xml',
|
56 | 23 | 'views/help_online_view.xml',
|
57 |
| - 'views/website_help_online.xml', |
58 | 24 | 'data/ir_config_parameter_data.xml',
|
59 | 25 | ],
|
60 | 26 | 'qweb': [
|
61 | 27 | 'static/src/xml/help_online.xml',
|
62 | 28 | ],
|
63 |
| - 'installable': False, |
64 |
| - 'auto_install': False, |
| 29 | + 'installable': True, |
65 | 30 | }
|
0 commit comments