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.

69 lines
2.6 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Authors: Nemry Jonathan
  5. # Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
  6. # All Rights Reserved
  7. #
  8. # WARNING: This program as such is intended to be used by professional
  9. # programmers who take the whole responsibility of assessing all potential
  10. # consequences resulting from its eventual inadequacies and bugs.
  11. # End users who are looking for a ready-to-use solution with commercial
  12. # guarantees and support are strongly advised to contact a Free Software
  13. # Service Company.
  14. #
  15. # This program is free software: you can redistribute it and/or modify
  16. # it under the terms of the GNU Affero General Public License as
  17. # published by the Free Software Foundation, either version 3 of the
  18. # License, or (at your option) any later version.
  19. #
  20. # This program is distributed in the hope that it will be useful,
  21. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. # GNU Affero General Public License for more details.
  24. #
  25. # You should have received a copy of the GNU Affero General Public License
  26. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  27. #
  28. ##############################################################################
  29. {
  30. 'name': 'Help Online',
  31. 'version': '1.0',
  32. 'author': 'ACSONE SA/NV',
  33. 'maintainer': 'ACSONE SA/NV',
  34. 'website': 'http://www.acsone.eu',
  35. 'category': 'Documentation',
  36. 'depends': [
  37. 'base',
  38. 'website',
  39. ],
  40. 'description': """
  41. Help Online
  42. ===========
  43. This module allows the creation of an online help available from the lists
  44. and forms in Odoo.
  45. When loading a view, the module generates a button allowing access to an help
  46. page for the related model if the page exists and the user is member of the
  47. group 'Help reader'. If the page doesn't exist and the user is member of
  48. the group 'Help writer', the module generate a button allowing the creation an
  49. help page.
  50. The help pages are created and managed via the website Module.
  51. """,
  52. 'data': [
  53. 'data/help_auto_backup.xml', # must always be the first
  54. 'security/help_online_groups.xml',
  55. 'views/help_online_view.xml',
  56. 'views/website_help_online.xml',
  57. 'views/ir_ui_view_view.xml',
  58. 'views/export_help_wizard_view.xml',
  59. 'data/ir_config_parameter_data.xml',
  60. ],
  61. 'qweb': [
  62. 'static/src/xml/help_online.xml',
  63. ],
  64. 'installable': True,
  65. 'auto_install': False,
  66. }