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
=== modified file 'multi_image/__openerp__.py'
--- multi_image/__openerp__.py 2013-09-11 08:25:12 +0000
+++ multi_image/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,6 +1,6 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3# 3#
4# OpenERP, Open Source Management Solution4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)5# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
6# Copyright (C) 2011-2013 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).6# Copyright (C) 2011-2013 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).
@@ -19,32 +19,36 @@
19# along with this program. If not, see <http://www.gnu.org/licenses/>.19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#20#
21##############################################################################21##############################################################################
22
23{22{
24 "name" : "Multi Image",23 "name": "Multi Image",
25 "version" : "1.0",24 "version": "1.0",
26 "author" : "Serpent Consulting Services Pvt. Ltd.",25 "author": "Serpent Consulting Services Pvt. Ltd.",
27 "category": 'Image',26 "category": "Image",
28 'complexity': "easy",
29 'depends': ['web'],
30 "description": """27 "description": """
31 This module provides the functionality to store multiple images for one record.28 This module provides the functionality to store multiple images for one record.
32 All images store in server directory. so database size doesnot increase.29 All images store in server directory. so database size doesnot increase.
30
33 """,31 """,
34 'update_xml': [32 "website": "http://www.serpentcs.com",
35 ],33 "license": "",
36 'js':[34 "depends": [
37 "static/lib/lightbox/js/jquery.lightbox.js",35 "web"
38 "static/src/js/multi_image.js"36 ],
39 ],37 "demo": [],
40 'css':[38 "data": [],
41 "static/src/css/hoverbox.css",39 "test": [],
42 "static/lib/lightbox/css/lightbox.css",40 "js": [
43 ],41 "static/lib/lightbox/js/jquery.lightbox.js",
44 'website': 'http://www.serpentcs.com',42 "static/src/js/multi_image.js"
45 'qweb': ['static/src/xml/image_multi.xml'],43 ],
46 'installable': True,44 "css": [
47 'auto_install': False,45 "static/src/css/hoverbox.css",
46 "static/lib/lightbox/css/lightbox.css"
47 ],
48 "qweb": [
49 "static/src/xml/image_multi.xml"
50 ],
51 "installable": True,
52 "auto_install": False
48}53}
49
50# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:54# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
5155
=== modified file 'multi_image_sample/__openerp__.py'
--- multi_image_sample/__openerp__.py 2013-09-11 08:25:12 +0000
+++ multi_image_sample/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,6 +1,6 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3# 3#
4# OpenERP, Open Source Management Solution4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)5# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
6# Copyright (C) 2011-2013 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).6# Copyright (C) 2011-2013 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>).
@@ -19,21 +19,30 @@
19# along with this program. If not, see <http://www.gnu.org/licenses/>.19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#20#
21##############################################################################21##############################################################################
22
23{22{
24 "name" : "Multi Image Sample",23 "name": "Multi Image Sample",
25 "version" : "1.0",24 "version": "1.0",
26 "author" : "Serpent Consulting Services Pvt. Ltd.",25 "author": "Serpent Consulting Services Pvt. Ltd.",
27 'website': 'http://www.serpentcs.com',26 "category": "Image",
28 "category": 'Image',
29 'complexity': "easy",
30 'depends': ['multi_image', 'product'],
31 "description": """27 "description": """
32 This module is used for added multi image widget in product.28 This module is used for added multi image widget in product.
29
33 """,30 """,
34 'update_xml': ['product_view.xml'],31 "website": "http://www.serpentcs.com",
35 'installable': True,32 "license": "",
36 'auto_install': False,33 "depends": [
34 "multi_image",
35 "product"
36 ],
37 "demo": [],
38 "data": [
39 "product_view.xml"
40 ],
41 "test": [],
42 "js": [],
43 "css": [],
44 "qweb": [],
45 "installable": True,
46 "auto_install": False
37}47}
38
39# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:48# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
4049
=== modified file 'portal_public_documents/__openerp__.py'
--- portal_public_documents/__openerp__.py 2013-10-01 18:35:24 +0000
+++ portal_public_documents/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,10 +1,10 @@
1#-*- encoding: utf-8 -*-1#-*- encoding: utf-8 -*-
2{2{
3 'name': "Portal Document Public",3 "name": "Portal Document Public",
4 'website': 'http://www.vauxoo.com',4 "version": "",
5 'category': 'Portal',5 "author": "Vauxoo",
6 'author': 'Vauxoo',6 "category": "Tools",
7 'description': """7 "description": """
8With this module we will intend to build a "Public Link" to be served as public via http with and8With this module we will intend to build a "Public Link" to be served as public via http with and
9without allow the indexing of it.9without allow the indexing of it.
1010
@@ -15,27 +15,29 @@
15inside openerp.15inside openerp.
1616
17Share the link extending the "many2many tag widget."17Share the link extending the "many2many tag widget."
18
18 """,19 """,
19 'category': 'Tools',20 "website": "http://www.vauxoo.com",
20 'depends':[21 "license": "",
21 'web',22 "depends": [
22 'base',23 "web",
23 'document',24 "base",
24 'portal_anonymous',25 "document",
25 ],26 "portal_anonymous"
26 'data': [27 ],
27 'view/ir_attachment_view.xml',28 "demo": [
28 'data/portal_public_document_data.xml',29 "demo/portal_public_document_demo.xml"
29 'data/ppd_scheduler.xml',30 ],
30 ],31 "data": [
31 'demo': [32 "view/ir_attachment_view.xml",
32 'demo/portal_public_document_demo.xml',33 "data/portal_public_document_data.xml",
33 ],34 "data/ppd_scheduler.xml"
34 'js': [35 ],
35 ],36 "test": [],
36 'css': [37 "js": [],
37 ],38 "css": [],
38 'qweb': [39 "qweb": [],
39 ],40 "installable": True,
40 'installable': True,41 "auto_install": False
41}42}
43# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
4244
=== modified file 'web_allow_custom_root/__openerp__.py'
--- web_allow_custom_root/__openerp__.py 2013-10-20 08:07:58 +0000
+++ web_allow_custom_root/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,4 +1,3 @@
1
2#-*- coding: utf-8 -*-1#-*- coding: utf-8 -*-
3###################################################################################################2###################################################################################################
4#3#
@@ -15,12 +14,12 @@
15# You should have received a copy of the GNU General Public License along with this program.14# You should have received a copy of the GNU General Public License along with this program.
16# If not, see <http://www.gnu.org/licenses/>.15# If not, see <http://www.gnu.org/licenses/>.
17###################################################################################################16###################################################################################################
18
19{17{
20 'name': "Custom Init Template Parameters",18 "name": "Custom Init Template Parameters",
21 'author': "Vauxoo",19 "version": "0.1",
22 'category': "Hidden",20 "author": "Vauxoo",
23 'description': """21 "category": "Hidden",
22 "description": """
24Make customizable your html_template:23Make customizable your html_template:
25=====================================24=====================================
2625
@@ -70,17 +69,21 @@
70options will be availables, change your config file and all will work smothly.69options will be availables, change your config file and all will work smothly.
7170
72This is used in http://www.vauxoo.com see how it loads all this information very quickly.71This is used in http://www.vauxoo.com see how it loads all this information very quickly.
72
73 """,73 """,
74 'version': "0.1",74 "website": "",
75 'depends': [75 "license": "",
76 'web',76 "depends": [
77 'base',77 "web",
78 ],78 "base"
79 'js': [79 ],
80 ],80 "demo": [],
81 'css': [81 "data": [],
82 ],82 "test": [],
83 'qweb': [83 "js": [],
84 ],84 "css": [],
85 'installable': True,85 "qweb": [],
86 "installable": True,
87 "auto_install": False
86}88}
89# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
8790
=== modified file 'web_binary_icon/__openerp__.py'
--- web_binary_icon/__openerp__.py 2013-01-16 13:50:12 +0000
+++ web_binary_icon/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,12 +20,12 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "Web Binary Icon",24 "name": "Web Binary Icon",
26 'author': "Vauxoo",25 "version": "1.0",
27 'category': "Hidden",26 "author": "Vauxoo",
28 'description': """27 "category": "Hidden",
28 "description": """
29Binary Icon plugin.29Binary Icon plugin.
30===================30===================
3131
@@ -54,7 +54,7 @@
54 * .xml (Usefull for electronic invoices.)54 * .xml (Usefull for electronic invoices.)
5555
56Links as attachments should be cool of recognize too!.56Links as attachments should be cool of recognize too!.
57 57
58 * .googledoc58 * .googledoc
5959
60Images should be usefull, probably working in thumbnails feature.60Images should be usefull, probably working in thumbnails feature.
@@ -72,18 +72,24 @@
72 * .planner72 * .planner
73 * .Xmind73 * .Xmind
74 * .log74 * .log
75""",75
76 'version': "1.0",76 """,
77 'depends': ['web'],77 "website": "",
78 'js': [78 "license": "",
79 'static/src/js/lib.js', 79 "depends": [
80 ],80 "web"
81 'css': [81 ],
82 ],82 "demo": [],
83 'qweb': [83 "data": [],
84 'static/src/xml/lib.xml',84 "test": [],
85 ],85 "js": [
86 'installable': True,86 "static/src/js/lib.js"
87 'auto_install': False,87 ],
88 'web_preload': False,88 "css": [],
89 "qweb": [
90 "static/src/xml/lib.xml"
91 ],
92 "installable": True,
93 "auto_install": False
89}94}
95# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
9096
=== modified file 'web_bootstrap3/__openerp__.py'
--- web_bootstrap3/__openerp__.py 2013-10-07 22:18:43 +0000
+++ web_bootstrap3/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -14,12 +14,12 @@
14# You should have received a copy of the GNU General Public License along with this program.14# You should have received a copy of the GNU General Public License along with this program.
15# If not, see <http://www.gnu.org/licenses/>.15# If not, see <http://www.gnu.org/licenses/>.
16###################################################################################################16###################################################################################################
17
18{17{
19 'name': "Bootstrap 3.0 for OpenERP",18 "name": "Bootstrap 3.0 for OpenERP",
20 'author': "Vauxoo",19 "version": "1.0",
21 'category': "Hidden",20 "author": "Vauxoo",
22 'description': """21 "category": "Hidden",
22 "description": """
23Bootstrap 3.0 in OpenERP23Bootstrap 3.0 in OpenERP
24========================24========================
2525
@@ -69,23 +69,28 @@
69.. _here http://getbootstrap.com/69.. _here http://getbootstrap.com/
70.. _bootstrap https://github.com/twbs/bootstrap/70.. _bootstrap https://github.com/twbs/bootstrap/
71.. _link https://github.com/twbs/bootstrap/71.. _link https://github.com/twbs/bootstrap/
72 #'static/src/js/ekko-lightbox.js',
73 'web_preload': False, #set to True if you want this module be available always without ask.
74
72 """,75 """,
73 'version': "1.0",76 "website": "",
74 'depends': [77 "license": "",
75 'web'78 "depends": [
76 ],79 "web"
77 'js': [80 ],
78 'static/src/js/bootstrap.js',81 "demo": [],
79 'static/src/js/bootstrap-lightbox.js',82 "data": [],
80 #'static/src/js/ekko-lightbox.js',83 "test": [],
81 ],84 "js": [
82 'css': [85 "static/src/js/bootstrap.js",
83 'static/src/css/bs3-openerp.css',86 "static/src/js/bootstrap-lightbox.js"
84 'static/src/css/bs3-lightbox.css',87 ],
85 ],88 "css": [
86 'qweb': [89 "static/src/css/bs3-openerp.css",
87 ],90 "static/src/css/bs3-lightbox.css"
88 'installable': True,91 ],
89 'auto_install': False,92 "qweb": [],
90 'web_preload': False, #set to True if you want this module be available always without ask.93 "installable": True,
94 "auto_install": False
91}95}
96# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
9297
=== modified file 'web_camera/__openerp__.py'
--- web_camera/__openerp__.py 2013-10-29 06:55:38 +0000
+++ web_camera/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -18,11 +18,12 @@
18# along with this program. If not, see <http://www.gnu.org/licenses/>.18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#19#
20##############################################################################20##############################################################################
21
22{21{
23 'name': "Webcam Widget Module",22 "name": "Webcam Widget Module",
24 'version': "1.0",23 "version": "1.0",
25 'description': """24 "author": "Tech-Receptives Solutions Pvt. Ltd",
25 "category": "",
26 "description": """
26Widget for Capturing Image using a webcam.27Widget for Capturing Image using a webcam.
27==========================================28==========================================
2829
@@ -32,16 +33,26 @@
32Define in the view for the field widget="webcam"33Define in the view for the field widget="webcam"
3334
34It is all!35It is all!
36
35 """,37 """,
36 'depends': ['web'],38 "website": "http://www.techreceptives.com",
37 'website' : "http://www.techreceptives.com",39 "license": "",
38 'author': "Tech-Receptives Solutions Pvt. Ltd",40 "depends": [
39 'js': ['static/src/js/view.js'],41 "web"
40 'qweb': ['static/src/xml/webcam_template.xml'],42 ],
41 'css' : ['static/src/css/base.css'],43 "demo": [],
42 'installable': True,44 "data": [],
43 'auto_install': False,45 "test": [],
44 'application': True,46 "js": [
47 "static/src/js/view.js"
48 ],
49 "css": [
50 "static/src/css/base.css"
51 ],
52 "qweb": [
53 "static/src/xml/webcam_template.xml"
54 ],
55 "installable": True,
56 "auto_install": False
45}57}
46
47# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:58# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
4859
=== modified file 'web_color/__openerp__.py'
--- web_color/__openerp__.py 2012-11-27 20:52:47 +0000
+++ web_color/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,6 +1,6 @@
1# -*- encoding: utf-8 -*-1# -*- encoding: utf-8 -*-
2############################################################################2############################################################################
3# 3#
4# OpenERP, Open Source Web Color4# OpenERP, Open Source Web Color
5# Copyright (C) 2012 Savoir-faire Linux (<http://www.savoirfairelinux.com>).5# Copyright (C) 2012 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6#6#
@@ -15,31 +15,41 @@
15# GNU General Public License for more details.15# GNU General Public License for more details.
16#16#
17# You should have received a copy of the GNU General Public License17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>. 18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19# 19#
20# @author Étienne Beaudry Auger <etienne.b.auger@savoirfairelinux.com>20# @author Étienne Beaudry Auger <etienne.b.auger@savoirfairelinux.com>
21#21#
22##############################################################################22##############################################################################
23{23{
24 'name': "Web Color",24 "name": "Web Color",
25 'author': "Savoir-faire Linux",25 "version": "1.0",
26 'category' : "Hidden",26 "author": "Savoir-faire Linux",
27 'description': """27 "category": "Hidden",
28 "description": """
28 This module provides a color widget to display the color from29 This module provides a color widget to display the color from
29 the hexadecimal value of your field.30 the hexadecimal value of your field.
31
30 """,32 """,
31 'version': "1.0",33 "website": "",
32 'depends': ['web'],34 "license": "",
33 'js': [35 "depends": [
34 'static/src/js/lib.js', 36 "web"
35 'static/lib/really-simple-color-picker/jquery.colorPicker.js',37 ],
36 ],38 "demo": [],
37 'css': [39 "data": [],
38 'static/src/css/color.css',40 "test": [],
39 'static/lib/really-simple-color-picker/colorPicker.css',41 "js": [
40 ],42 "static/src/js/lib.js",
41 'qweb' : ['static/src/xml/lib.xml'],43 "static/lib/really-simple-color-picker/jquery.colorPicker.js"
42 'installable': True,44 ],
43 'auto_install': False,45 "css": [
44 'web_preload': False,46 "static/src/css/color.css",
47 "static/lib/really-simple-color-picker/colorPicker.css"
48 ],
49 "qweb": [
50 "static/src/xml/lib.xml"
51 ],
52 "installable": True,
53 "auto_install": False
45}54}
55# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
4656
=== modified file 'web_confirm_window_close/__openerp__.py'
--- web_confirm_window_close/__openerp__.py 2013-08-22 15:19:36 +0000
+++ web_confirm_window_close/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -18,10 +18,12 @@
18# along with this program. If not, see <http://www.gnu.org/licenses/>.18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#19#
20##############################################################################20##############################################################################
21
22{21{
23 'name': 'Check for unsaved data when closing browser window',22 "name": "Check for unsaved data when closing browser window",
24 'description': '''23 "version": "7.0.1",
24 "author": "Therp BV",
25 "category": "Usability",
26 "description": """
25This addon will show a confirmation dialog when the user closes27This addon will show a confirmation dialog when the user closes
26a window with an OpenERP form containing unsaved data.28a window with an OpenERP form containing unsaved data.
2729
@@ -29,16 +31,22 @@
29while Firefox displays a generic confirmation message.31while Firefox displays a generic confirmation message.
3032
31This module is compatible with OpenERP 7.0.33This module is compatible with OpenERP 7.0.
32''',34
33 'version': '7.0.1',35 """,
34 'author': 'Therp BV',36 "website": "https://launchpad.net/web-addons",
35 'category': 'Usability',37 "license": "AGPL-3",
36 'website': 'https://launchpad.net/web-addons',38 "depends": [
37 'license': 'AGPL-3',39 "web"
38 'depends': [40 ],
39 'web',41 "demo": [],
40 ],42 "data": [],
41 'js': [43 "test": [],
42 'static/src/js/web_confirm_window_close.js'44 "js": [
43 ],45 "static/src/js/web_confirm_window_close.js"
46 ],
47 "css": [],
48 "qweb": [],
49 "installable": True,
50 "auto_install": False
44}51}
52# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
4553
=== modified file 'web_export_view/__openerp__.py'
--- web_export_view/__openerp__.py 2013-06-04 09:06:55 +0000
+++ web_export_view/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -19,12 +19,12 @@
19# along with this program. If not, see <http://www.gnu.org/licenses/>.19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#20#
21##############################################################################21##############################################################################
22
23{22{
24 'name': 'Export Current View',23 "name": "Export Current View",
25 'version': '1.1',24 "version": "1.1",
26 'category': 'Web',25 "author": "Agile Business Group",
27 'description': """26 "category": "Web",
27 "description": """
28WEB EXPORT VIEW28WEB EXPORT VIEW
29===============29===============
3030
@@ -43,17 +43,27 @@
43After you installed it, you’ll find an additional link ‘Export current view’43After you installed it, you’ll find an additional link ‘Export current view’
44right below the ‘Export’ one. By clicking on it you’ll get a XLS file contains44right below the ‘Export’ one. By clicking on it you’ll get a XLS file contains
45the same data of the tree view you are looking at, headers included.45the same data of the tree view you are looking at, headers included.
46""",
47 'author': 'Agile Business Group',
48 'website': 'http://www.agilebg.com',
49 'license': 'AGPL-3',
50 'depends': ['web'],
51 # 'external_dependencies': {
52 # 'python': ['xlwt'],46 # 'python': ['xlwt'],
53 # },47 # },
54 'js': ['static/*/*.js', 'static/*/js/*.js'],48
55 'qweb': ['static/xml/web_advanced_export.xml'],49 """,
56 'installable': True,50 "website": "http://www.agilebg.com",
57 'auto_install': False,51 "license": "AGPL-3",
58 'web_preload': False,52 "depends": [
53 "web"
54 ],
55 "demo": [],
56 "data": [],
57 "test": [],
58 "js": [
59 "static/*/*.js",
60 "static/*/js/*.js"
61 ],
62 "css": [],
63 "qweb": [
64 "static/xml/web_advanced_export.xml"
65 ],
66 "installable": True,
67 "auto_install": False
59}68}
69# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
6070
=== modified file 'web_fancybox/__openerp__.py'
--- web_fancybox/__openerp__.py 2013-10-10 01:49:01 +0000
+++ web_fancybox/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -14,33 +14,38 @@
14# You should have received a copy of the GNU General Public License along with this program.14# You should have received a copy of the GNU General Public License along with this program.
15# If not, see <http://www.gnu.org/licenses/>.15# If not, see <http://www.gnu.org/licenses/>.
16###################################################################################################16###################################################################################################
17
18{17{
19 'name': "FancyBox for OpenERP",18 "name": "FancyBox for OpenERP",
20 'author': "Vauxoo",19 "version": "1.0",
21 'category': "Hidden",20 "author": "Vauxoo",
22 'description': """21 "category": "Hidden",
22 "description": """
23Fancy box plugin for openerp23Fancy box plugin for openerp
24============================24============================
2525
26This module only make available this lib_ for openerp.26This module only make available this lib_ for openerp.
2727
28.. _lib http://fancybox.net/28.. _lib http://fancybox.net/
29 'web_preload': False, #set to True if you want this module be available always without ask.
30
29 """,31 """,
30 'version': "1.0",32 "website": "",
31 'depends': [33 "license": "",
32 'web'34 "depends": [
33 ],35 "web"
34 'js': [36 ],
35 'static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js',37 "demo": [],
36 'static/src/lib/fancyapps-fancyBox-18d1712/source/helpers/*.js',38 "data": [],
37 ],39 "test": [],
38 'css': [40 "js": [
39 'static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css',41 "static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js",
40 ],42 "static/src/lib/fancyapps-fancyBox-18d1712/source/helpers/*.js"
41 'qweb': [43 ],
42 ],44 "css": [
43 'installable': True,45 "static/src/lib/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css"
44 'auto_install': False,46 ],
45 'web_preload': False, #set to True if you want this module be available always without ask.47 "qweb": [],
48 "installable": True,
49 "auto_install": False
46}50}
51# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
4752
=== modified file 'web_flagicons/__openerp__.py'
--- web_flagicons/__openerp__.py 2013-08-26 18:50:15 +0000
+++ web_flagicons/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,28 +20,33 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "Flag Icons",24 "name": "Flag Icons",
26 'author': "Vauxoo",25 "version": "1.0",
27 'category': "Hidden",26 "author": "Vauxoo",
28 'description': """27 "category": "Hidden",
29Just let have available: Flag Sprites 28 "description": """
29Just let have available: Flag Sprites
3030
31More information:31More information:
3232
33http://flag-sprites.com/33http://flag-sprites.com/
34
34 """,35 """,
35 'version': "1.0",36 "website": "",
36 'depends': ['web'],37 "license": "",
37 'js': [38 "depends": [
38 ],39 "web"
39 'css': [40 ],
40 'static/src/css/flags.css',41 "demo": [],
41 ],42 "data": [],
42 'qweb': [43 "test": [],
43 ],44 "js": [],
44 'installable': True,45 "css": [
45 'auto_install': False,46 "static/src/css/flags.css"
46 'web_preload': False,47 ],
48 "qweb": [],
49 "installable": True,
50 "auto_install": False
47}51}
52# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
4853
=== modified file 'web_fontawesome/__openerp__.py'
--- web_fontawesome/__openerp__.py 2013-09-23 05:49:52 +0000
+++ web_fontawesome/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,13 +20,12 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "FontAwesome 3.2.1",24 "name": "FontAwesome 3.2.1",
26 'author': "Vauxoo",25 "version": "1.0",
27 'website': "http://www.vauxoo.com",26 "author": "Vauxoo",
28 'category': "Hidden",27 "category": "Hidden",
29 'description': """28 "description": """
30Just let have available: fontawesome for Bootstrap 3.0.2 available on Openerp V7.029Just let have available: fontawesome for Bootstrap 3.0.2 available on Openerp V7.0
3130
32More information and documentation about how use it:31More information and documentation about how use it:
@@ -41,12 +40,12 @@
41A menu declared like this:40A menu declared like this:
4241
43.. code::42.. code::
44 43
45 + 45 <menuitem action="action_client_main"44 + 45 <menuitem action="action_client_main"
46 <!-- Icon Home a little bigger. -->45 <!-- Icon Home a little bigger. -->
47 + 46 web_icon="icon-home icon-large" 46 + 46 web_icon="icon-home icon-large"
48 <!-- Name with an Space to avoid be ignored by the Web Client -->47 <!-- Name with an Space to avoid be ignored by the Web Client -->
49 + 47 name=" " 48 + 47 name=" "
50 + 48 id="menu_client_home" sequence="1"/>49 + 48 id="menu_client_home" sequence="1"/>
5150
52Will render something like this:51Will render something like this:
@@ -55,29 +54,35 @@
55 :alt: Menu Example.54 :alt: Menu Example.
5655
57.. note::56.. note::
58 57
59 Until `THIS MERGE`_ is not applied on server, to be able to use the feature explained above you58 Until `THIS MERGE`_ is not applied on server, to be able to use the feature explained above you
60 must apply this patch in your sever or simply merge the revno 4031 of this branch_.59 must apply this patch in your sever or simply merge the revno 4031 of this branch_.
6160
62You can use it too directly in your Form Views, simply try this examples_ on the61You can use it too directly in your Form Views, simply try this examples_ on the
63oficial FontAwesome documentation directly as simple html on your Form and Kanban Views.62oficial FontAwesome documentation directly as simple html on your Form and Kanban Views.
6463
65.. _examples: http://fontawesome.io/examples/ 64.. _examples: http://fontawesome.io/examples/
66.. _THIS MERGE: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar/+merge/186960 65.. _THIS MERGE: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar/+merge/186960
67.. _branch: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar 66.. _branch: https://code.launchpad.net/~vauxoo/openerp-web/7.0-missing-menu-attr-nhomar
67 # 'static/src/css/font-awesome-ie7.css',
68
68 """,69 """,
69 'version': "1.0",70 "website": "http://www.vauxoo.com",
70 'depends': ['web'],71 "license": "",
71 'js': [72 "depends": [
72 ],73 "web"
73 'css': [74 ],
74 'static/src/css/font-awesome.css',75 "demo": [],
75# 'static/src/css/font-awesome-ie7.css',76 "data": [],
76 ],77 "test": [],
77 'qweb': [78 "js": [],
78 'static/src/xml/base.xml',79 "css": [
79 ],80 "static/src/css/font-awesome.css"
80 'installable': True,81 ],
81 'auto_install': False,82 "qweb": [
82 'web_preload': False,83 "static/src/xml/base.xml"
84 ],
85 "installable": True,
86 "auto_install": False
83}87}
88# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
8489
=== modified file 'web_gmaps/__openerp__.py'
--- web_gmaps/__openerp__.py 2013-03-08 00:53:04 +0000
+++ web_gmaps/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,43 +20,47 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "Alternative Gmaps Position",24 "name": "Alternative Gmaps Position",
26 'author': "Vauxoo",25 "version": "1.0",
27 'category': "Hidden",26 "author": "Vauxoo",
28 'description': """27 "category": "Hidden",
28 "description": """
29Gmaps view:29Gmaps view:
30===========30===========
3131
32Just allow given a point with this format X,Y in decimal coordinates, show the map.32Just allow given a point with this format X,Y in decimal coordinates, show the map.
33You must to add:33You must to add:
34 34
35 <script type="text/javascript"35 <script type="text/javascript"
36 src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDo-1vLyCKoMU1JkZZSe2Z9xpknaB0d6Qc&sensor=true">36 src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDo-1vLyCKoMU1JkZZSe2Z9xpknaB0d6Qc&sensor=True">
37 </script>37 </script>
3838
39on line 516 in addons/web/controllers/main.py of web project. 39on line 516 in addons/web/controllers/main.py of web project.
40
40 """,41 """,
41 'version': "1.0",42 "website": "",
42 'depends': [43 "license": "",
43 'web',44 "depends": [
44 'crm_partner_assign'45 "web",
45 ],46 "crm_partner_assign"
46 'js': [47 ],
47 'static/src/js/load_gmap_key.js', 48 "demo": [],
48 'static/src/js/lib.js',49 "data": [
49 ],50 "view/partner_view.xml"
50 'css': [51 ],
51 'static/src/css/gmaps.css',52 "test": [],
52 ],53 "js": [
53 'qweb': [54 "static/src/js/load_gmap_key.js",
54 'static/src/xml/lib.xml',55 "static/src/js/lib.js"
55 ],56 ],
56 'data': [57 "css": [
57 'view/partner_view.xml'58 "static/src/css/gmaps.css"
58 ],59 ],
59 'installable': True,60 "qweb": [
60 'auto_install': False,61 "static/src/xml/lib.xml"
61 'web_preload': False,62 ],
63 "installable": True,
64 "auto_install": False
62}65}
66# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
6367
=== modified file 'web_gmaps_action/__openerp__.py'
--- web_gmaps_action/__openerp__.py 2013-11-29 14:11:20 +0000
+++ web_gmaps_action/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -22,10 +22,11 @@
22#22#
23##############################################################################23##############################################################################
24{24{
25 'name':"Web Action with Google Maps.",25 "name": "Web Action with Google Maps.",
26 'category':'Hidden',26 "version": "",
27 'author': 'Vauxoo',27 "author": "Vauxoo",
28 'description': '''28 "category": "Hidden",
29 "description": """
29Gmaps view:30Gmaps view:
30===========31===========
3132
@@ -47,31 +48,37 @@
4748
48code::49code::
4950
50 gmaps_api_key = https://maps.googleapis.com/maps/api/js?key=YOURKEYISALONGWIERDCHARACTERS&sensor=true 51 gmaps_api_key = https://maps.googleapis.com/maps/api/js?key=YOURKEYISALONGWIERDCHARACTERS&sensor=True
51 ''',52 Information: https://developers.google.com/console/help/#generatingdevkeys
52 'depends':[
53 'web',
54 'contacts',
55 'web_allow_custom_root',
56 'web_bootstrap3',
57 'decimal_precision',
58 ],
59 'data':[
60 'data/gmaps_data.xml',
61 'res_partner_view.xml',
62 'gmaps_point_view.xml',
63 ],
64 'demo':[
65 #'web_gmaps_demo.xml'53 #'web_gmaps_demo.xml'
66 ],54
67 'js':[55 """,
68 'static/src/js/gmaps.js',56 "website": "",
69 ],57 "license": "",
70 'css':[58 "depends": [
71 'static/src/css/gmaps.css'59 "web",
72 ],60 "contacts",
73 'qweb':[61 "web_allow_custom_root",
74 'static/src/xml/gmaps.xml'62 "web_bootstrap3",
75 ],63 "decimal_precision"
64 ],
65 "demo": [],
66 "data": [
67 "data/gmaps_data.xml",
68 "res_partner_view.xml",
69 "gmaps_point_view.xml"
70 ],
71 "test": [],
72 "js": [
73 "static/src/js/gmaps.js"
74 ],
75 "css": [
76 "static/src/css/gmaps.css"
77 ],
78 "qweb": [
79 "static/src/xml/gmaps.xml"
80 ],
81 "installable": True,
82 "auto_install": False
76}83}
7784# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
7885
=== modified file 'web_hideleftmenu/__openerp__.py'
--- web_hideleftmenu/__openerp__.py 2013-03-18 00:33:59 +0000
+++ web_hideleftmenu/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,33 +20,41 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "Web Url Alternative",24 "name": "Web Url Alternative",
26 'author': "Vauxoo",25 "version": "1.0",
27 'category': "Hidden",26 "author": "Vauxoo",
28 'description': """27 "category": "Hidden",
28 "description": """
29Hide Left menu:29Hide Left menu:
30===============30===============
3131
32This module just add a button un User Menu to hide the left menu specially useful 32This module just add a button un User Menu to hide the left menu specially useful
33when you are analysing a bunch of data.33when you are analysing a bunch of data.
3434
35#TODO: It should be cool if menus stay dropdown after hide the left menu as V6.135#TODO: It should be cool if menus stay dropdown after hide the left menu as V6.1
3636
37 #TODO: It should be cool if menus stay dropdown after hide the left menu as V6.1
38
37 """,39 """,
38 'version': "1.0",40 "website": "",
39 'depends': ['web'],41 "license": "",
40 'js': [42 "depends": [
41 'static/src/js/lib.js', 43 "web"
42 ],44 ],
43 'css': [45 "demo": [],
44 'static/src/css/lib.css',46 "data": [],
45 ],47 "test": [],
46 'qweb': [48 "js": [
47 'static/src/xml/lib.xml',49 "static/src/js/lib.js"
48 ],50 ],
49 'installable': True,51 "css": [
50 'auto_install': False,52 "static/src/css/lib.css"
51 'web_preload': False,53 ],
54 "qweb": [
55 "static/src/xml/lib.xml"
56 ],
57 "installable": True,
58 "auto_install": False
52}59}
60# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
5361
=== modified file 'web_many2many_attachments/__openerp__.py'
--- web_many2many_attachments/__openerp__.py 2013-09-30 18:02:21 +0000
+++ web_many2many_attachments/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,32 +20,36 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "Many2Many attachments",24 "name": "Many2Many attachments",
26 'author': "Vauxoo",25 "version": "1.0",
27 'website': "http://www.vauxoo.com",26 "author": "Vauxoo",
28 'category': "Hidden",27 "category": "Hidden",
29 'description': """28 "description": """
30In order to allow get quickly the link directly to an attachment in OpenERP we need the session29In order to allow get quickly the link directly to an attachment in OpenERP we need the session
31variable to be sure the session has access right to the file, and the algorithm to manage30variable to be sure the session has access right to the file, and the algorithm to manage
32attachments in OpenERP depends of it.31attachments in OpenERP depends of it.
32
33 """,33 """,
34 'version': "1.0",34 "website": "http://www.vauxoo.com",
35 'depends': ['web',35 "license": "",
36 'mail',36 "depends": [
37 'portal_public_documents'37 "web",
38 ],38 "mail",
39 'js': [39 "portal_public_documents"
40 'static/src/js/many2many_att.js',40 ],
41 'static/src/lib/URI.js'41 "demo": [],
42 ],42 "data": [],
43 'css': [43 "test": [],
44 ],44 "js": [
45 'qweb': [45 "static/src/js/many2many_att.js",
46 'static/src/xml/many2many_att.xml'46 "static/src/lib/URI.js"
47 ],47 ],
48 'installable': True,48 "css": [],
49 'auto_install': False,49 "qweb": [
50 'web_preload': False,50 "static/src/xml/many2many_att.xml"
51 ],
52 "installable": True,
53 "auto_install": False
51}54}
55# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
5256
=== modified file 'web_nocreatedb/__openerp__.py'
--- web_nocreatedb/__openerp__.py 2013-06-22 14:45:39 +0000
+++ web_nocreatedb/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -3,7 +3,6 @@
3# Financed and Planified by Vauxoo3# Financed and Planified by Vauxoo
4# developed by: tulio@vauxoo.com4# developed by: tulio@vauxoo.com
5#5#
6
7# This program is free software: you can redistribute it and/or modify6# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as7# it under the terms of the GNU General Public License as
9# published by the Free Software Foundation, either version 3 of the8# published by the Free Software Foundation, either version 3 of the
@@ -15,16 +14,15 @@
15# GNU General Public License for more details.14# GNU General Public License for more details.
16#15#
17# You should have received a copy of the GNU General Public License16# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>. 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#18#
20##############################################################################19##############################################################################
21
22{20{
23 'name': "NO create database link",21 "name": "NO create database link",
24 'author': "Vauxoo",22 "version": "1.0",
25 'category': "Web",23 "author": "Vauxoo",
26 'website': "http://vauxoo.com",24 "category": "Web",
27 'description': """25 "description": """
28After install this module, you will not see anymore the26After install this module, you will not see anymore the
29"Manage Databases" link in login screen.27"Manage Databases" link in login screen.
3028
@@ -41,27 +39,31 @@
41Then you can start your server without the -u and -d (just the first time you39Then you can start your server without the -u and -d (just the first time you
42need update all to be sure all base and web will be fine).40need update all to be sure all base and web will be fine).
4341
44With this option you can just take off and restart the server if you need to show 42With this option you can just take off and restart the server if you need to show
45the link temporaly again.43the link temporaly again.
4644
47TODO: It should be great add a parameter in the database to hide it configurable45TODO: It should be great add a parameter in the database to hide it configurable
48way and with web_preload: True, but BTW, in old versions of openerp it was a 46way and with web_preload: True, but BTW, in old versions of openerp it was a
49parameter in the config file, i think as it is is fine for now.47parameter in the config file, i think as it is is fine for now.
5048
51.. note:: This module probably will not be shown in your module list by default49.. note:: This module probably will not be shown in your module list by default
52You should create a menu to see "All modules without filter.50You should create a menu to see "All modules without filter.
51
53 """,52 """,
54 'version': "1.0",53 "website": "http://vauxoo.com",
55 'depends': [54 "license": "",
56 'web',55 "depends": [
57 ],56 "web"
58 'js': [57 ],
59 ],58 "demo": [],
60 'css': [59 "data": [],
61 ],60 "test": [],
62 'qweb': [61 "js": [],
63 'static/src/xml/web_nocreatedb.xml',62 "css": [],
64 ],63 "qweb": [
65 'installable': True,64 "static/src/xml/web_nocreatedb.xml"
66 'auto_install': False,65 ],
66 "installable": True,
67 "auto_install": False
67}68}
69# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
6870
=== modified file 'web_popup_large/__openerp__.py'
--- web_popup_large/__openerp__.py 2013-09-19 10:27:57 +0000
+++ web_popup_large/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -22,13 +22,26 @@
22 "name": "Large pop-ups in web client",22 "name": "Large pop-ups in web client",
23 "version": "7.0.1.0",23 "version": "7.0.1.0",
24 "author": "Therp BV",24 "author": "Therp BV",
25 "category": 'Usability',25 "category": "Usability",
26 "description": """26 "description": """
27Pop-ups in the web client have a width of 900 pixels by default.27Pop-ups in the web client have a width of 900 pixels by default.
28This module changes this default width to 95% of the parent window.28This module changes this default width to 95% of the parent window.
29
29 """,30 """,
30 'website': 'https://launchpad.net/web-addons',31 "website": "https://launchpad.net/web-addons",
31 'depends': ['web'],32 "license": "AGPL-3",
32 "license": 'AGPL-3',33 "depends": [
33 "js": ['static/src/js/web_popup_large.js'],34 "web"
35 ],
36 "demo": [],
37 "data": [],
38 "test": [],
39 "js": [
40 "static/src/js/web_popup_large.js"
41 ],
42 "css": [],
43 "qweb": [],
44 "installable": True,
45 "auto_install": False
34}46}
47# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
3548
=== modified file 'web_process_prettyprint/__openerp__.py'
--- web_process_prettyprint/__openerp__.py 2013-09-01 06:01:48 +0000
+++ web_process_prettyprint/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,37 +20,46 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "Web Process PrettyPrint",24 "name": "Web Process PrettyPrint",
26 'author': "Vauxoo",25 "version": "1.0",
27 'category': "Hidden",26 "author": "Vauxoo",
28 'description': """27 "category": "Hidden",
28 "description": """
29Process PrettyPrint:29Process PrettyPrint:
30====================30====================
3131
32This module configure all the necesary tools to print in the right way32This module configure all the necesary tools to print in the right way
33(as an ISO document the process view)33(as an ISO document the process view)
3434
35 """,35 'process', #To show the process
36 'version': "1.0",
37 'depends': [
38 'web',
39 'process', #To show the process
40 'hr', #To link process to hr departments and resposabilities.36 'hr', #To link process to hr departments and resposabilities.
41 'document_page', #To build internal documentation Human readable.37 'document_page', #To build internal documentation Human readable.
42 'document_ftp', #To links with external files.38 'document_ftp', #To links with external files.
43 ],39
44 'js': [40 """,
45 'static/src/js/lib.js', 41 "website": "",
46 ],42 "license": "",
47 'css': [43 "depends": [
48 'static/src/css/lib.css',44 "web",
49 ],45 "process",
50 'qweb': [46 "hr",
51 'static/src/xml/lib.xml',47 "document_page",
52 ],48 "document_ftp"
53 'installable': False,49 ],
54 'auto_install': False,50 "demo": [],
55 'web_preload': False,51 "data": [],
52 "test": [],
53 "js": [
54 "static/src/js/lib.js"
55 ],
56 "css": [
57 "static/src/css/lib.css"
58 ],
59 "qweb": [
60 "static/src/xml/lib.xml"
61 ],
62 "installable": False,
63 "auto_install": False
56}64}
65# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
5766
=== modified file 'web_url/__openerp__.py'
--- web_url/__openerp__.py 2013-01-10 03:00:23 +0000
+++ web_url/__openerp__.py 2014-11-19 02:43:51 +0000
@@ -1,7 +1,7 @@
1# -*- coding: utf-8 -*-1# -*- coding: utf-8 -*-
2##############################################################################2##############################################################################
3#3#
4# OpenERP, Open Source Management Solution 4# OpenERP, Open Source Management Solution
5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved5# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6# Financed and Planified by Vauxoo6# Financed and Planified by Vauxoo
7# developed by: nhomar@vauxoo.com7# developed by: nhomar@vauxoo.com
@@ -20,55 +20,61 @@
20# along with this program. If not, see <http://www.gnu.org/licenses/>.20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21#21#
22##############################################################################22##############################################################################
23
24{23{
25 'name': "Web Url Alternative",24 "name": "Web Url Alternative",
26 'author': "Vauxoo",25 "version": "1.0",
27 'category': "Hidden",26 "author": "Vauxoo",
28 'description': """27 "category": "Hidden",
28 "description": """
29Url Widget advanced.29Url Widget advanced.
30====================30====================
3131
32Before this module, the default widget just recognized as url all what start 32Before this module, the default widget just recognized as url all what start
33with http and if it dont start with this text then the original widget 33with http and if it dont start with this text then the original widget
34concatenated and http:// at the begining.34concatenated and http:// at the begining.
3535
36Due to the correct management of Urls fields in openerp, we improve the widget 36Due to the correct management of Urls fields in openerp, we improve the widget
37with an alternative way to manage this feature:37with an alternative way to manage this feature:
3838
39After you install this module, 39After you install this module,
4040
41 * The field will be recognized as link when it start with: (ftp|http|https)41 * The field will be recognized as link when it start with: (ftp|http|https)
42 * The link is managed with a _NEW target attr to avoid miss the actual page.42 * The link is managed with a _NEW target attr to avoid miss the actual page.
43 * If the field bring just a text this one will be considered as a relative one 43 * If the field bring just a text this one will be considered as a relative one
44 to openerp (specially usefull when you need to put links to internal 44 to openerp (specially usefull when you need to put links to internal
45 files/requests).45 files/requests).
46TODO: with this feature we lost the option of fill a field url with just46TODO: with this feature we lost the option of fill a field url with just
47www.domain.com and become automagically the link, i think this is correct too, 47www.domain.com and become automagically the link, i think this is correct too,
48but no so clear for me, i prefer use explicitaly the http:// stuff.48but no so clear for me, i prefer use explicitaly the http:// stuff.
4949
50How to test:50How to test:
51After install the module Just define your field with the atrubute 51After install the module Just define your field with the atrubute
52widget='relative_url' and it is ready i.e.52widget='relative_url' and it is ready i.e.
5353
54<field name="link_doc" widget="relative_url"/>54<field name="link_doc" widget="relative_url"/>
5555
56.. warning::56.. warning::
5757
58 be sure make your module depends of this one, to avoid brake the view when 58 be sure make your module depends of this one, to avoid brake the view when
59 it will be loaded.59 it will be loaded.
60
60 """,61 """,
61 'version': "1.0",62 "website": "",
62 'depends': ['web'],63 "license": "",
63 'js': [64 "depends": [
64 'static/src/js/lib.js', 65 "web"
65 ],66 ],
66 'css': [67 "demo": [],
67 ],68 "data": [],
68 'qweb': [69 "test": [],
69 'static/src/xml/lib.xml',70 "js": [
70 ],71 "static/src/js/lib.js"
71 'installable': True,72 ],
72 'auto_install': False,73 "css": [],
73 'web_preload': False,74 "qweb": [
75 "static/src/xml/lib.xml"
76 ],
77 "installable": True,
78 "auto_install": False
74}79}
80# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

Subscribers

People subscribed via source and target branches

to all changes: