diff --git a/portal_odoo_debranding/README.rst b/portal_odoo_debranding/README.rst new file mode 100644 index 00000000..77d612c2 --- /dev/null +++ b/portal_odoo_debranding/README.rst @@ -0,0 +1,92 @@ +================================= +Remove Odoo Branding from Website +================================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:cd9fe2044daeba73e899ed2dfd0bd4983106d9f7e574d52350fbd073c8aa299d + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fserver--brand-lightgray.png?logo=github + :target: https://github.com/OCA/server-brand/tree/17.0/portal_odoo_debranding + :alt: OCA/server-brand +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/server-brand-17-0/server-brand-17-0-portal_odoo_debranding + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/server-brand&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module removes Odoo branding from portal pages. + +**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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* TAKOBI + +Contributors +------------ + +- `TAKOBI `__: + + - Lorenzo Battistini + +- Iván Todorovich +- Nils Coenen + +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. + +.. |maintainer-eLBati| image:: https://github.com/eLBati.png?size=40px + :target: https://github.com/eLBati + :alt: eLBati +.. |maintainer-ivantodorovich| image:: https://github.com/ivantodorovich.png?size=40px + :target: https://github.com/ivantodorovich + :alt: ivantodorovich + +Current `maintainers `__: + +|maintainer-eLBati| |maintainer-ivantodorovich| + +This module is part of the `OCA/server-brand `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/portal_odoo_debranding/__init__.py b/portal_odoo_debranding/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/portal_odoo_debranding/__manifest__.py b/portal_odoo_debranding/__manifest__.py new file mode 100644 index 00000000..6c8dbabe --- /dev/null +++ b/portal_odoo_debranding/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2020 Lorenzo Battistini @ TAKOBI +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). +{ + "name": "Remove Odoo Branding from Website", + "version": "17.0.1.0.0", + "development_status": "Beta", + "category": "Hidden", + "website": "https://github.com/OCA/server-brand", + "author": "TAKOBI, Odoo Community Association (OCA)", + "maintainers": ["eLBati", "ivantodorovich"], + "license": "LGPL-3", + "application": False, + "installable": True, + "depends": [ + "portal", + ], + "data": [ + "views/portal_templates.xml", + ], +} diff --git a/portal_odoo_debranding/i18n/portal_odoo_debranding.pot b/portal_odoo_debranding/i18n/portal_odoo_debranding.pot new file mode 100644 index 00000000..78d58d53 --- /dev/null +++ b/portal_odoo_debranding/i18n/portal_odoo_debranding.pot @@ -0,0 +1,13 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/portal_odoo_debranding/pyproject.toml b/portal_odoo_debranding/pyproject.toml new file mode 100644 index 00000000..4231d0cc --- /dev/null +++ b/portal_odoo_debranding/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/portal_odoo_debranding/readme/CONTRIBUTORS.md b/portal_odoo_debranding/readme/CONTRIBUTORS.md new file mode 100644 index 00000000..0e1434ff --- /dev/null +++ b/portal_odoo_debranding/readme/CONTRIBUTORS.md @@ -0,0 +1,4 @@ +- [TAKOBI](https://takobi.online): + - Lorenzo Battistini +- Iván Todorovich \<\> +- Nils Coenen \<\> diff --git a/portal_odoo_debranding/readme/DESCRIPTION.md b/portal_odoo_debranding/readme/DESCRIPTION.md new file mode 100644 index 00000000..9c313d5d --- /dev/null +++ b/portal_odoo_debranding/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module removes Odoo branding from portal pages. diff --git a/portal_odoo_debranding/static/description/icon.png b/portal_odoo_debranding/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/portal_odoo_debranding/static/description/icon.png differ diff --git a/portal_odoo_debranding/static/description/index.html b/portal_odoo_debranding/static/description/index.html new file mode 100644 index 00000000..3961b0c6 --- /dev/null +++ b/portal_odoo_debranding/static/description/index.html @@ -0,0 +1,430 @@ + + + + + +Remove Odoo Branding from Website + + + +
+

Remove Odoo Branding from Website

+ + +

Beta License: LGPL-3 OCA/server-brand Translate me on Weblate Try me on Runboat

+

This module removes Odoo branding from portal pages.

+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • TAKOBI
  • +
+
+
+

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.

+

Current maintainers:

+

eLBati ivantodorovich

+

This module is part of the OCA/server-brand project on GitHub.

+

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

+
+
+
+ + diff --git a/portal_odoo_debranding/views/portal_templates.xml b/portal_odoo_debranding/views/portal_templates.xml new file mode 100644 index 00000000..33f049eb --- /dev/null +++ b/portal_odoo_debranding/views/portal_templates.xml @@ -0,0 +1,19 @@ + + + + + + + +