From 98302fca76e58feec55c9a979e66d8815f5c6c5f Mon Sep 17 00:00:00 2001 From: Fabien Meghazi Date: Thu, 24 Apr 2014 14:26:21 +0200 Subject: [PATCH] [REM] Removed globs from manifest in order to automate bundlification bzr revid: fme@openerp.com-20140424122621-1smlpr1r7izuw369 --- addons/calendar/__openerp__.py | 2 +- addons/google_calendar/__openerp__.py | 4 ++-- addons/hr_holidays/__openerp__.py | 1 - addons/im/__openerp__.py | 5 ++++- addons/web_linkedin/__openerp__.py | 4 ++-- addons/website_hr_recruitment/__openerp__.py | 3 --- 6 files changed, 9 insertions(+), 10 deletions(-) diff --git a/addons/calendar/__openerp__.py b/addons/calendar/__openerp__.py index f0417db1bf6..53c0539c9d6 100644 --- a/addons/calendar/__openerp__.py +++ b/addons/calendar/__openerp__.py @@ -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': [ diff --git a/addons/google_calendar/__openerp__.py b/addons/google_calendar/__openerp__.py index 9f2bd1256e7..29ea95831a9 100644 --- a/addons/google_calendar/__openerp__.py +++ b/addons/google_calendar/__openerp__.py @@ -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', diff --git a/addons/hr_holidays/__openerp__.py b/addons/hr_holidays/__openerp__.py index 5d57dbab87e..90a6bafda8b 100644 --- a/addons/hr_holidays/__openerp__.py +++ b/addons/hr_holidays/__openerp__.py @@ -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', ], diff --git a/addons/im/__openerp__.py b/addons/im/__openerp__.py index 84775065371..45e64775299 100644 --- a/addons/im/__openerp__.py +++ b/addons/im/__openerp__.py @@ -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, diff --git a/addons/web_linkedin/__openerp__.py b/addons/web_linkedin/__openerp__.py index 508ca240780..c1aa995114c 100644 --- a/addons/web_linkedin/__openerp__.py +++ b/addons/web_linkedin/__openerp__.py @@ -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, diff --git a/addons/website_hr_recruitment/__openerp__.py b/addons/website_hr_recruitment/__openerp__.py index 810220e1db5..caf64776fca 100644 --- a/addons/website_hr_recruitment/__openerp__.py +++ b/addons/website_hr_recruitment/__openerp__.py @@ -20,8 +20,5 @@ OpenERP Contact Form 'demo': [ 'data/hr_job_demo.xml', ], - 'css': [ - 'static/src/css/*.css' - ], 'installable': True, }