From 8a755662d75d308b3ee7748282402b2d98aa635b Mon Sep 17 00:00:00 2001 From: santiky Date: Fri, 22 Apr 2022 17:23:57 +0200 Subject: [PATCH] =?UTF-8?q?a=C3=B1adido=20debrand=20para=20la=20web=20desd?= =?UTF-8?q?e=20OCA/website?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- website_odoo_debranding/README.rst | 85 ++++ website_odoo_debranding/__init__.py | 1 + website_odoo_debranding/__manifest__.py | 18 + website_odoo_debranding/i18n/ca.po | 14 + website_odoo_debranding/i18n/es.po | 14 + website_odoo_debranding/i18n/fr.po | 14 + website_odoo_debranding/i18n/id.po | 14 + website_odoo_debranding/i18n/pt_BR.po | 14 + .../readme/CONTRIBUTORS.rst | 4 + .../readme/DESCRIPTION.rst | 3 + website_odoo_debranding/readme/USAGE.rst | 3 + .../static/description/icon.png | Bin 0 -> 4141 bytes .../static/description/index.html | 434 ++++++++++++++++++ .../templates/disable_odoo.xml | 15 + 14 files changed, 633 insertions(+) create mode 100644 website_odoo_debranding/README.rst create mode 100644 website_odoo_debranding/__init__.py create mode 100644 website_odoo_debranding/__manifest__.py create mode 100644 website_odoo_debranding/i18n/ca.po create mode 100644 website_odoo_debranding/i18n/es.po create mode 100644 website_odoo_debranding/i18n/fr.po create mode 100644 website_odoo_debranding/i18n/id.po create mode 100644 website_odoo_debranding/i18n/pt_BR.po create mode 100644 website_odoo_debranding/readme/CONTRIBUTORS.rst create mode 100644 website_odoo_debranding/readme/DESCRIPTION.rst create mode 100644 website_odoo_debranding/readme/USAGE.rst create mode 100644 website_odoo_debranding/static/description/icon.png create mode 100644 website_odoo_debranding/static/description/index.html create mode 100644 website_odoo_debranding/templates/disable_odoo.xml diff --git a/website_odoo_debranding/README.rst b/website_odoo_debranding/README.rst new file mode 100644 index 0000000..c9bd289 --- /dev/null +++ b/website_odoo_debranding/README.rst @@ -0,0 +1,85 @@ +================================= +Remove Odoo Branding from Website +================================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github + :target: https://github.com/OCA/website/tree/12.0/website_odoo_debranding + :alt: OCA/website +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/website-12-0/website-12-0-website_odoo_debranding + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/186/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module remove Odoo branding on website: + +* Remove "Create a free website with Odoo" from footer + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +#. Go to your home page. +#. Enable or disable *Customize > Footer Copyright > Remove Odoo Promotional + Link* at your will. It should be enabled by default. + +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 +~~~~~~~ + +* Tecnativa + +Contributors +~~~~~~~~~~~~ + +* Antonio Espinosa +* Vicent Cubells +* Jairo Llopis +* Karan Shah + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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/website `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/website_odoo_debranding/__init__.py b/website_odoo_debranding/__init__.py new file mode 100644 index 0000000..de95592 --- /dev/null +++ b/website_odoo_debranding/__init__.py @@ -0,0 +1 @@ +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). diff --git a/website_odoo_debranding/__manifest__.py b/website_odoo_debranding/__manifest__.py new file mode 100644 index 0000000..23d640b --- /dev/null +++ b/website_odoo_debranding/__manifest__.py @@ -0,0 +1,18 @@ +# Copyright 2016 Tecnativa, S.L. - Vicent Cubells +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). +{ + "name": "Remove Odoo Branding from Website", + "version": "12.0.1.0.0", + "author": "Tecnativa, " + "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/website", + "license": "LGPL-3", + "category": "Website", + "depends": [ + 'website', + ], + "data": [ + "templates/disable_odoo.xml", + ], + "installable": True, +} diff --git a/website_odoo_debranding/i18n/ca.po b/website_odoo_debranding/i18n/ca.po new file mode 100644 index 0000000..36c1015 --- /dev/null +++ b/website_odoo_debranding/i18n/ca.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" diff --git a/website_odoo_debranding/i18n/es.po b/website_odoo_debranding/i18n/es.po new file mode 100644 index 0000000..7461f08 --- /dev/null +++ b/website_odoo_debranding/i18n/es.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" diff --git a/website_odoo_debranding/i18n/fr.po b/website_odoo_debranding/i18n/fr.po new file mode 100644 index 0000000..fd6c4f8 --- /dev/null +++ b/website_odoo_debranding/i18n/fr.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" diff --git a/website_odoo_debranding/i18n/id.po b/website_odoo_debranding/i18n/id.po new file mode 100644 index 0000000..7fcb921 --- /dev/null +++ b/website_odoo_debranding/i18n/id.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" diff --git a/website_odoo_debranding/i18n/pt_BR.po b/website_odoo_debranding/i18n/pt_BR.po new file mode 100644 index 0000000..7971f5f --- /dev/null +++ b/website_odoo_debranding/i18n/pt_BR.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" diff --git a/website_odoo_debranding/readme/CONTRIBUTORS.rst b/website_odoo_debranding/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..d5c01af --- /dev/null +++ b/website_odoo_debranding/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Antonio Espinosa +* Vicent Cubells +* Jairo Llopis +* Karan Shah diff --git a/website_odoo_debranding/readme/DESCRIPTION.rst b/website_odoo_debranding/readme/DESCRIPTION.rst new file mode 100644 index 0000000..cb79b86 --- /dev/null +++ b/website_odoo_debranding/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This module remove Odoo branding on website: + +* Remove "Create a free website with Odoo" from footer diff --git a/website_odoo_debranding/readme/USAGE.rst b/website_odoo_debranding/readme/USAGE.rst new file mode 100644 index 0000000..3c51471 --- /dev/null +++ b/website_odoo_debranding/readme/USAGE.rst @@ -0,0 +1,3 @@ +#. Go to your home page. +#. Enable or disable *Customize > Footer Copyright > Remove Odoo Promotional + Link* at your will. It should be enabled by default. diff --git a/website_odoo_debranding/static/description/icon.png b/website_odoo_debranding/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7252e01ea68e84cd59d70f29f7dec9c667b39ac2 GIT binary patch literal 4141 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 + + + + + +Remove Odoo Branding from Website + + + +
+

Remove Odoo Branding from Website

+ + +

Beta License: LGPL-3 OCA/website Translate me on Weblate Try me on Runbot

+

This module remove Odoo branding on website:

+
    +
  • Remove “Create a free website with Odoo” from footer
  • +
+

Table of contents

+ +
+

Usage

+
    +
  1. Go to your home page.
  2. +
  3. Enable or disable Customize > Footer Copyright > Remove Odoo Promotional +Link at your will. It should be enabled by default.
  4. +
+
+
+

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

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+ +
+
+

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/website project on GitHub.

+

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

+
+
+
+ + diff --git a/website_odoo_debranding/templates/disable_odoo.xml b/website_odoo_debranding/templates/disable_odoo.xml new file mode 100644 index 0000000..771220f --- /dev/null +++ b/website_odoo_debranding/templates/disable_odoo.xml @@ -0,0 +1,15 @@ + + + + + + +