[REM] Removed globs from manifest in order to automate bundlification

bzr revid: fme@openerp.com-20140424122621-1smlpr1r7izuw369
This commit is contained in:
Fabien Meghazi 2014-04-24 14:26:21 +02:00
parent c304c5a80b
commit 98302fca76
6 changed files with 9 additions and 10 deletions

View File

@ -46,7 +46,7 @@ If you need to manage your meetings, you should install the CRM module.
'calendar_data.xml',
],
'js': [
'static/src/js/*.js'
'static/src/js/base_calendar.js'
],
'qweb': ['static/src/xml/*.xml'],
'css': [

View File

@ -31,8 +31,8 @@ The module adds the possibility to synchronize Google Calendar with OpenERP
'author': 'OpenERP SA',
'website': 'http://www.openerp.com',
'depends': ['google_account','calendar'],
'css': ['static/src/css/*.css'],
'js': ['static/src/js/*.js'],
'css': ['static/src/css/google_calendar.css'],
'js': ['static/src/js/calendar_sync.js'],
'qweb': ['static/src/xml/*.xml'],
'data': [
'res_config_view.xml',

View File

@ -60,7 +60,6 @@ A synchronization with an internal agenda (Meetings of the CRM module) is also p
'board_hr_holidays_view.xml',
],
'demo': ['hr_holidays_demo.xml',],
'js': ['static/src/js/*.js'],
'qweb': [
'static/src/xml/*.xml',
],

View File

@ -22,7 +22,10 @@ chat in real time. It support several chats in parallel.
'static/src/js/im_common.js',
'static/src/js/im.js',
],
'css': ['static/src/css/*.css'],
'css': [
'static/src/css/im.css',
'static/src/css/im_common.css',
],
'qweb': ['static/src/xml/*.xml'],
'installable': True,
'auto_install': False,

View File

@ -11,8 +11,8 @@ This module provides the Integration of the LinkedIn with OpenERP.
""",
'data': ['web_linkedin_view.xml'],
'depends' : ['web','crm'],
'js': ['static/src/js/*.js'],
'css': ['static/src/css/*.css'],
'js': ['static/src/js/linkedin.js'],
'css': ['static/src/css/linkedin.css'],
'qweb': ['static/src/xml/*.xml'],
'installable': True,
'auto_install': False,

View File

@ -20,8 +20,5 @@ OpenERP Contact Form
'demo': [
'data/hr_job_demo.xml',
],
'css': [
'static/src/css/*.css'
],
'installable': True,
}