From 33e3baa88d16c22a2c7cf574cde8fcea6d97fd83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20D=C3=ADaz?= Date: Wed, 19 Jun 2019 19:55:23 +0200 Subject: [PATCH] [MIG] web_no_bubble: Migration to 12.0 --- web_no_bubble/README.rst | 65 ++- web_no_bubble/__init__.py | 3 - web_no_bubble/__manifest__.py | 5 +- web_no_bubble/readme/CONTRIBUTORS.rst | 2 + web_no_bubble/readme/DESCRIPTION.rst | 2 + web_no_bubble/static/description/index.html | 421 ++++++++++++++++++ .../static/src/css/web_no_bubble.css | 3 - .../static/src/css/web_no_bubble.scss | 5 + web_no_bubble/views/web_no_bubble.xml | 2 +- 9 files changed, 478 insertions(+), 30 deletions(-) create mode 100644 web_no_bubble/readme/CONTRIBUTORS.rst create mode 100644 web_no_bubble/readme/DESCRIPTION.rst create mode 100644 web_no_bubble/static/description/index.html delete mode 100644 web_no_bubble/static/src/css/web_no_bubble.css create mode 100644 web_no_bubble/static/src/css/web_no_bubble.scss diff --git a/web_no_bubble/README.rst b/web_no_bubble/README.rst index 8622baaa..10df77d5 100644 --- a/web_no_bubble/README.rst +++ b/web_no_bubble/README.rst @@ -1,50 +1,75 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - ============= Web No Bubble ============= +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github + :target: https://github.com/OCA/web/tree/12.0/web_no_bubble + :alt: OCA/web +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_no_bubble + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/162/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module removes from the web interface the bubbles introduced in the version 10.0. The help boxes are not removed though. -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/162/11.0 +**Table of contents** + +.. contents:: + :local: Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smashing it by providing a detailed and welcomed feedback. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* Savoir-faire Linux Contributors ------------- +~~~~~~~~~~~~ * David Dufresne (david.dufresne@savoirfairelinux.com) +* Alexandre Díaz (alexandre.diaz@tecnativa.com) -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit https://odoo-community.org. \ No newline at end of file +This module is part of the `OCA/web `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/web_no_bubble/__init__.py b/web_no_bubble/__init__.py index bdac23ab..e69de29b 100644 --- a/web_no_bubble/__init__.py +++ b/web_no_bubble/__init__.py @@ -1,3 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2016 Savoir-faire Linux -# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/web_no_bubble/__manifest__.py b/web_no_bubble/__manifest__.py index 1d2774ee..3db3b6aa 100644 --- a/web_no_bubble/__manifest__.py +++ b/web_no_bubble/__manifest__.py @@ -1,10 +1,9 @@ -# -*- coding: utf-8 -*- -# © 2016 Savoir-faire Linux +# Copyright 2016 Savoir-faire Linux # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { 'name': 'Web No Bubble', - 'version': '11.0.1.0.0', + 'version': '12.0.1.0.0', 'author': 'Savoir-faire Linux, ' 'Odoo Community Association (OCA)', 'website': 'https://github.com/OCA/web', diff --git a/web_no_bubble/readme/CONTRIBUTORS.rst b/web_no_bubble/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..78fa1bbc --- /dev/null +++ b/web_no_bubble/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* David Dufresne (david.dufresne@savoirfairelinux.com) +* Alexandre Díaz (alexandre.diaz@tecnativa.com) diff --git a/web_no_bubble/readme/DESCRIPTION.rst b/web_no_bubble/readme/DESCRIPTION.rst new file mode 100644 index 00000000..54b336dd --- /dev/null +++ b/web_no_bubble/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module removes from the web interface the bubbles introduced in the version 10.0. +The help boxes are not removed though. diff --git a/web_no_bubble/static/description/index.html b/web_no_bubble/static/description/index.html new file mode 100644 index 00000000..9639390d --- /dev/null +++ b/web_no_bubble/static/description/index.html @@ -0,0 +1,421 @@ + + + + + + +Web No Bubble + + + +
+

Web No Bubble

+ + +

Beta License: AGPL-3 OCA/web Translate me on Weblate Try me on Runbot

+

This module removes from the web interface the bubbles introduced in the version 10.0. +The help boxes are not removed though.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Savoir-faire Linux
  • +
+
+ +
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/web project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/web_no_bubble/static/src/css/web_no_bubble.css b/web_no_bubble/static/src/css/web_no_bubble.css deleted file mode 100644 index d878e58c..00000000 --- a/web_no_bubble/static/src/css/web_no_bubble.css +++ /dev/null @@ -1,3 +0,0 @@ -.o_tooltip.o_animated { - display: none; -} diff --git a/web_no_bubble/static/src/css/web_no_bubble.scss b/web_no_bubble/static/src/css/web_no_bubble.scss new file mode 100644 index 00000000..42efdde4 --- /dev/null +++ b/web_no_bubble/static/src/css/web_no_bubble.scss @@ -0,0 +1,5 @@ +.o_tooltip { + &.o_animated { + display: none; + } +} diff --git a/web_no_bubble/views/web_no_bubble.xml b/web_no_bubble/views/web_no_bubble.xml index 9c9c3bef..d95f888c 100644 --- a/web_no_bubble/views/web_no_bubble.xml +++ b/web_no_bubble/views/web_no_bubble.xml @@ -3,7 +3,7 @@