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.

65 lines
2.5 KiB

  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  3. :alt: License: AGPL-3
  4. =========================
  5. Extra options in manifest
  6. =========================
  7. This is a technical module to allow developers to make use of a couple of new keys in module manifests.
  8. The following new keys are available currently:
  9. depends_if_installed
  10. Your module will depend on modules listed here, but only if those modules are already installed. This is useful if your module is supposed to override behavior of a third module if present, but it's not a hard dependency of your module. Think of auth_* and their interactions.
  11. Usage
  12. =====
  13. * depend on this module and use the keys described above
  14. Roadmap
  15. =======
  16. * ``breaks`` to mark some modules as being incompatible. This also could be versioned (``'breaks': ['my_module<<0.4.2']``)
  17. * ``demo_if_installed``, ``data_if_installed``, ``qweb_if_installed`` being dicts with module names as keys and a list of files as values in order to pull some data files in case some other module is installed
  18. * ``rdepends_if_installed`` to make another installed module depend on the current module
  19. * ``_if_module`` on models to load certain models only if the appropriate module is installed
  20. Bug Tracker
  21. ===========
  22. Bugs are tracked on `GitHub Issues
  23. <https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
  24. check there if your issue has already been reported. If you spotted it first,
  25. help us smashing it by providing a detailed and welcomed feedback.
  26. Credits
  27. =======
  28. Images
  29. ------
  30. * Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
  31. Contributors
  32. ------------
  33. * Holger Brunn <hbrunn@therp.nl>
  34. Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list <mailto:community@mail.odoo.com>`_ or the `appropriate specialized mailinglist <https://odoo-community.org/groups>`_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues.
  35. Maintainer
  36. ----------
  37. .. image:: https://odoo-community.org/logo.png
  38. :alt: Odoo Community Association
  39. :target: https://odoo-community.org
  40. This module is maintained by the OCA.
  41. OCA, or the Odoo Community Association, is a nonprofit organization whose
  42. mission is to support the collaborative development of Odoo features and
  43. promote its widespread use.
  44. To contribute to this module, please visit https://odoo-community.org.