Browse Source

[MIG] Make modules uninstallable

pull/292/head
Pedro M. Baeza 9 years ago
parent
commit
a157036fca
  1. 2
      admin_technical_features/__openerp__.py
  2. 2
      auditlog/__openerp__.py
  3. 2
      auth_admin_passkey/__openerp__.py
  4. 2
      auth_dynamic_groups/__openerp__.py
  5. 2
      auth_from_http_remote_user/__openerp__.py
  6. 2
      base_concurrency/__openerp__.py
  7. 2
      base_debug4all/__openerp__.py
  8. 2
      base_external_dbsource/__openerp__.py
  9. 2
      base_field_serialized/__openerp__.py
  10. 2
      base_optional_quick_create/__openerp__.py
  11. 2
      base_report_auto_create_qweb/__openerp__.py
  12. 2
      base_suspend_security/__openerp__.py
  13. 2
      base_user_gravatar/__openerp__.py
  14. 2
      cron_run_manually/__openerp__.py
  15. 1
      database_cleanup/__openerp__.py
  16. 2
      dbfilter_from_header/__openerp__.py
  17. 2
      disable_openerp_online/__openerp__.py
  18. 2
      fetchmail_attach_from_folder/__openerp__.py
  19. 2
      fetchmail_notify_error_to_sender/__openerp__.py
  20. 1
      inactive_session_timeout/__openerp__.py
  21. 1
      language_path_mixin/__openerp__.py
  22. 2
      mail_environment/__openerp__.py
  23. 2
      mass_editing/__openerp__.py
  24. 2
      module_prototyper/__openerp__.py
  25. 2
      qweb_usertime/__openerp__.py
  26. 2
      scheduler_error_mailer/__openerp__.py
  27. 2
      server_environment/__openerp__.py
  28. 2
      server_environment_files_sample/__openerp__.py
  29. 1
      shell/__openerp__.py
  30. 2
      super_calendar/__openerp__.py
  31. 2
      users_ldap_groups/__openerp__.py
  32. 2
      users_ldap_mail/__openerp__.py
  33. 2
      users_ldap_populate/__openerp__.py
  34. 1
      web_context_tunnel/__openerp__.py

2
admin_technical_features/__openerp__.py

@ -38,5 +38,5 @@
],
'demo': [],
'test': [],
'installable': True,
'installable': False,
}

2
auditlog/__openerp__.py

@ -33,6 +33,6 @@
'views/auditlog_view.xml',
],
'application': True,
'installable': True,
'installable': False,
'pre_init_hook': 'pre_init_hook',
}

2
auth_admin_passkey/__openerp__.py

@ -41,6 +41,6 @@
'images': [],
'post_load': '',
'application': False,
'installable': True,
'installable': False,
'auto_install': False,
}

2
auth_dynamic_groups/__openerp__.py

@ -32,7 +32,7 @@
'view/res_groups.xml',
],
"auto_install": False,
"installable": True,
'installable': False,
"external_dependencies": {
'python': [],
},

2
auth_from_http_remote_user/__openerp__.py

@ -31,7 +31,7 @@
"demo": [],
"test": [],
"active": False,
"installable": True,
'installable': False,
"auto_install": False,
"application": False,
}

2
base_concurrency/__openerp__.py

@ -40,5 +40,5 @@ avoid breaking modules which access via SQL the login_date column, a cron
"data": ['security/ir.model.access.csv',
'cron.xml'],
"auto_install": False,
"installable": True
'installable': False
}

2
base_debug4all/__openerp__.py

@ -30,5 +30,5 @@
"qweb": [
'static/src/xml/base.xml',
],
"installable": True,
'installable': False,
}

2
base_external_dbsource/__openerp__.py

@ -60,5 +60,5 @@ Contributors
'test': [
'test/dbsource_connect.yml',
],
'installable': True,
'installable': False,
}

2
base_field_serialized/__openerp__.py

@ -30,6 +30,6 @@
'base',
],
"auto_install": False,
"installable": True,
'installable': False,
"application": False,
}

2
base_optional_quick_create/__openerp__.py

@ -41,5 +41,5 @@ Got the idea from https://twitter.com/nbessi/status/337869826028605441
],
"demo": [],
'test': [],
"installable": True
'installable': False
}

2
base_report_auto_create_qweb/__openerp__.py

@ -43,5 +43,5 @@
"wizard/report_duplicate_view.xml",
"views/report_xml_view.xml",
],
"installable": True,
'installable': False,
}

2
base_suspend_security/__openerp__.py

@ -30,7 +30,7 @@
"test": [
],
"auto_install": False,
"installable": True,
'installable': False,
"application": False,
"external_dependencies": {
'python': [],

2
base_user_gravatar/__openerp__.py

@ -10,7 +10,7 @@
'website': 'http://www.endikaiglesias.com/',
"license": "AGPL-3",
"application": False,
"installable": True,
'installable': False,
'depends': ['base'],
'data': [
'views/res_users_view.xml',

2
cron_run_manually/__openerp__.py

@ -33,5 +33,5 @@ of the scheduler.
"test": [
"tests/correct_uid.yml",
],
'installable': True,
'installable': False,
}

1
database_cleanup/__openerp__.py

@ -35,4 +35,5 @@
'view/purge_data.xml',
'view/menu.xml',
],
'installable': False,
}

2
dbfilter_from_header/__openerp__.py

@ -46,7 +46,7 @@
"css": [
],
"auto_install": False,
"installable": True,
'installable': False,
"external_dependencies": {
'python': [],
},

2
disable_openerp_online/__openerp__.py

@ -47,5 +47,5 @@ come with the standard code:
"qweb": [
'static/src/xml/base.xml',
],
"installable": True,
'installable': False,
}

2
fetchmail_attach_from_folder/__openerp__.py

@ -34,6 +34,6 @@
'wizard/attach_mail_manually.xml',
'security/ir.model.access.csv',
],
'installable': True,
'installable': False,
'auto_install': False,
}

2
fetchmail_notify_error_to_sender/__openerp__.py

@ -35,6 +35,6 @@
],
'qweb': [
],
'installable': True,
'installable': False,
'auto_install': False,
}

1
inactive_session_timeout/__openerp__.py

@ -41,4 +41,5 @@
'data': [
'data/ir_config_parameter_data.xml'
]
'installable': False,
}

1
language_path_mixin/__openerp__.py

@ -30,4 +30,5 @@
'depends': [
'base',
],
'installable': False,
}

2
mail_environment/__openerp__.py

@ -66,6 +66,6 @@ password = openerp
],
'data': ['mail_view.xml'],
'demo': [],
'installable': True,
'installable': False,
'active': False,
}

2
mass_editing/__openerp__.py

@ -45,7 +45,7 @@
"security/ir.model.access.csv",
'views/mass_editing_view.xml',
],
'installable': True,
'installable': False,
'application': True,
'auto_install': False,
}

2
module_prototyper/__openerp__.py

@ -41,6 +41,6 @@
'views/ir_model_fields_view.xml',
'security/ir.model.access.csv',
],
'installable': True,
'installable': False,
'application': True,
}

2
qweb_usertime/__openerp__.py

@ -37,5 +37,5 @@
},
'data': [
],
'installable': True,
'installable': False,
}

2
scheduler_error_mailer/__openerp__.py

@ -44,5 +44,5 @@ an error.""",
],
'demo': ['ir_cron_demo.xml'],
'images': ['images/scheduler_error_mailer.jpg'],
'installable': True,
'installable': False,
}

2
server_environment/__openerp__.py

@ -82,6 +82,6 @@ Example usage
"data": [
'serv_config.xml',
],
"installable": True,
'installable': False,
"active": False,
}

2
server_environment_files_sample/__openerp__.py

@ -44,6 +44,6 @@ variable of the OpenERP configuration file.
"license": "GPL-3 or any later version",
"category": "Tools",
"data": [],
"installable": True,
'installable': False,
"active": False,
}

1
shell/__openerp__.py

@ -3,4 +3,5 @@
'summary': 'Backport of the v9 shell CLI command.',
'author': "Daniel Reis,Odoo Community Association (OCA)",
'version': '8.0.1.0.0',
'installable': False,
}

2
super_calendar/__openerp__.py

@ -46,7 +46,7 @@
],
'demo': [],
'test': [],
'installable': True,
'installable': False,
'application': True,
'auto_install': False,
}

2
users_ldap_groups/__openerp__.py

@ -33,7 +33,7 @@ Adds user accounts to groups based on rules defined by the administrator.
'users_ldap_groups.xml',
'security/ir.model.access.csv',
],
"installable": True,
'installable': False,
"external_dependencies": {
'python': ['ldap'],
},

2
users_ldap_mail/__openerp__.py

@ -38,5 +38,5 @@ AD also supports the "mail" attribute, so it can be mapped into OpenERP.
'data': [
'users_ldap_view.xml',
],
'installable': True,
'installable': False,
}

2
users_ldap_populate/__openerp__.py

@ -48,5 +48,5 @@ object you want to query.
'view/users_ldap.xml',
'view/populate_wizard.xml',
],
'installable': True,
'installable': False,
}

1
web_context_tunnel/__openerp__.py

@ -91,4 +91,5 @@ https://github.com/openerpbrasil/l10n_br_core/commit/33065366726a83dbc69b9f0031c
'css': [],
'auto_install': False,
'web_preload': False,
'installable': False,
}
Loading…
Cancel
Save