[MIG] Make modules uninstallable

This commit is contained in:
Pedro M. Baeza 2015-10-14 03:16:56 +02:00
parent be9de30794
commit ef5b89c8ec
8 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

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

View File

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

View File

@ -48,7 +48,7 @@ Web pages
'test': [
'test/document_page_test00.yml'
],
'installable': True,
'installable': False,
'auto_install': False,
'images': [],
'css': ['static/src/css/document_page.css'],

View File

@ -54,7 +54,7 @@ Scenario
'security/document_page_security.xml',
'security/ir.model.access.csv',
],
'installable': True,
'installable': False,
'auto_install': False,
'images': [
'images/category.png',

View File

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

View File

@ -40,5 +40,5 @@ Module that allows to attach an URL as a document.
'qweb': [
'static/src/xml/url.xml',
],
"installable": True,
'installable': False,
}