~eoc/server-env-tools/6.1-mass_editing-fix_bug_1187937

« back to all changes in this revision

Viewing changes to security_protector/__openerp__.py

  • Committer: nicolas.bessi at camptocamp
  • Date: 2012-02-14 10:17:16 UTC
  • Revision ID: nicolas.bessi@camptocamp.com-20120214101716-h4mniuel9xd82rrb
[ADD] security protector
(lp:c2c-addons/6.1  rev 37)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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',
 
17
 'website': 'http://openerp.camptocamp.com',
 
18
 'depends': ['base'],
 
19
 'init_xml': ['data.xml'],
 
20
 'update_xml': ['security_view.xml'],
 
21
 'demo_xml': [],
 
22
 'installable': True,
 
23
 'auto_install': False}
 
24
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: