[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": [ "test": [
], ],
"auto_install": False, "auto_install": False,
"installable": True, 'installable': False,
"application": False, "application": False,
"external_dependencies": { "external_dependencies": {
'python': [], 'python': [],

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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