Merge lp:~vauxoo/web-addons/7.0-web_hideleftmenu-changes-in-dictionary-opener-py-alan into lp:~vauxoo/web-addons/7.0-web_hideleftmenu

Proposed by Jesus Alan Guzman Escalante
Status: Needs review
Proposed branch: lp:~vauxoo/web-addons/7.0-web_hideleftmenu-changes-in-dictionary-opener-py-alan
Merge into: lp:~vauxoo/web-addons/7.0-web_hideleftmenu
Diff against target: 1519 lines (+581/-445)
21 files modified
multi_image/__openerp__.py (+27/-23)
multi_image_sample/__openerp__.py (+22/-13)
portal_public_documents/__openerp__.py (+29/-27)
web_allow_custom_root/__openerp__.py (+21/-18)
web_binary_icon/__openerp__.py (+27/-21)
web_bootstrap3/__openerp__.py (+28/-23)
web_camera/__openerp__.py (+25/-14)
web_color/__openerp__.py (+31/-21)
web_confirm_window_close/__openerp__.py (+23/-15)
web_export_view/__openerp__.py (+26/-16)
web_fancybox/__openerp__.py (+26/-21)
web_flagicons/__openerp__.py (+24/-19)
web_fontawesome/__openerp__.py (+33/-28)
web_gmaps/__openerp__.py (+34/-30)
web_gmaps_action/__openerp__.py (+38/-31)
web_hideleftmenu/__openerp__.py (+29/-21)
web_many2many_attachments/__openerp__.py (+28/-24)
web_nocreatedb/__openerp__.py (+25/-23)
web_popup_large/__openerp__.py (+18/-5)
web_process_prettyprint/__openerp__.py (+33/-24)
web_url/__openerp__.py (+34/-28)
To merge this branch: bzr merge lp:~vauxoo/web-addons/7.0-web_hideleftmenu-changes-in-dictionary-opener-py-alan
Reviewer Review Type Date Requested Status
Jorge Angel Naranjo Rogel - http://www.vauxoo.com Needs Fixing
Jesus Alan Guzman Escalante Pending
Moisés López - http://www.vauxoo.com Pending
Review via email: mp+233780@code.launchpad.net

Description of the change

changes generated __openerp__.py

To post a comment you must log in.
114. By Jesus Alan Guzman Escalante

[IMP] changes in file __openerp__.py on modules

115. By Jesus Alan Guzman Escalante

[IMP] changes in files __openerp__.py

116. By Jesus Alan Guzman Escalante

[IMP] space at the end of each line was removed and changed tabs by spaces

117. By Jesus Alan Guzman Escalante

[IMP]4 spaces at the end of the item description and splitting the line in the name

Revision history for this message
Jorge Angel Naranjo Rogel - http://www.vauxoo.com (jorge-nr) wrote :

@Alan

Note algunos cambios en los __openerp__.py

ejemplo en el diccionario existe un 'web_preload': False,
que lo esta eliminando. Desconocía la existencia de esa entidad en los archivos.

a) Hay que afirmar para que se ocupa esta propiedad
b) Si en la v8 se utiliza
c) Si si se utiliza, agregarla al script.

review: Needs Fixing

Unmerged revisions

117. By Jesus Alan Guzman Escalante

[IMP]4 spaces at the end of the item description and splitting the line in the name

116. By Jesus Alan Guzman Escalante

[IMP] space at the end of each line was removed and changed tabs by spaces

115. By Jesus Alan Guzman Escalante

[IMP] changes in files __openerp__.py

114. By Jesus Alan Guzman Escalante

[IMP] changes in file __openerp__.py on modules

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'multi_image/__openerp__.py'
2--- multi_image/__openerp__.py 2013-09-11 08:25:12 +0000
3+++ multi_image/__openerp__.py 2014-11-19 02:43:51 +0000
4@@ -1,6 +1,6 @@
5 # -*- coding: utf-8 -*-
6 ##############################################################################
7-#
8+#
9 # OpenERP, Open Source Management Solution
10 # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
11 # Copyright (C) 2011-2013 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).
12@@ -19,32 +19,36 @@
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 #
15 ##############################################################################
16-
17 {
18- "name" : "Multi Image",
19- "version" : "1.0",
20- "author" : "Serpent Consulting Services Pvt. Ltd.",
21- "category": 'Image',
22- 'complexity': "easy",
23- 'depends': ['web'],
24+ "name": "Multi Image",
25+ "version": "1.0",
26+ "author": "Serpent Consulting Services Pvt. Ltd.",
27+ "category": "Image",
28 "description": """
29 This module provides the functionality to store multiple images for one record.
30 All images store in server directory. so database size doesnot increase.
31+
32 """,
33- 'update_xml': [
34- ],
35- 'js':[
36- "static/lib/lightbox/js/jquery.lightbox.js",
37- "static/src/js/multi_image.js"
38- ],
39- 'css':[
40- "static/src/css/hoverbox.css",
41- "static/lib/lightbox/css/lightbox.css",
42- ],
43- 'website': 'http://www.serpentcs.com',
44- 'qweb': ['static/src/xml/image_multi.xml'],
45- 'installable': True,
46- 'auto_install': False,
47+ "website": "http://www.serpentcs.com",
48+ "license": "",
49+ "depends": [
50+ "web"
51+ ],
52+ "demo": [],
53+ "data": [],
54+ "test": [],
55+ "js": [
56+ "static/lib/lightbox/js/jquery.lightbox.js",
57+ "static/src/js/multi_image.js"
58+ ],
59+ "css": [
60+ "static/src/css/hoverbox.css",
61+ "static/lib/lightbox/css/lightbox.css"
62+ ],
63+ "qweb": [
64+ "static/src/xml/image_multi.xml"
65+ ],
66+ "installable": True,
67+ "auto_install": False
68 }
69-
70 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
71
72=== modified file 'multi_image_sample/__openerp__.py'
73--- multi_image_sample/__openerp__.py 2013-09-11 08:25:12 +0000
74+++ multi_image_sample/__openerp__.py 2014-11-19 02:43:51 +0000
75@@ -1,6 +1,6 @@
76 # -*- coding: utf-8 -*-
77 ##############################################################################
78-#
79+#
80 # OpenERP, Open Source Management Solution
81 # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
82 # Copyright (C) 2011-2013 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).
83@@ -19,21 +19,30 @@
84 # along with this program. If not, see <http://www.gnu.org/licenses/>.
85 #
86 ##############################################################################
87-
88 {
89- "name" : "Multi Image Sample",
90- "version" : "1.0",
91- "author" : "Serpent Consulting Services Pvt. Ltd.",
92- 'website': 'http://www.serpentcs.com',
93- "category": 'Image',
94- 'complexity': "easy",
95- 'depends': ['multi_image', 'product'],
96+ "name": "Multi Image Sample",
97+ "version": "1.0",
98+ "author": "Serpent Consulting Services Pvt. Ltd.",
99+ "category": "Image",
100 "description": """
101 This module is used for added multi image widget in product.
102+
103 """,
104- 'update_xml': ['product_view.xml'],
105- 'installable': True,
106- 'auto_install': False,
107+ "website": "http://www.serpentcs.com",
108+ "license": "",
109+ "depends": [
110+ "multi_image",
111+ "product"
112+ ],
113+ "demo": [],
114+ "data": [
115+ "product_view.xml"
116+ ],
117+ "test": [],
118+ "js": [],
119+ "css": [],
120+ "qweb": [],
121+ "installable": True,
122+ "auto_install": False
123 }
124-
125 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
126
127=== modified file 'portal_public_documents/__openerp__.py'
128--- portal_public_documents/__openerp__.py 2013-10-01 18:35:24 +0000
129+++ portal_public_documents/__openerp__.py 2014-11-19 02:43:51 +0000
130@@ -1,10 +1,10 @@
131 #-*- encoding: utf-8 -*-
132 {
133- 'name': "Portal Document Public",
134- 'website': 'http://www.vauxoo.com',
135- 'category': 'Portal',
136- 'author': 'Vauxoo',
137- 'description': """
138+ "name": "Portal Document Public",
139+ "version": "",
140+ "author": "Vauxoo",
141+ "category": "Tools",
142+ "description": """
143 With this module we will intend to build a "Public Link" to be served as public via http with and
144 without allow the indexing of it.
145
146@@ -15,27 +15,29 @@
147 inside openerp.
148
149 Share the link extending the "many2many tag widget."
150+
151 """,
152- 'category': 'Tools',
153- 'depends':[
154- 'web',
155- 'base',
156- 'document',
157- 'portal_anonymous',
158- ],
159- 'data': [
160- 'view/ir_attachment_view.xml',
161- 'data/portal_public_document_data.xml',
162- 'data/ppd_scheduler.xml',
163- ],
164- 'demo': [
165- 'demo/portal_public_document_demo.xml',
166- ],
167- 'js': [
168- ],
169- 'css': [
170- ],
171- 'qweb': [
172- ],
173- 'installable': True,
174+ "website": "http://www.vauxoo.com",
175+ "license": "",
176+ "depends": [
177+ "web",
178+ "base",
179+ "document",
180+ "portal_anonymous"
181+ ],
182+ "demo": [
183+ "demo/portal_public_document_demo.xml"
184+ ],
185+ "data": [
186+ "view/ir_attachment_view.xml",
187+ "data/portal_public_document_data.xml",
188+ "data/ppd_scheduler.xml"
189+ ],
190+ "test": [],
191+ "js": [],
192+ "css": [],
193+ "qweb": [],
194+ "installable": True,
195+ "auto_install": False
196 }
197+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
198
199=== modified file 'web_allow_custom_root/__openerp__.py'
200--- web_allow_custom_root/__openerp__.py 2013-10-20 08:07:58 +0000
201+++ web_allow_custom_root/__openerp__.py 2014-11-19 02:43:51 +0000
202@@ -1,4 +1,3 @@
203-
204 #-*- coding: utf-8 -*-
205 ###################################################################################################
206 #
207@@ -15,12 +14,12 @@
208 # You should have received a copy of the GNU General Public License along with this program.
209 # If not, see <http://www.gnu.org/licenses/>.
210 ###################################################################################################
211-
212 {
213- 'name': "Custom Init Template Parameters",
214- 'author': "Vauxoo",
215- 'category': "Hidden",
216- 'description': """
217+ "name": "Custom Init Template Parameters",
218+ "version": "0.1",
219+ "author": "Vauxoo",
220+ "category": "Hidden",
221+ "description": """
222 Make customizable your html_template:
223 =====================================
224
225@@ -70,17 +69,21 @@
226 options will be availables, change your config file and all will work smothly.
227
228 This is used in http://www.vauxoo.com see how it loads all this information very quickly.
229+
230 """,
231- 'version': "0.1",
232- 'depends': [
233- 'web',
234- 'base',
235- ],
236- 'js': [
237- ],
238- 'css': [
239- ],
240- 'qweb': [
241- ],
242- 'installable': True,
243+ "website": "",
244+ "license": "",
245+ "depends": [
246+ "web",
247+ "base"
248+ ],
249+ "demo": [],
250+ "data": [],
251+ "test": [],
252+ "js": [],
253+ "css": [],
254+ "qweb": [],
255+ "installable": True,
256+ "auto_install": False
257 }
258+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
259
260=== modified file 'web_binary_icon/__openerp__.py'
261--- web_binary_icon/__openerp__.py 2013-01-16 13:50:12 +0000
262+++ web_binary_icon/__openerp__.py 2014-11-19 02:43:51 +0000
263@@ -1,7 +1,7 @@
264 # -*- coding: utf-8 -*-
265 ##############################################################################
266 #
267-# OpenERP, Open Source Management Solution
268+# OpenERP, Open Source Management Solution
269 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
270 # Financed and Planified by Vauxoo
271 # developed by: nhomar@vauxoo.com
272@@ -20,12 +20,12 @@
273 # along with this program. If not, see <http://www.gnu.org/licenses/>.
274 #
275 ##############################################################################
276-
277 {
278- 'name': "Web Binary Icon",
279- 'author': "Vauxoo",
280- 'category': "Hidden",
281- 'description': """
282+ "name": "Web Binary Icon",
283+ "version": "1.0",
284+ "author": "Vauxoo",
285+ "category": "Hidden",
286+ "description": """
287 Binary Icon plugin.
288 ===================
289
290@@ -54,7 +54,7 @@
291 * .xml (Usefull for electronic invoices.)
292
293 Links as attachments should be cool of recognize too!.
294-
295+
296 * .googledoc
297
298 Images should be usefull, probably working in thumbnails feature.
299@@ -72,18 +72,24 @@
300 * .planner
301 * .Xmind
302 * .log
303-""",
304- 'version': "1.0",
305- 'depends': ['web'],
306- 'js': [
307- 'static/src/js/lib.js',
308- ],
309- 'css': [
310- ],
311- 'qweb': [
312- 'static/src/xml/lib.xml',
313- ],
314- 'installable': True,
315- 'auto_install': False,
316- 'web_preload': False,
317+
318+ """,
319+ "website": "",
320+ "license": "",
321+ "depends": [
322+ "web"
323+ ],
324+ "demo": [],
325+ "data": [],
326+ "test": [],
327+ "js": [
328+ "static/src/js/lib.js"
329+ ],
330+ "css": [],
331+ "qweb": [
332+ "static/src/xml/lib.xml"
333+ ],
334+ "installable": True,
335+ "auto_install": False
336 }
337+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
338
339=== modified file 'web_bootstrap3/__openerp__.py'
340--- web_bootstrap3/__openerp__.py 2013-10-07 22:18:43 +0000
341+++ web_bootstrap3/__openerp__.py 2014-11-19 02:43:51 +0000
342@@ -14,12 +14,12 @@
343 # You should have received a copy of the GNU General Public License along with this program.
344 # If not, see <http://www.gnu.org/licenses/>.
345 ###################################################################################################
346-
347 {
348- 'name': "Bootstrap 3.0 for OpenERP",
349- 'author': "Vauxoo",
350- 'category': "Hidden",
351- 'description': """
352+ "name": "Bootstrap 3.0 for OpenERP",
353+ "version": "1.0",
354+ "author": "Vauxoo",
355+ "category": "Hidden",
356+ "description": """
357 Bootstrap 3.0 in OpenERP
358 ========================
359
360@@ -69,23 +69,28 @@
361 .. _here http://getbootstrap.com/
362 .. _bootstrap https://github.com/twbs/bootstrap/
363 .. _link https://github.com/twbs/bootstrap/
364+ #'static/src/js/ekko-lightbox.js',
365+ 'web_preload': False, #set to True if you want this module be available always without ask.
366+
367 """,
368- 'version': "1.0",
369- 'depends': [
370- 'web'
371- ],
372- 'js': [
373- 'static/src/js/bootstrap.js',
374- 'static/src/js/bootstrap-lightbox.js',
375- #'static/src/js/ekko-lightbox.js',
376- ],
377- 'css': [
378- 'static/src/css/bs3-openerp.css',
379- 'static/src/css/bs3-lightbox.css',
380- ],
381- 'qweb': [
382- ],
383- 'installable': True,
384- 'auto_install': False,
385- 'web_preload': False, #set to True if you want this module be available always without ask.
386+ "website": "",
387+ "license": "",
388+ "depends": [
389+ "web"
390+ ],
391+ "demo": [],
392+ "data": [],
393+ "test": [],
394+ "js": [
395+ "static/src/js/bootstrap.js",
396+ "static/src/js/bootstrap-lightbox.js"
397+ ],
398+ "css": [
399+ "static/src/css/bs3-openerp.css",
400+ "static/src/css/bs3-lightbox.css"
401+ ],
402+ "qweb": [],
403+ "installable": True,
404+ "auto_install": False
405 }
406+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
407
408=== modified file 'web_camera/__openerp__.py'
409--- web_camera/__openerp__.py 2013-10-29 06:55:38 +0000
410+++ web_camera/__openerp__.py 2014-11-19 02:43:51 +0000
411@@ -18,11 +18,12 @@
412 # along with this program. If not, see <http://www.gnu.org/licenses/>.
413 #
414 ##############################################################################
415-
416 {
417- 'name': "Webcam Widget Module",
418- 'version': "1.0",
419- 'description': """
420+ "name": "Webcam Widget Module",
421+ "version": "1.0",
422+ "author": "Tech-Receptives Solutions Pvt. Ltd",
423+ "category": "",
424+ "description": """
425 Widget for Capturing Image using a webcam.
426 ==========================================
427
428@@ -32,16 +33,26 @@
429 Define in the view for the field widget="webcam"
430
431 It is all!
432+
433 """,
434- 'depends': ['web'],
435- 'website' : "http://www.techreceptives.com",
436- 'author': "Tech-Receptives Solutions Pvt. Ltd",
437- 'js': ['static/src/js/view.js'],
438- 'qweb': ['static/src/xml/webcam_template.xml'],
439- 'css' : ['static/src/css/base.css'],
440- 'installable': True,
441- 'auto_install': False,
442- 'application': True,
443+ "website": "http://www.techreceptives.com",
444+ "license": "",
445+ "depends": [
446+ "web"
447+ ],
448+ "demo": [],
449+ "data": [],
450+ "test": [],
451+ "js": [
452+ "static/src/js/view.js"
453+ ],
454+ "css": [
455+ "static/src/css/base.css"
456+ ],
457+ "qweb": [
458+ "static/src/xml/webcam_template.xml"
459+ ],
460+ "installable": True,
461+ "auto_install": False
462 }
463-
464 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
465
466=== modified file 'web_color/__openerp__.py'
467--- web_color/__openerp__.py 2012-11-27 20:52:47 +0000
468+++ web_color/__openerp__.py 2014-11-19 02:43:51 +0000
469@@ -1,6 +1,6 @@
470 # -*- encoding: utf-8 -*-
471 ############################################################################
472-#
473+#
474 # OpenERP, Open Source Web Color
475 # Copyright (C) 2012 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
476 #
477@@ -15,31 +15,41 @@
478 # GNU General Public License for more details.
479 #
480 # You should have received a copy of the GNU General Public License
481-# along with this program. If not, see <http://www.gnu.org/licenses/>.
482-#
483+# along with this program. If not, see <http://www.gnu.org/licenses/>.
484+#
485 # @author Étienne Beaudry Auger <etienne.b.auger@savoirfairelinux.com>
486 #
487 ##############################################################################
488 {
489- 'name': "Web Color",
490- 'author': "Savoir-faire Linux",
491- 'category' : "Hidden",
492- 'description': """
493+ "name": "Web Color",
494+ "version": "1.0",
495+ "author": "Savoir-faire Linux",
496+ "category": "Hidden",
497+ "description": """
498 This module provides a color widget to display the color from
499 the hexadecimal value of your field.
500+
501 """,
502- 'version': "1.0",
503- 'depends': ['web'],
504- 'js': [
505- 'static/src/js/lib.js',
506- 'static/lib/really-simple-color-picker/jquery.colorPicker.js',
507- ],
508- 'css': [
509- 'static/src/css/color.css',
510- 'static/lib/really-simple-color-picker/colorPicker.css',
511- ],
512- 'qweb' : ['static/src/xml/lib.xml'],
513- 'installable': True,
514- 'auto_install': False,
515- 'web_preload': False,
516+ "website": "",
517+ "license": "",
518+ "depends": [
519+ "web"
520+ ],
521+ "demo": [],
522+ "data": [],
523+ "test": [],
524+ "js": [
525+ "static/src/js/lib.js",
526+ "static/lib/really-simple-color-picker/jquery.colorPicker.js"
527+ ],
528+ "css": [
529+ "static/src/css/color.css",
530+ "static/lib/really-simple-color-picker/colorPicker.css"
531+ ],
532+ "qweb": [
533+ "static/src/xml/lib.xml"
534+ ],
535+ "installable": True,
536+ "auto_install": False
537 }
538+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
539
540=== modified file 'web_confirm_window_close/__openerp__.py'
541--- web_confirm_window_close/__openerp__.py 2013-08-22 15:19:36 +0000
542+++ web_confirm_window_close/__openerp__.py 2014-11-19 02:43:51 +0000
543@@ -18,10 +18,12 @@
544 # along with this program. If not, see <http://www.gnu.org/licenses/>.
545 #
546 ##############################################################################
547-
548 {
549- 'name': 'Check for unsaved data when closing browser window',
550- 'description': '''
551+ "name": "Check for unsaved data when closing browser window",
552+ "version": "7.0.1",
553+ "author": "Therp BV",
554+ "category": "Usability",
555+ "description": """
556 This addon will show a confirmation dialog when the user closes
557 a window with an OpenERP form containing unsaved data.
558
559@@ -29,16 +31,22 @@
560 while Firefox displays a generic confirmation message.
561
562 This module is compatible with OpenERP 7.0.
563-''',
564- 'version': '7.0.1',
565- 'author': 'Therp BV',
566- 'category': 'Usability',
567- 'website': 'https://launchpad.net/web-addons',
568- 'license': 'AGPL-3',
569- 'depends': [
570- 'web',
571- ],
572- 'js': [
573- 'static/src/js/web_confirm_window_close.js'
574- ],
575+
576+ """,
577+ "website": "https://launchpad.net/web-addons",
578+ "license": "AGPL-3",
579+ "depends": [
580+ "web"
581+ ],
582+ "demo": [],
583+ "data": [],
584+ "test": [],
585+ "js": [
586+ "static/src/js/web_confirm_window_close.js"
587+ ],
588+ "css": [],
589+ "qweb": [],
590+ "installable": True,
591+ "auto_install": False
592 }
593+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
594
595=== modified file 'web_export_view/__openerp__.py'
596--- web_export_view/__openerp__.py 2013-06-04 09:06:55 +0000
597+++ web_export_view/__openerp__.py 2014-11-19 02:43:51 +0000
598@@ -19,12 +19,12 @@
599 # along with this program. If not, see <http://www.gnu.org/licenses/>.
600 #
601 ##############################################################################
602-
603 {
604- 'name': 'Export Current View',
605- 'version': '1.1',
606- 'category': 'Web',
607- 'description': """
608+ "name": "Export Current View",
609+ "version": "1.1",
610+ "author": "Agile Business Group",
611+ "category": "Web",
612+ "description": """
613 WEB EXPORT VIEW
614 ===============
615
616@@ -43,17 +43,27 @@
617 After you installed it, you’ll find an additional link ‘Export current view’
618 right below the ‘Export’ one. By clicking on it you’ll get a XLS file contains
619 the same data of the tree view you are looking at, headers included.
620-""",
621- 'author': 'Agile Business Group',
622- 'website': 'http://www.agilebg.com',
623- 'license': 'AGPL-3',
624- 'depends': ['web'],
625- # 'external_dependencies': {
626 # 'python': ['xlwt'],
627 # },
628- 'js': ['static/*/*.js', 'static/*/js/*.js'],
629- 'qweb': ['static/xml/web_advanced_export.xml'],
630- 'installable': True,
631- 'auto_install': False,
632- 'web_preload': False,
633+
634+ """,
635+ "website": "http://www.agilebg.com",
636+ "license": "AGPL-3",
637+ "depends": [
638+ "web"
639+ ],
640+ "demo": [],
641+ "data": [],
642+ "test": [],
643+ "js": [
644+ "static/*/*.js",
645+ "static/*/js/*.js"
646+ ],
647+ "css": [],
648+ "qweb": [
649+ "static/xml/web_advanced_export.xml"
650+ ],
651+ "installable": True,
652+ "auto_install": False
653 }
654+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
655
656=== modified file 'web_fancybox/__openerp__.py'
657--- web_fancybox/__openerp__.py 2013-10-10 01:49:01 +0000
658+++ web_fancybox/__openerp__.py 2014-11-19 02:43:51 +0000
659@@ -14,33 +14,38 @@
660 # You should have received a copy of the GNU General Public License along with this program.
661 # If not, see <http://www.gnu.org/licenses/>.
662 ###################################################################################################
663-
664 {
665- 'name': "FancyBox for OpenERP",
666- 'author': "Vauxoo",
667- 'category': "Hidden",
668- 'description': """
669+ "name": "FancyBox for OpenERP",
670+ "version": "1.0",
671+ "author": "Vauxoo",
672+ "category": "Hidden",
673+ "description": """
674 Fancy box plugin for openerp
675 ============================
676
677 This module only make available this lib_ for openerp.
678
679 .. _lib http://fancybox.net/
680+ 'web_preload': False, #set to True if you want this module be available always without ask.
681+
682 """,
683- 'version': "1.0",
684- 'depends': [
685- 'web'
686- ],
687- 'js': [
688- 'static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js',
689- 'static/src/lib/fancyapps-fancyBox-18d1712/source/helpers/*.js',
690- ],
691- 'css': [
692- 'static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css',
693- ],
694- 'qweb': [
695- ],
696- 'installable': True,
697- 'auto_install': False,
698- 'web_preload': False, #set to True if you want this module be available always without ask.
699+ "website": "",
700+ "license": "",
701+ "depends": [
702+ "web"
703+ ],
704+ "demo": [],
705+ "data": [],
706+ "test": [],
707+ "js": [
708+ "static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js",
709+ "static/src/lib/fancyapps-fancyBox-18d1712/source/helpers/*.js"
710+ ],
711+ "css": [
712+ "static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css"
713+ ],
714+ "qweb": [],
715+ "installable": True,
716+ "auto_install": False
717 }
718+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
719
720=== modified file 'web_flagicons/__openerp__.py'
721--- web_flagicons/__openerp__.py 2013-08-26 18:50:15 +0000
722+++ web_flagicons/__openerp__.py 2014-11-19 02:43:51 +0000
723@@ -1,7 +1,7 @@
724 # -*- coding: utf-8 -*-
725 ##############################################################################
726 #
727-# OpenERP, Open Source Management Solution
728+# OpenERP, Open Source Management Solution
729 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
730 # Financed and Planified by Vauxoo
731 # developed by: nhomar@vauxoo.com
732@@ -20,28 +20,33 @@
733 # along with this program. If not, see <http://www.gnu.org/licenses/>.
734 #
735 ##############################################################################
736-
737 {
738- 'name': "Flag Icons",
739- 'author': "Vauxoo",
740- 'category': "Hidden",
741- 'description': """
742-Just let have available: Flag Sprites
743+ "name": "Flag Icons",
744+ "version": "1.0",
745+ "author": "Vauxoo",
746+ "category": "Hidden",
747+ "description": """
748+Just let have available: Flag Sprites
749
750 More information:
751
752 http://flag-sprites.com/
753+
754 """,
755- 'version': "1.0",
756- 'depends': ['web'],
757- 'js': [
758- ],
759- 'css': [
760- 'static/src/css/flags.css',
761- ],
762- 'qweb': [
763- ],
764- 'installable': True,
765- 'auto_install': False,
766- 'web_preload': False,
767+ "website": "",
768+ "license": "",
769+ "depends": [
770+ "web"
771+ ],
772+ "demo": [],
773+ "data": [],
774+ "test": [],
775+ "js": [],
776+ "css": [
777+ "static/src/css/flags.css"
778+ ],
779+ "qweb": [],
780+ "installable": True,
781+ "auto_install": False
782 }
783+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
784
785=== modified file 'web_fontawesome/__openerp__.py'
786--- web_fontawesome/__openerp__.py 2013-09-23 05:49:52 +0000
787+++ web_fontawesome/__openerp__.py 2014-11-19 02:43:51 +0000
788@@ -1,7 +1,7 @@
789 # -*- coding: utf-8 -*-
790 ##############################################################################
791 #
792-# OpenERP, Open Source Management Solution
793+# OpenERP, Open Source Management Solution
794 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
795 # Financed and Planified by Vauxoo
796 # developed by: nhomar@vauxoo.com
797@@ -20,13 +20,12 @@
798 # along with this program. If not, see <http://www.gnu.org/licenses/>.
799 #
800 ##############################################################################
801-
802 {
803- 'name': "FontAwesome 3.2.1",
804- 'author': "Vauxoo",
805- 'website': "http://www.vauxoo.com",
806- 'category': "Hidden",
807- 'description': """
808+ "name": "FontAwesome 3.2.1",
809+ "version": "1.0",
810+ "author": "Vauxoo",
811+ "category": "Hidden",
812+ "description": """
813 Just let have available: fontawesome for Bootstrap 3.0.2 available on Openerp V7.0
814
815 More information and documentation about how use it:
816@@ -41,12 +40,12 @@
817 A menu declared like this:
818
819 .. code::
820-
821+
822 + 45 <menuitem action="action_client_main"
823 <!-- Icon Home a little bigger. -->
824- + 46 web_icon="icon-home icon-large"
825+ + 46 web_icon="icon-home icon-large"
826 <!-- Name with an Space to avoid be ignored by the Web Client -->
827- + 47 name=" "
828+ + 47 name=" "
829 + 48 id="menu_client_home" sequence="1"/>
830
831 Will render something like this:
832@@ -55,29 +54,35 @@
833 :alt: Menu Example.
834
835 .. note::
836-
837+
838 Until `THIS MERGE`_ is not applied on server, to be able to use the feature explained above you
839 must apply this patch in your sever or simply merge the revno 4031 of this branch_.
840
841 You can use it too directly in your Form Views, simply try this examples_ on the
842 oficial FontAwesome documentation directly as simple html on your Form and Kanban Views.
843
844-.. _examples: http://fontawesome.io/examples/
845-.. _THIS MERGE: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar/+merge/186960
846-.. _branch: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar
847+.. _examples: http://fontawesome.io/examples/
848+.. _THIS MERGE: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar/+merge/186960
849+.. _branch: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar
850+ # 'static/src/css/font-awesome-ie7.css',
851+
852 """,
853- 'version': "1.0",
854- 'depends': ['web'],
855- 'js': [
856- ],
857- 'css': [
858- 'static/src/css/font-awesome.css',
859-# 'static/src/css/font-awesome-ie7.css',
860- ],
861- 'qweb': [
862- 'static/src/xml/base.xml',
863- ],
864- 'installable': True,
865- 'auto_install': False,
866- 'web_preload': False,
867+ "website": "http://www.vauxoo.com",
868+ "license": "",
869+ "depends": [
870+ "web"
871+ ],
872+ "demo": [],
873+ "data": [],
874+ "test": [],
875+ "js": [],
876+ "css": [
877+ "static/src/css/font-awesome.css"
878+ ],
879+ "qweb": [
880+ "static/src/xml/base.xml"
881+ ],
882+ "installable": True,
883+ "auto_install": False
884 }
885+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
886
887=== modified file 'web_gmaps/__openerp__.py'
888--- web_gmaps/__openerp__.py 2013-03-08 00:53:04 +0000
889+++ web_gmaps/__openerp__.py 2014-11-19 02:43:51 +0000
890@@ -1,7 +1,7 @@
891 # -*- coding: utf-8 -*-
892 ##############################################################################
893 #
894-# OpenERP, Open Source Management Solution
895+# OpenERP, Open Source Management Solution
896 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
897 # Financed and Planified by Vauxoo
898 # developed by: nhomar@vauxoo.com
899@@ -20,43 +20,47 @@
900 # along with this program. If not, see <http://www.gnu.org/licenses/>.
901 #
902 ##############################################################################
903-
904 {
905- 'name': "Alternative Gmaps Position",
906- 'author': "Vauxoo",
907- 'category': "Hidden",
908- 'description': """
909+ "name": "Alternative Gmaps Position",
910+ "version": "1.0",
911+ "author": "Vauxoo",
912+ "category": "Hidden",
913+ "description": """
914 Gmaps view:
915 ===========
916
917 Just allow given a point with this format X,Y in decimal coordinates, show the map.
918 You must to add:
919-
920+
921 <script type="text/javascript"
922- src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDo-1vLyCKoMU1JkZZSe2Z9xpknaB0d6Qc&sensor=true">
923+ src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDo-1vLyCKoMU1JkZZSe2Z9xpknaB0d6Qc&sensor=True">
924 </script>
925
926-on line 516 in addons/web/controllers/main.py of web project.
927+on line 516 in addons/web/controllers/main.py of web project.
928+
929 """,
930- 'version': "1.0",
931- 'depends': [
932- 'web',
933- 'crm_partner_assign'
934- ],
935- 'js': [
936- 'static/src/js/load_gmap_key.js',
937- 'static/src/js/lib.js',
938- ],
939- 'css': [
940- 'static/src/css/gmaps.css',
941- ],
942- 'qweb': [
943- 'static/src/xml/lib.xml',
944- ],
945- 'data': [
946- 'view/partner_view.xml'
947- ],
948- 'installable': True,
949- 'auto_install': False,
950- 'web_preload': False,
951+ "website": "",
952+ "license": "",
953+ "depends": [
954+ "web",
955+ "crm_partner_assign"
956+ ],
957+ "demo": [],
958+ "data": [
959+ "view/partner_view.xml"
960+ ],
961+ "test": [],
962+ "js": [
963+ "static/src/js/load_gmap_key.js",
964+ "static/src/js/lib.js"
965+ ],
966+ "css": [
967+ "static/src/css/gmaps.css"
968+ ],
969+ "qweb": [
970+ "static/src/xml/lib.xml"
971+ ],
972+ "installable": True,
973+ "auto_install": False
974 }
975+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
976
977=== modified file 'web_gmaps_action/__openerp__.py'
978--- web_gmaps_action/__openerp__.py 2013-11-29 14:11:20 +0000
979+++ web_gmaps_action/__openerp__.py 2014-11-19 02:43:51 +0000
980@@ -1,7 +1,7 @@
981 # -*- coding: utf-8 -*-
982 ##############################################################################
983 #
984-# OpenERP, Open Source Management Solution
985+# OpenERP, Open Source Management Solution
986 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
987 # Financed and Planified by Vauxoo
988 # developed by: nhomar@vauxoo.com
989@@ -22,10 +22,11 @@
990 #
991 ##############################################################################
992 {
993- 'name':"Web Action with Google Maps.",
994- 'category':'Hidden',
995- 'author': 'Vauxoo',
996- 'description': '''
997+ "name": "Web Action with Google Maps.",
998+ "version": "",
999+ "author": "Vauxoo",
1000+ "category": "Hidden",
1001+ "description": """
1002 Gmaps view:
1003 ===========
1004
1005@@ -47,31 +48,37 @@
1006
1007 code::
1008
1009- gmaps_api_key = https://maps.googleapis.com/maps/api/js?key=YOURKEYISALONGWIERDCHARACTERS&sensor=true
1010- ''',
1011- 'depends':[
1012- 'web',
1013- 'contacts',
1014- 'web_allow_custom_root',
1015- 'web_bootstrap3',
1016- 'decimal_precision',
1017- ],
1018- 'data':[
1019- 'data/gmaps_data.xml',
1020- 'res_partner_view.xml',
1021- 'gmaps_point_view.xml',
1022- ],
1023- 'demo':[
1024+ gmaps_api_key = https://maps.googleapis.com/maps/api/js?key=YOURKEYISALONGWIERDCHARACTERS&sensor=True
1025+ Information: https://developers.google.com/console/help/#generatingdevkeys
1026 #'web_gmaps_demo.xml'
1027- ],
1028- 'js':[
1029- 'static/src/js/gmaps.js',
1030- ],
1031- 'css':[
1032- 'static/src/css/gmaps.css'
1033- ],
1034- 'qweb':[
1035- 'static/src/xml/gmaps.xml'
1036- ],
1037+
1038+ """,
1039+ "website": "",
1040+ "license": "",
1041+ "depends": [
1042+ "web",
1043+ "contacts",
1044+ "web_allow_custom_root",
1045+ "web_bootstrap3",
1046+ "decimal_precision"
1047+ ],
1048+ "demo": [],
1049+ "data": [
1050+ "data/gmaps_data.xml",
1051+ "res_partner_view.xml",
1052+ "gmaps_point_view.xml"
1053+ ],
1054+ "test": [],
1055+ "js": [
1056+ "static/src/js/gmaps.js"
1057+ ],
1058+ "css": [
1059+ "static/src/css/gmaps.css"
1060+ ],
1061+ "qweb": [
1062+ "static/src/xml/gmaps.xml"
1063+ ],
1064+ "installable": True,
1065+ "auto_install": False
1066 }
1067-
1068+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1069
1070=== modified file 'web_hideleftmenu/__openerp__.py'
1071--- web_hideleftmenu/__openerp__.py 2013-03-18 00:33:59 +0000
1072+++ web_hideleftmenu/__openerp__.py 2014-11-19 02:43:51 +0000
1073@@ -1,7 +1,7 @@
1074 # -*- coding: utf-8 -*-
1075 ##############################################################################
1076 #
1077-# OpenERP, Open Source Management Solution
1078+# OpenERP, Open Source Management Solution
1079 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
1080 # Financed and Planified by Vauxoo
1081 # developed by: nhomar@vauxoo.com
1082@@ -20,33 +20,41 @@
1083 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1084 #
1085 ##############################################################################
1086-
1087 {
1088- 'name': "Web Url Alternative",
1089- 'author': "Vauxoo",
1090- 'category': "Hidden",
1091- 'description': """
1092+ "name": "Web Url Alternative",
1093+ "version": "1.0",
1094+ "author": "Vauxoo",
1095+ "category": "Hidden",
1096+ "description": """
1097 Hide Left menu:
1098 ===============
1099
1100-This module just add a button un User Menu to hide the left menu specially useful
1101+This module just add a button un User Menu to hide the left menu specially useful
1102 when you are analysing a bunch of data.
1103
1104 #TODO: It should be cool if menus stay dropdown after hide the left menu as V6.1
1105
1106+ #TODO: It should be cool if menus stay dropdown after hide the left menu as V6.1
1107+
1108 """,
1109- 'version': "1.0",
1110- 'depends': ['web'],
1111- 'js': [
1112- 'static/src/js/lib.js',
1113- ],
1114- 'css': [
1115- 'static/src/css/lib.css',
1116- ],
1117- 'qweb': [
1118- 'static/src/xml/lib.xml',
1119- ],
1120- 'installable': True,
1121- 'auto_install': False,
1122- 'web_preload': False,
1123+ "website": "",
1124+ "license": "",
1125+ "depends": [
1126+ "web"
1127+ ],
1128+ "demo": [],
1129+ "data": [],
1130+ "test": [],
1131+ "js": [
1132+ "static/src/js/lib.js"
1133+ ],
1134+ "css": [
1135+ "static/src/css/lib.css"
1136+ ],
1137+ "qweb": [
1138+ "static/src/xml/lib.xml"
1139+ ],
1140+ "installable": True,
1141+ "auto_install": False
1142 }
1143+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1144
1145=== modified file 'web_many2many_attachments/__openerp__.py'
1146--- web_many2many_attachments/__openerp__.py 2013-09-30 18:02:21 +0000
1147+++ web_many2many_attachments/__openerp__.py 2014-11-19 02:43:51 +0000
1148@@ -1,7 +1,7 @@
1149 # -*- coding: utf-8 -*-
1150 ##############################################################################
1151 #
1152-# OpenERP, Open Source Management Solution
1153+# OpenERP, Open Source Management Solution
1154 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
1155 # Financed and Planified by Vauxoo
1156 # developed by: nhomar@vauxoo.com
1157@@ -20,32 +20,36 @@
1158 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1159 #
1160 ##############################################################################
1161-
1162 {
1163- 'name': "Many2Many attachments",
1164- 'author': "Vauxoo",
1165- 'website': "http://www.vauxoo.com",
1166- 'category': "Hidden",
1167- 'description': """
1168+ "name": "Many2Many attachments",
1169+ "version": "1.0",
1170+ "author": "Vauxoo",
1171+ "category": "Hidden",
1172+ "description": """
1173 In order to allow get quickly the link directly to an attachment in OpenERP we need the session
1174 variable to be sure the session has access right to the file, and the algorithm to manage
1175 attachments in OpenERP depends of it.
1176+
1177 """,
1178- 'version': "1.0",
1179- 'depends': ['web',
1180- 'mail',
1181- 'portal_public_documents'
1182- ],
1183- 'js': [
1184- 'static/src/js/many2many_att.js',
1185- 'static/src/lib/URI.js'
1186- ],
1187- 'css': [
1188- ],
1189- 'qweb': [
1190- 'static/src/xml/many2many_att.xml'
1191- ],
1192- 'installable': True,
1193- 'auto_install': False,
1194- 'web_preload': False,
1195+ "website": "http://www.vauxoo.com",
1196+ "license": "",
1197+ "depends": [
1198+ "web",
1199+ "mail",
1200+ "portal_public_documents"
1201+ ],
1202+ "demo": [],
1203+ "data": [],
1204+ "test": [],
1205+ "js": [
1206+ "static/src/js/many2many_att.js",
1207+ "static/src/lib/URI.js"
1208+ ],
1209+ "css": [],
1210+ "qweb": [
1211+ "static/src/xml/many2many_att.xml"
1212+ ],
1213+ "installable": True,
1214+ "auto_install": False
1215 }
1216+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1217
1218=== modified file 'web_nocreatedb/__openerp__.py'
1219--- web_nocreatedb/__openerp__.py 2013-06-22 14:45:39 +0000
1220+++ web_nocreatedb/__openerp__.py 2014-11-19 02:43:51 +0000
1221@@ -3,7 +3,6 @@
1222 # Financed and Planified by Vauxoo
1223 # developed by: tulio@vauxoo.com
1224 #
1225-
1226 # This program is free software: you can redistribute it and/or modify
1227 # it under the terms of the GNU General Public License as
1228 # published by the Free Software Foundation, either version 3 of the
1229@@ -15,16 +14,15 @@
1230 # GNU General Public License for more details.
1231 #
1232 # You should have received a copy of the GNU General Public License
1233-# along with this program. If not, see <http://www.gnu.org/licenses/>.
1234+# along with this program. If not, see <http://www.gnu.org/licenses/>.
1235 #
1236 ##############################################################################
1237-
1238 {
1239- 'name': "NO create database link",
1240- 'author': "Vauxoo",
1241- 'category': "Web",
1242- 'website': "http://vauxoo.com",
1243- 'description': """
1244+ "name": "NO create database link",
1245+ "version": "1.0",
1246+ "author": "Vauxoo",
1247+ "category": "Web",
1248+ "description": """
1249 After install this module, you will not see anymore the
1250 "Manage Databases" link in login screen.
1251
1252@@ -41,27 +39,31 @@
1253 Then you can start your server without the -u and -d (just the first time you
1254 need update all to be sure all base and web will be fine).
1255
1256-With this option you can just take off and restart the server if you need to show
1257+With this option you can just take off and restart the server if you need to show
1258 the link temporaly again.
1259
1260 TODO: It should be great add a parameter in the database to hide it configurable
1261-way and with web_preload: True, but BTW, in old versions of openerp it was a
1262+way and with web_preload: True, but BTW, in old versions of openerp it was a
1263 parameter in the config file, i think as it is is fine for now.
1264
1265 .. note:: This module probably will not be shown in your module list by default
1266 You should create a menu to see "All modules without filter.
1267+
1268 """,
1269- 'version': "1.0",
1270- 'depends': [
1271- 'web',
1272- ],
1273- 'js': [
1274- ],
1275- 'css': [
1276- ],
1277- 'qweb': [
1278- 'static/src/xml/web_nocreatedb.xml',
1279- ],
1280- 'installable': True,
1281- 'auto_install': False,
1282+ "website": "http://vauxoo.com",
1283+ "license": "",
1284+ "depends": [
1285+ "web"
1286+ ],
1287+ "demo": [],
1288+ "data": [],
1289+ "test": [],
1290+ "js": [],
1291+ "css": [],
1292+ "qweb": [
1293+ "static/src/xml/web_nocreatedb.xml"
1294+ ],
1295+ "installable": True,
1296+ "auto_install": False
1297 }
1298+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1299
1300=== modified file 'web_popup_large/__openerp__.py'
1301--- web_popup_large/__openerp__.py 2013-09-19 10:27:57 +0000
1302+++ web_popup_large/__openerp__.py 2014-11-19 02:43:51 +0000
1303@@ -22,13 +22,26 @@
1304 "name": "Large pop-ups in web client",
1305 "version": "7.0.1.0",
1306 "author": "Therp BV",
1307- "category": 'Usability',
1308+ "category": "Usability",
1309 "description": """
1310 Pop-ups in the web client have a width of 900 pixels by default.
1311 This module changes this default width to 95% of the parent window.
1312+
1313 """,
1314- 'website': 'https://launchpad.net/web-addons',
1315- 'depends': ['web'],
1316- "license": 'AGPL-3',
1317- "js": ['static/src/js/web_popup_large.js'],
1318+ "website": "https://launchpad.net/web-addons",
1319+ "license": "AGPL-3",
1320+ "depends": [
1321+ "web"
1322+ ],
1323+ "demo": [],
1324+ "data": [],
1325+ "test": [],
1326+ "js": [
1327+ "static/src/js/web_popup_large.js"
1328+ ],
1329+ "css": [],
1330+ "qweb": [],
1331+ "installable": True,
1332+ "auto_install": False
1333 }
1334+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1335
1336=== modified file 'web_process_prettyprint/__openerp__.py'
1337--- web_process_prettyprint/__openerp__.py 2013-09-01 06:01:48 +0000
1338+++ web_process_prettyprint/__openerp__.py 2014-11-19 02:43:51 +0000
1339@@ -1,7 +1,7 @@
1340 # -*- coding: utf-8 -*-
1341 ##############################################################################
1342 #
1343-# OpenERP, Open Source Management Solution
1344+# OpenERP, Open Source Management Solution
1345 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
1346 # Financed and Planified by Vauxoo
1347 # developed by: nhomar@vauxoo.com
1348@@ -20,37 +20,46 @@
1349 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1350 #
1351 ##############################################################################
1352-
1353 {
1354- 'name': "Web Process PrettyPrint",
1355- 'author': "Vauxoo",
1356- 'category': "Hidden",
1357- 'description': """
1358+ "name": "Web Process PrettyPrint",
1359+ "version": "1.0",
1360+ "author": "Vauxoo",
1361+ "category": "Hidden",
1362+ "description": """
1363 Process PrettyPrint:
1364 ====================
1365
1366 This module configure all the necesary tools to print in the right way
1367 (as an ISO document the process view)
1368
1369- """,
1370- 'version': "1.0",
1371- 'depends': [
1372- 'web',
1373- 'process', #To show the process
1374+ 'process', #To show the process
1375 'hr', #To link process to hr departments and resposabilities.
1376 'document_page', #To build internal documentation Human readable.
1377 'document_ftp', #To links with external files.
1378- ],
1379- 'js': [
1380- 'static/src/js/lib.js',
1381- ],
1382- 'css': [
1383- 'static/src/css/lib.css',
1384- ],
1385- 'qweb': [
1386- 'static/src/xml/lib.xml',
1387- ],
1388- 'installable': False,
1389- 'auto_install': False,
1390- 'web_preload': False,
1391+
1392+ """,
1393+ "website": "",
1394+ "license": "",
1395+ "depends": [
1396+ "web",
1397+ "process",
1398+ "hr",
1399+ "document_page",
1400+ "document_ftp"
1401+ ],
1402+ "demo": [],
1403+ "data": [],
1404+ "test": [],
1405+ "js": [
1406+ "static/src/js/lib.js"
1407+ ],
1408+ "css": [
1409+ "static/src/css/lib.css"
1410+ ],
1411+ "qweb": [
1412+ "static/src/xml/lib.xml"
1413+ ],
1414+ "installable": False,
1415+ "auto_install": False
1416 }
1417+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
1418
1419=== modified file 'web_url/__openerp__.py'
1420--- web_url/__openerp__.py 2013-01-10 03:00:23 +0000
1421+++ web_url/__openerp__.py 2014-11-19 02:43:51 +0000
1422@@ -1,7 +1,7 @@
1423 # -*- coding: utf-8 -*-
1424 ##############################################################################
1425 #
1426-# OpenERP, Open Source Management Solution
1427+# OpenERP, Open Source Management Solution
1428 # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
1429 # Financed and Planified by Vauxoo
1430 # developed by: nhomar@vauxoo.com
1431@@ -20,55 +20,61 @@
1432 # along with this program. If not, see <http://www.gnu.org/licenses/>.
1433 #
1434 ##############################################################################
1435-
1436 {
1437- 'name': "Web Url Alternative",
1438- 'author': "Vauxoo",
1439- 'category': "Hidden",
1440- 'description': """
1441+ "name": "Web Url Alternative",
1442+ "version": "1.0",
1443+ "author": "Vauxoo",
1444+ "category": "Hidden",
1445+ "description": """
1446 Url Widget advanced.
1447 ====================
1448
1449-Before this module, the default widget just recognized as url all what start
1450-with http and if it dont start with this text then the original widget
1451+Before this module, the default widget just recognized as url all what start
1452+with http and if it dont start with this text then the original widget
1453 concatenated and http:// at the begining.
1454
1455-Due to the correct management of Urls fields in openerp, we improve the widget
1456+Due to the correct management of Urls fields in openerp, we improve the widget
1457 with an alternative way to manage this feature:
1458
1459-After you install this module,
1460+After you install this module,
1461
1462 * The field will be recognized as link when it start with: (ftp|http|https)
1463 * The link is managed with a _NEW target attr to avoid miss the actual page.
1464- * If the field bring just a text this one will be considered as a relative one
1465- to openerp (specially usefull when you need to put links to internal
1466+ * If the field bring just a text this one will be considered as a relative one
1467+ to openerp (specially usefull when you need to put links to internal
1468 files/requests).
1469 TODO: with this feature we lost the option of fill a field url with just
1470-www.domain.com and become automagically the link, i think this is correct too,
1471+www.domain.com and become automagically the link, i think this is correct too,
1472 but no so clear for me, i prefer use explicitaly the http:// stuff.
1473
1474 How to test:
1475-After install the module Just define your field with the atrubute
1476+After install the module Just define your field with the atrubute
1477 widget='relative_url' and it is ready i.e.
1478
1479 <field name="link_doc" widget="relative_url"/>
1480
1481 .. warning::
1482
1483- be sure make your module depends of this one, to avoid brake the view when
1484+ be sure make your module depends of this one, to avoid brake the view when
1485 it will be loaded.
1486+
1487 """,
1488- 'version': "1.0",
1489- 'depends': ['web'],
1490- 'js': [
1491- 'static/src/js/lib.js',
1492- ],
1493- 'css': [
1494- ],
1495- 'qweb': [
1496- 'static/src/xml/lib.xml',
1497- ],
1498- 'installable': True,
1499- 'auto_install': False,
1500- 'web_preload': False,
1501+ "website": "",
1502+ "license": "",
1503+ "depends": [
1504+ "web"
1505+ ],
1506+ "demo": [],
1507+ "data": [],
1508+ "test": [],
1509+ "js": [
1510+ "static/src/js/lib.js"
1511+ ],
1512+ "css": [],
1513+ "qweb": [
1514+ "static/src/xml/lib.xml"
1515+ ],
1516+ "installable": True,
1517+ "auto_install": False
1518 }
1519+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

Subscribers

People subscribed via source and target branches

to all changes: