__openerp__.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2010 Smile (<http://www.smile.fr>). All Rights Reserved
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # 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 General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. {
  22. "name": "Audit Trail",
  23. "version": "0.1",
  24. "sequence": 100,
  25. "category": "Tools",
  26. "author": "Smile",
  27. "license": 'AGPL-3',
  28. "website": 'http://www.smile.fr',
  29. "description": """
  30. This module lets administrator track every user operation on all the objects of the system (for the moment, only create, write and unlink methods).
  31. WARNING: This module is not compatible with audit, so uninstall it before installing this one.
  32. Suggestions & Feedback to: corentin.pouhet-brunerie@smile.fr
  33. """,
  34. "depends": [
  35. 'base',
  36. ],
  37. "data": [
  38. 'security/ir.model.access.csv',
  39. 'views/audit_rule_view.xml',
  40. 'views/audit_log_view.xml',
  41. 'views/menu.xml',
  42. ],
  43. "test": [
  44. 'test/audit_test.yml',
  45. ],
  46. 'installable': True,
  47. 'auto_install': False,
  48. 'application': False,
  49. }