diff --git a/addons/web/__openerp__.py b/addons/web/__openerp__.py index 822d2fa3cbf..fa32a8595cc 100644 --- a/addons/web/__openerp__.py +++ b/addons/web/__openerp__.py @@ -1,71 +1,71 @@ { - "name" : "Web", - "category": "Hidden", - "description": + 'name': 'Web', + 'category': 'Hidden', + 'description': """ OpenERP Web core module. ======================== This module provides the core of the OpenERP Web Client. """, - "depends" : [], + 'depends': [], 'auto_install': True, - 'post_load' : 'wsgi_postload', + 'post_load': 'wsgi_postload', 'js' : [ - "static/lib/datejs/globalization/en-US.js", - "static/lib/datejs/core.js", - "static/lib/datejs/parser.js", - "static/lib/datejs/sugarpak.js", - "static/lib/datejs/extras.js", - "static/lib/jquery/jquery-1.7.2.js", - "static/lib/jquery.MD5/jquery.md5.js", - "static/lib/jquery.form/jquery.form.js", - "static/lib/jquery.validate/jquery.validate.js", - "static/lib/jquery.ba-bbq/jquery.ba-bbq.js", - "static/lib/spinjs/spin.js", - "static/lib/jquery.blockUI/jquery.blockUI.js", - "static/lib/jquery.ui/js/jquery-ui-1.8.17.custom.min.js", - "static/lib/jquery.ui.timepicker/js/jquery-ui-timepicker-addon.js", - "static/lib/jquery.ui.notify/js/jquery.notify.js", - "static/lib/jquery.deferred-queue/jquery.deferred-queue.js", - "static/lib/jquery.scrollTo/jquery.scrollTo-min.js", - "static/lib/jquery.tipsy/jquery.tipsy.js", - "static/lib/jquery.textext/jquery.textext.js", - "static/lib/jquery.timeago/jquery.timeago.js", - "static/lib/qweb/qweb2.js", - "static/lib/underscore/underscore.js", - "static/lib/underscore/underscore.string.js", - "static/lib/backbone/backbone.js", - "static/lib/cleditor/jquery.cleditor.js", - "static/lib/py.js/lib/py.js", - "static/src/js/boot.js", - "static/src/js/corelib.js", - "static/src/js/coresetup.js", - "static/src/js/dates.js", - "static/src/js/formats.js", - "static/src/js/chrome.js", - "static/src/js/views.js", - "static/src/js/data.js", - "static/src/js/data_export.js", - "static/src/js/data_import.js", - "static/src/js/search.js", - "static/src/js/view_form.js", - "static/src/js/view_list.js", - "static/src/js/view_list_editable.js", - "static/src/js/view_tree.js", + 'static/lib/datejs/globalization/en-US.js', + 'static/lib/datejs/core.js', + 'static/lib/datejs/parser.js', + 'static/lib/datejs/sugarpak.js', + 'static/lib/datejs/extras.js', + 'static/lib/jquery/jquery-1.7.2.js', + 'static/lib/jquery.MD5/jquery.md5.js', + 'static/lib/jquery.form/jquery.form.js', + 'static/lib/jquery.validate/jquery.validate.js', + 'static/lib/jquery.ba-bbq/jquery.ba-bbq.js', + 'static/lib/spinjs/spin.js', + 'static/lib/jquery.blockUI/jquery.blockUI.js', + 'static/lib/jquery.ui/js/jquery-ui-1.8.17.custom.min.js', + 'static/lib/jquery.ui.timepicker/js/jquery-ui-timepicker-addon.js', + 'static/lib/jquery.ui.notify/js/jquery.notify.js', + 'static/lib/jquery.deferred-queue/jquery.deferred-queue.js', + 'static/lib/jquery.scrollTo/jquery.scrollTo-min.js', + 'static/lib/jquery.tipsy/jquery.tipsy.js', + 'static/lib/jquery.textext/jquery.textext.js', + 'static/lib/jquery.timeago/jquery.timeago.js', + 'static/lib/qweb/qweb2.js', + 'static/lib/underscore/underscore.js', + 'static/lib/underscore/underscore.string.js', + 'static/lib/backbone/backbone.js', + 'static/lib/cleditor/jquery.cleditor.js', + 'static/lib/py.js/lib/py.js', + 'static/src/js/boot.js', + 'static/src/js/corelib.js', + 'static/src/js/coresetup.js', + 'static/src/js/dates.js', + 'static/src/js/formats.js', + 'static/src/js/chrome.js', + 'static/src/js/views.js', + 'static/src/js/data.js', + 'static/src/js/data_export.js', + 'static/src/js/data_import.js', + 'static/src/js/search.js', + 'static/src/js/view_form.js', + 'static/src/js/view_list.js', + 'static/src/js/view_list_editable.js', + 'static/src/js/view_tree.js', ], - 'css' : [ - "static/lib/jquery.ui.bootstrap/css/custom-theme/jquery-ui-1.8.16.custom.css", - "static/lib/jquery.ui.timepicker/css/jquery-ui-timepicker-addon.css", - "static/lib/jquery.ui.notify/css/ui.notify.css", - "static/lib/jquery.tipsy/tipsy.css", - "static/lib/jquery.textext/jquery.textext.css", - "static/src/css/base.css", - "static/src/css/data_export.css", - "static/src/css/data_import.css", - "static/lib/cleditor/jquery.cleditor.css", + 'css': [ + 'static/lib/jquery.ui.bootstrap/css/custom-theme/jquery-ui-1.8.16.custom.css', + 'static/lib/jquery.ui.timepicker/css/jquery-ui-timepicker-addon.css', + 'static/lib/jquery.ui.notify/css/ui.notify.css', + 'static/lib/jquery.tipsy/tipsy.css', + 'static/lib/jquery.textext/jquery.textext.css', + 'static/src/css/base.css', + 'static/src/css/data_export.css', + 'static/src/css/data_import.css', + 'static/lib/cleditor/jquery.cleditor.css', ], - 'qweb' : [ - "static/src/xml/*.xml", + 'qweb': [ + 'static/src/xml/*.xml', ], } diff --git a/addons/web_api/__openerp__.py b/addons/web_api/__openerp__.py index efc99afb7a9..a294719aaa6 100644 --- a/addons/web_api/__openerp__.py +++ b/addons/web_api/__openerp__.py @@ -1,10 +1,14 @@ { - "name" : "OpenERP Web API", - "category" : "Hidden", - "description":"""Openerp Web API.""", - "version" : "2.0", - "depends" : ['web'], - "installable" : True, + 'name': 'OpenERP Web API', + 'category': 'Hidden', + 'description': """ +Openerp Web API. +================ + +""", + 'version': '2.0', + 'depends': ['web'], + 'installable': True, 'auto_install': False, 'js' : [ ], diff --git a/addons/web_calendar/__openerp__.py b/addons/web_calendar/__openerp__.py index 807d7927dc0..86b971976f9 100644 --- a/addons/web_calendar/__openerp__.py +++ b/addons/web_calendar/__openerp__.py @@ -1,20 +1,24 @@ { - "name": "Web Calendar", - "category": "Hidden", - "description":"""OpenERP Web Calendar view.""", - "version": "2.0", - "depends": ['web'], - "js": [ + 'name': 'Web Calendar', + 'category': 'Hidden', + 'description':""" +OpenERP Web Calendar view. +========================== + +""", + 'version': '2.0', + 'depends': ['web'], + 'js': [ 'static/lib/dhtmlxScheduler/codebase/dhtmlxscheduler_debug.js', 'static/lib/dhtmlxScheduler/sources/ext/ext_minical.js', 'static/src/js/calendar.js' ], - "css": [ - 'static/lib/dhtmlxScheduler/codebase/ext/dhtmlxscheduler_ext.css', - 'static/src/css/web_calendar.css' - ], + 'css': [ + 'static/lib/dhtmlxScheduler/codebase/ext/dhtmlxscheduler_ext.css', + 'static/src/css/web_calendar.css' + ], 'qweb' : [ - "static/src/xml/*.xml", + 'static/src/xml/*.xml', ], 'auto_install': True } diff --git a/addons/web_diagram/__openerp__.py b/addons/web_diagram/__openerp__.py index eda044f686f..71156411fe3 100644 --- a/addons/web_diagram/__openerp__.py +++ b/addons/web_diagram/__openerp__.py @@ -1,21 +1,25 @@ { - "name" : "OpenERP Web Diagram", - "category" : "Hidden", - "description":"""Openerp Web Diagram view.""", - "version" : "2.0", - "depends" : ["web"], - "js": [ + 'name': 'OpenERP Web Diagram', + 'category': 'Hidden', + 'description': """ +Openerp Web Diagram view. +========================= + +""", + 'version': '2.0', + 'depends': ['web'], + 'js': [ 'static/lib/js/raphael.js', 'static/lib/js/jquery.mousewheel.js', 'static/src/js/vec2.js', 'static/src/js/graph.js', 'static/src/js/diagram.js', ], - 'css' : [ - "static/src/css/base_diagram.css", + 'css': [ + 'static/src/css/base_diagram.css', ], - 'qweb' : [ - "static/src/xml/*.xml", + 'qweb': [ + 'static/src/xml/*.xml', ], 'auto_install': True, } diff --git a/addons/web_gantt/__openerp__.py b/addons/web_gantt/__openerp__.py index 09528016c4c..3fef67a55f6 100644 --- a/addons/web_gantt/__openerp__.py +++ b/addons/web_gantt/__openerp__.py @@ -1,17 +1,21 @@ { - "name": "Web Gantt", - "category": "Hidden", - "description":"""OpenERP Web Gantt chart view.""", - "version": "2.0", - "depends": ['web'], - "js": [ + 'name': 'Web Gantt', + 'category': 'Hidden', + 'description': """ +OpenERP Web Gantt chart view. +============================= + +""", + 'version': '2.0', + 'depends': ['web'], + 'js': [ 'static/lib/dhtmlxGantt/sources/dhtmlxcommon.js', 'static/lib/dhtmlxGantt/sources/dhtmlxgantt.js', 'static/src/js/gantt.js' ], - "css": ['static/src/css/gantt.css', 'static/lib/dhtmlxGantt/codebase/dhtmlxgantt.css'], - 'qweb' : [ - "static/src/xml/*.xml", + 'css': ['static/src/css/gantt.css', 'static/lib/dhtmlxGantt/codebase/dhtmlxgantt.css'], + 'qweb': [ + 'static/src/xml/*.xml', ], 'auto_install': True } diff --git a/addons/web_graph/__openerp__.py b/addons/web_graph/__openerp__.py index 31c66863ebf..c62a1877ee0 100644 --- a/addons/web_graph/__openerp__.py +++ b/addons/web_graph/__openerp__.py @@ -1,7 +1,7 @@ { - "name": "Graph Views", - "category" : "Hidden", - "description":""" + 'name': 'Graph Views', + 'category': 'Hidden', + 'description': """ Graph Views for Web Client. =========================== @@ -12,47 +12,47 @@ Graph Views for Web Client. * Features: download as PNG or CSV, browse data grid, switch orientation * Unlimited "Group By" levels (not stacked), two cross level analysis (stacked) """, - "version": "3.0", - "depends": ['web'], - "js": [ - "static/lib/dropdown.js", - "static/lib/flotr2/lib/bean.js", - "static/lib/flotr2/js/Flotr.js", - "static/lib/flotr2/js/DefaultOptions.js", - "static/lib/flotr2/js/Color.js", - "static/lib/flotr2/js/Date.js", - "static/lib/flotr2/js/DOM.js", - "static/lib/flotr2/js/EventAdapter.js", - "static/lib/flotr2/js/Text.js", - "static/lib/flotr2/js/Graph.js", - "static/lib/flotr2/js/Axis.js", - "static/lib/flotr2/js/Series.js", - "static/lib/flotr2/js/types/lines.js", - "static/lib/flotr2/js/types/bars.js", - "static/lib/flotr2/js/types/bubbles.js", - "static/lib/flotr2/js/types/candles.js", - "static/lib/flotr2/js/types/gantt.js", - "static/lib/flotr2/js/types/markers.js", - "static/lib/flotr2/js/types/pie.js", - "static/lib/flotr2/js/types/points.js", - "static/lib/flotr2/js/types/radar.js", - "static/lib/flotr2/js/types/timeline.js", - "static/lib/flotr2/js/plugins/crosshair.js", - "static/lib/flotr2/js/plugins/download.js", - "static/lib/flotr2/js/plugins/grid.js", - "static/lib/flotr2/js/plugins/hit.js", - "static/lib/flotr2/js/plugins/selection.js", - "static/lib/flotr2/js/plugins/labels.js", - "static/lib/flotr2/js/plugins/legend.js", - "static/lib/flotr2/js/plugins/spreadsheet.js", - "static/lib/flotr2/js/plugins/titles.js", - "static/src/js/graph.js" + 'version': '3.0', + 'depends': ['web'], + 'js': [ + 'static/lib/dropdown.js', + 'static/lib/flotr2/lib/bean.js', + 'static/lib/flotr2/js/Flotr.js', + 'static/lib/flotr2/js/DefaultOptions.js', + 'static/lib/flotr2/js/Color.js', + 'static/lib/flotr2/js/Date.js', + 'static/lib/flotr2/js/DOM.js', + 'static/lib/flotr2/js/EventAdapter.js', + 'static/lib/flotr2/js/Text.js', + 'static/lib/flotr2/js/Graph.js', + 'static/lib/flotr2/js/Axis.js', + 'static/lib/flotr2/js/Series.js', + 'static/lib/flotr2/js/types/lines.js', + 'static/lib/flotr2/js/types/bars.js', + 'static/lib/flotr2/js/types/bubbles.js', + 'static/lib/flotr2/js/types/candles.js', + 'static/lib/flotr2/js/types/gantt.js', + 'static/lib/flotr2/js/types/markers.js', + 'static/lib/flotr2/js/types/pie.js', + 'static/lib/flotr2/js/types/points.js', + 'static/lib/flotr2/js/types/radar.js', + 'static/lib/flotr2/js/types/timeline.js', + 'static/lib/flotr2/js/plugins/crosshair.js', + 'static/lib/flotr2/js/plugins/download.js', + 'static/lib/flotr2/js/plugins/grid.js', + 'static/lib/flotr2/js/plugins/hit.js', + 'static/lib/flotr2/js/plugins/selection.js', + 'static/lib/flotr2/js/plugins/labels.js', + 'static/lib/flotr2/js/plugins/legend.js', + 'static/lib/flotr2/js/plugins/spreadsheet.js', + 'static/lib/flotr2/js/plugins/titles.js', + 'static/src/js/graph.js' ], - "css": [ - "static/src/css/*.css", + 'css': [ + 'static/src/css/*.css', ], 'qweb' : [ - "static/src/xml/*.xml", + 'static/src/xml/*.xml', ], - "auto_install": True + 'auto_install': True } diff --git a/addons/web_hello/__openerp__.py b/addons/web_hello/__openerp__.py index 0c733fb6b64..5d8a4baf597 100644 --- a/addons/web_hello/__openerp__.py +++ b/addons/web_hello/__openerp__.py @@ -1,11 +1,15 @@ { - "name": "Hello", - "category": "Hidden", - "description":"""OpenERP Web example module.""", - "version": "2.0", - "depends": [], - "js": ["static/*/*.js", "static/*/js/*.js"], - "css": [], + 'name': 'Hello', + 'category': 'Hidden', + 'description':""" +OpenERP Web example module. +=========================== + +""", + 'version': '2.0', + 'depends': [], + 'js': ['static/*/*.js', 'static/*/js/*.js'], + 'css': [], 'auto_install': False, 'web_preload': False, } diff --git a/addons/web_kanban/__openerp__.py b/addons/web_kanban/__openerp__.py index d283acfe91f..233a35a04d2 100644 --- a/addons/web_kanban/__openerp__.py +++ b/addons/web_kanban/__openerp__.py @@ -1,17 +1,21 @@ { - "name" : "Base Kanban", - "category": "Hidden", - "description":"""OpenERP Web kanban view.""", - "version" : "2.0", - "depends" : ["web"], - "js": [ - "static/src/js/kanban.js" + 'name': 'Base Kanban', + 'category': 'Hidden', + 'description': """ +OpenERP Web kanban view. +======================== + +""", + 'version': '2.0', + 'depends': ['web'], + 'js': [ + 'static/src/js/kanban.js' ], - "css": [ - "static/src/css/kanban.css" + 'css': [ + 'static/src/css/kanban.css' ], 'qweb' : [ - "static/src/xml/*.xml", + 'static/src/xml/*.xml', ], 'auto_install': True } diff --git a/addons/web_mobile/__openerp__.py b/addons/web_mobile/__openerp__.py index 614315a8a83..b37db9eeb54 100644 --- a/addons/web_mobile/__openerp__.py +++ b/addons/web_mobile/__openerp__.py @@ -1,8 +1,12 @@ { - "name" : "OpenERP Web Mobile", - "category": "Hidden", - "description":"""OpenERP Web Mobile.""", - "version" : "2.0", - "depends" : [], + 'name': 'OpenERP Web Mobile', + 'category': 'Hidden', + 'description': """ +OpenERP Web Mobile. +=================== + +""", + 'version': '2.0', + 'depends': [], 'auto_install': True, } diff --git a/addons/web_process/__openerp__.py b/addons/web_process/__openerp__.py index 9aea38a0676..7192e83fda7 100644 --- a/addons/web_process/__openerp__.py +++ b/addons/web_process/__openerp__.py @@ -1,17 +1,21 @@ { - "name" : "Process", - "version": "2.0", - "description":"""OpenERP Web process view.""", - "depends" : ["web_diagram"], - "js": [ + 'name': 'Process', + 'version': '2.0', + 'description': """ +OpenERP Web process view. +========================= + +""", + 'depends': ['web_diagram'], + 'js': [ 'static/lib/dracula/*.js', - "static/src/js/process.js" + 'static/src/js/process.js' ], - "css": [ - "static/src/css/process.css" + 'css': [ + 'static/src/css/process.css' ], 'qweb': [ - "static/src/xml/*.xml" + 'static/src/xml/*.xml' ], 'auto_install': True } diff --git a/addons/web_tests/__openerp__.py b/addons/web_tests/__openerp__.py index b76028b9418..b34f96f78b2 100644 --- a/addons/web_tests/__openerp__.py +++ b/addons/web_tests/__openerp__.py @@ -1,10 +1,14 @@ { - "name": "Tests", - "category": "Hidden", - "description":"""OpenERP Web test suite.""", - "version": "2.0", - "depends": [], - "js": ["static/src/js/*.js"], - "css": ['static/src/css/*.css'], + 'name': 'Tests', + 'category': 'Hidden', + 'description': """ +OpenERP Web test suite. +======================= + +""", + 'version': '2.0', + 'depends': [], + 'js': ['static/src/js/*.js'], + 'css': ['static/src/css/*.css'], 'auto_install': True, } diff --git a/addons/web_view_editor/__openerp__.py b/addons/web_view_editor/__openerp__.py index 317a6cbc367..2ead0bb21fd 100644 --- a/addons/web_view_editor/__openerp__.py +++ b/addons/web_view_editor/__openerp__.py @@ -1,14 +1,15 @@ { - "name": "View Editor", - "category": "Hidden", - "description": - """ - OpenERP Web to edit views. + 'name': 'View Editor', + 'category': 'Hidden', + 'description': """ +OpenERP Web to edit views. +========================== + """, - "version": "2.0", - "depends":['web'], - "js": ["static/src/js/view_editor.js"], - "css": ['static/src/css/view_editor.css'], - "qweb": ['static/src/xml/view_editor.xml'], + 'version': '2.0', + 'depends':['web'], + 'js': ['static/src/js/view_editor.js'], + 'css': ['static/src/css/view_editor.css'], + 'qweb': ['static/src/xml/view_editor.xml'], 'auto_install': True, }