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.

26 lines
1.1 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Author Nicolas Bessi. Copyright Camptocamp SA
  5. ##############################################################################
  6. {'name': 'Security protector',
  7. 'version': '0.1',
  8. 'category': 'Tools',
  9. 'description': """
  10. Prevent security to be changed when module is updated
  11. This module overwrite ir model acces write delete function.
  12. Only acces edited trough the UI or with manual_security_override in context set to True will be altered.
  13. When you try to delete a acces write it simply set all perms to false
  14. you can deactivate this behavior in ir.config_parameter by chanching the protect_security? key to 0
  15. """,
  16. 'author': "Camptocamp,Odoo Community Association (OCA)",
  17. 'website': 'http://openerp.camptocamp.com',
  18. 'license': 'AGPL-3',
  19. 'depends': ['base'],
  20. 'init_xml': ['data.xml'],
  21. 'update_xml': ['security_view.xml'],
  22. 'demo_xml': [],
  23. 'installable': False,
  24. 'auto_install': False,
  25. }
  26. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: