You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
2.3 KiB

10 years ago
  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. ##############################################################################
  21. {
  22. 'name': 'Help Online',
  23. 'version': '8.0.1.0.0',
  24. 'author': "ACSONE SA/NV,Odoo Community Association (OCA)",
  25. 'maintainer': 'ACSONE SA/NV',
  26. 'website': 'http://www.acsone.eu',
  27. 'category': 'Documentation',
  28. 'depends': [
  29. 'base',
  30. 'website',
  31. 'web',
  32. 'web_kanban',
  33. ],
  34. 'description': """
  35. Help Online
  36. ===========
  37. This module allows the creation of an online help available from the lists
  38. and forms in Odoo.
  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. The help pages are created and managed via the website Module.
  45. Note: When updating the page prefix parameters, the record rules must be
  46. adapted.
  47. """,
  48. 'data': [
  49. 'security/help_online_groups.xml',
  50. 'security/help_online_rules.xml',
  51. 'views/export_help_wizard_view.xml',
  52. 'views/import_help_wizard_view.xml',
  53. 'views/ir_ui_view_view.xml',
  54. 'views/help_online_view.xml',
  55. 'views/website_help_online.xml',
  56. 'data/ir_config_parameter_data.xml',
  57. ],
  58. 'qweb': [
  59. 'static/src/xml/help_online.xml',
  60. ],
  61. 'installable': True,
  62. 'auto_install': False,
  63. 'license': 'AGPL-3',
  64. }