diff --git a/developer_mode/README.rst b/developer_mode/README.rst new file mode 100644 index 000000000..6010ad0ec --- /dev/null +++ b/developer_mode/README.rst @@ -0,0 +1,21 @@ +Automatic Developer Mode v10 +============================ + +This module aims to reduce the repeated works of a Odoo Developer. + +Features +======== + +* Automatically Trigger Developer Mode. +* Showing Running DB On Left Top. +* Update Modules Easily. + + + .. note:: + + # If you installed any other tool, This module may not work properly. + # There is a dev mode property missing issue with website module. + +Credits +======= +Nilmar Shereef @ cybrosys, shereef@cybrosys.in \ No newline at end of file diff --git a/developer_mode/__init__.py b/developer_mode/__init__.py index e9de3c421..06839078f 100644 --- a/developer_mode/__init__.py +++ b/developer_mode/__init__.py @@ -21,4 +21,3 @@ # ############################################################################## - diff --git a/developer_mode/__manifest__.py b/developer_mode/__manifest__.py index 8343824bf..b9056a670 100644 --- a/developer_mode/__manifest__.py +++ b/developer_mode/__manifest__.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## +# # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2009-TODAY Cybrosys Technologies(). # Author: Nilmar Shereef() @@ -21,17 +22,22 @@ ############################################################################## { 'name': "Automatic Developer Mode", - 'summary': """Automatically Activate Developer Mode""", - 'version': '0.3', + 'summary': """Automatically Activate Developer Mode & Running DB Name on Left Top""", + 'version': '10.0.2.0.0', 'author': 'Cybrosys Techno Solutions', 'website': "http://www.cybrosys.com", 'company': 'Cybrosys Techno Solutions', - 'category': 'Tools', + 'category': 'Extra Tools', 'depends': ['base', 'web', 'base_setup'], 'data': [ 'views/web_view.xml', + 'security/security_data.xml', + 'views/developer_mode_view.xml', + 'views/ir_rule_view.xml', + 'data/cybro_developer_data.xml', ], 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', 'installable': True, 'auto_install': False, } diff --git a/developer_mode/data/cybro_developer_data.xml b/developer_mode/data/cybro_developer_data.xml new file mode 100644 index 000000000..17368fb19 --- /dev/null +++ b/developer_mode/data/cybro_developer_data.xml @@ -0,0 +1,38 @@ + + + + + + res.partner + cybro_partner_developer_mode + True + + + + Cybrodeveloper + www.cybrosys.com + +****************************************************** + + Your freelance partner! + +****************************************************** + +Custom development for Odoo is what we do. Talk to us! + + + + + + + + + + + + + + + + + diff --git a/developer_mode/security/security_data.xml b/developer_mode/security/security_data.xml new file mode 100644 index 000000000..5e549fb11 --- /dev/null +++ b/developer_mode/security/security_data.xml @@ -0,0 +1,12 @@ + + + + + + Odoo Developer + + + + + + diff --git a/developer_mode/static/description/apps_view.png b/developer_mode/static/description/apps_view.png new file mode 100644 index 000000000..1739f7bc5 Binary files /dev/null and b/developer_mode/static/description/apps_view.png differ diff --git a/developer_mode/static/description/index.html b/developer_mode/static/description/index.html index 7d9a22905..dd62a3be2 100644 --- a/developer_mode/static/description/index.html +++ b/developer_mode/static/description/index.html @@ -2,7 +2,17 @@

Automatic Developer Mode

-

... to make a developer's life easier...

+

Developers! Keep up your smile..

+

Cybrosys Technologies , www.cybrosys.com

+
+
+

Developers, So Many Reasons to Smile:

+
    +
  •    Automatically Trigger Developer Mode.
  • +
  •    Showing Running DB On Left Top.
  • +
  •    Update Modules Easily.
  • +
  •    Custom Email Template for Sending Mail with Failure Details.
  • +
@@ -33,7 +43,35 @@
+
+
+
+

+

The developer can identify running DB easily.

+

+
+
+
+ +
+
+
+
+
+
+
+

+

Easily update any module without opening the form.

+

+
+
+
+ +
+
+
+

Need Any Help?

diff --git a/developer_mode/static/description/index.html~ b/developer_mode/static/description/index.html~ deleted file mode 100644 index ac439f24f..000000000 --- a/developer_mode/static/description/index.html~ +++ /dev/null @@ -1,58 +0,0 @@ -
-
-
-

Automatic Developer Mode

-

... to make a developer's life easier...

-
-
-
- -
-
-
-

-

This module make you free from activate developer mode operations over and over(It is very boring when we switching many users). - When you login, It will trigger the DEVELOPER MODE Automatically.

-

-
-
-
- -
-
-
-

-

As shown here, Simply automate the developer mode. It help developer in several perspective.

-

-
-
-
- -
-
-
-
- - - -
-

Need Any Help?

- - -
- - - - - - diff --git a/developer_mode/static/description/working_db.png b/developer_mode/static/description/working_db.png new file mode 100644 index 000000000..2424138bf Binary files /dev/null and b/developer_mode/static/description/working_db.png differ diff --git a/developer_mode/views/developer_mode_view.xml b/developer_mode/views/developer_mode_view.xml new file mode 100644 index 000000000..b167606e6 --- /dev/null +++ b/developer_mode/views/developer_mode_view.xml @@ -0,0 +1,121 @@ + + + + + ir.module.module.list.select + + ir.module.module + + + + + + + + + + + + + ir.module.module.form + + ir.module.module + + + + + + + + + + Local Modules + ir.module.module + form + kanban,tree,form + {'search_default_app':1} + + + +

No module found!

+

You should try others search criteria.

+
+
+ + +
+
diff --git a/developer_mode/views/ir_rule_view.xml b/developer_mode/views/ir_rule_view.xml new file mode 100644 index 000000000..3f74bb72c --- /dev/null +++ b/developer_mode/views/ir_rule_view.xml @@ -0,0 +1,14 @@ + + + + + ir.rule + + + + + + + + + diff --git a/developer_mode/views/web_view.xml b/developer_mode/views/web_view.xml index 2ffd39e4b..fd34ee7a1 100644 --- a/developer_mode/views/web_view.xml +++ b/developer_mode/views/web_view.xml @@ -2,7 +2,6 @@ DeveloperMode - @@ -11,4 +10,4 @@ - + \ No newline at end of file diff --git a/developer_mode/views/web_view.xml~ b/developer_mode/views/web_view.xml~ deleted file mode 100644 index f6f9c1514..000000000 --- a/developer_mode/views/web_view.xml~ +++ /dev/null @@ -1,14 +0,0 @@ - - - - DeveloperMode - - - - - '%s%sdebug=1' % (redirect or '/web', redirect and '?' in redirect and '&' or '?') - - - - - \ No newline at end of file diff --git a/pos_chatter/__manifest__.py b/pos_chatter/__manifest__.py index fc0005426..c2f90861c 100644 --- a/pos_chatter/__manifest__.py +++ b/pos_chatter/__manifest__.py @@ -22,7 +22,7 @@ ############################################################################## { 'name': "POS Chat Box", - 'summary': """Chat in POS""", + 'summary': """Chat Box In POS Screen""", 'description': "This module adds chat interface in Point of sale screen.", 'author': "Cybrosys Techno Solutions", 'company': "Cybrosys Techno Solutions", diff --git a/developer_mode/__manifest__.py~ b/pos_chatter/__manifest__.py~ similarity index 71% rename from developer_mode/__manifest__.py~ rename to pos_chatter/__manifest__.py~ index fdf8721a0..fc0005426 100644 --- a/developer_mode/__manifest__.py~ +++ b/pos_chatter/__manifest__.py~ @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## +# # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2009-TODAY Cybrosys Technologies(). # Author: Nilmar Shereef() @@ -20,18 +21,19 @@ # ############################################################################## { - 'name': "Automatic Developer Mode", - 'summary': """Automatically Activate Developer Mode""", - 'version': '0.3', - 'author': 'Cybrosys Techno Solutions', - 'website': "http://www.yourcompany.com", - 'company': 'Cybrosys Techno Solutions', - 'category': 'Tools', - 'depends': ['base', 'web', 'base_setup'], - 'data': [ - 'views/web_view.xml', - ], + 'name': "POS Chat Box", + 'summary': """Chat in POS""", + 'description': "This module adds chat interface in Point of sale screen.", + 'author': "Cybrosys Techno Solutions", + 'company': "Cybrosys Techno Solutions", + 'website': "http://www.cybrosys.com", + 'category': 'Point Of Sale', + 'version': '0.4', + 'depends': ['base', 'point_of_sale'], + 'data': ['views/pos_chat.xml'], + 'qweb': ['static/src/xml/pos_msg.xml'], 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', 'installable': True, 'auto_install': False, }