Skip to content

Commit 9d25f99

Browse files
committed
[FIX] sale_portal_debranding: Adjust modal content and update metadata
1 parent 1ef09ed commit 9d25f99

9 files changed

Lines changed: 591 additions & 0 deletions

File tree

sale_portal_debranding/README.rst

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
.. image:: https://odoo-community.org/readme-banner-image
2+
:target: https://odoo-community.org/get-involved?utm_source=readme
3+
:alt: Odoo Community Association
4+
5+
======================
6+
Sale Portal Debranding
7+
======================
8+
9+
..
10+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11+
!! This file is generated by oca-gen-addon-readme !!
12+
!! changes will be overwritten. !!
13+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14+
!! source digest: sha256:b8279942ce2ff293e7525d071c320a027e107fce99d08402822f72056625d636
15+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16+
17+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
18+
:target: https://odoo-community.org/page/development-status
19+
:alt: Beta
20+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
21+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
22+
:alt: License: AGPL-3
23+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--brand-lightgray.png?logo=github
24+
:target: https://github.com/OCA/server-brand/tree/19.0/sale_portal_debranding
25+
:alt: OCA/server-brand
26+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
27+
:target: https://translation.odoo-community.org/projects/server-brand-19-0/server-brand-19-0-sale_portal_debranding
28+
:alt: Translate me on Weblate
29+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
30+
:target: https://runboat.odoo-community.org/builds?repo=OCA/server-brand&target_branch=19.0
31+
:alt: Try me on Runboat
32+
33+
|badge1| |badge2| |badge3| |badge4| |badge5|
34+
35+
This module removes Odoo branding from the sale portal page modal for
36+
connecting other software.
37+
38+
Specifically, it:
39+
40+
- Replaces the Odoo-specific instructions in the "Connect your software"
41+
modal with generic ones.
42+
- Removes the section suggesting to "Get your Odoo".
43+
44+
**Table of contents**
45+
46+
.. contents::
47+
:local:
48+
49+
Bug Tracker
50+
===========
51+
52+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-brand/issues>`_.
53+
In case of trouble, please check there if your issue has already been reported.
54+
If you spotted it first, help us to smash it by providing a detailed and welcomed
55+
`feedback <https://github.com/OCA/server-brand/issues/new?body=module:%20sale_portal_debranding%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
56+
57+
Do not contact contributors directly about support or help with technical issues.
58+
59+
Credits
60+
=======
61+
62+
Authors
63+
-------
64+
65+
* HAV Media GmbH
66+
67+
Contributors
68+
------------
69+
70+
- `HAV Media <https://hav.media>`__:
71+
72+
- Jan-Phillip Oesterling <jpo@hav.media> (https://github.com/jappi00)
73+
74+
Maintainers
75+
-----------
76+
77+
This module is maintained by the OCA.
78+
79+
.. image:: https://odoo-community.org/logo.png
80+
:alt: Odoo Community Association
81+
:target: https://odoo-community.org
82+
83+
OCA, or the Odoo Community Association, is a nonprofit organization whose
84+
mission is to support the collaborative development of Odoo features and
85+
promote its widespread use.
86+
87+
This module is part of the `OCA/server-brand <https://github.com/OCA/server-brand/tree/19.0/sale_portal_debranding>`_ project on GitHub.
88+
89+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

sale_portal_debranding/__init__.py

Whitespace-only changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
2+
{
3+
"name": "Sale Portal Debranding",
4+
"version": "19.0.1.0.0",
5+
"category": "Hidden",
6+
"website": "https://github.com/OCA/server-brand",
7+
"author": "HAV Media GmbH, Odoo Community Association (OCA)",
8+
"license": "AGPL-3",
9+
"installable": True,
10+
"depends": [
11+
"sale",
12+
],
13+
"data": [
14+
"views/sale_portal_templates.xml",
15+
],
16+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [HAV Media](https://hav.media):
2+
- Jan-Phillip Oesterling \<<jpo@hav.media>\> (<https://github.com/jappi00>)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This module removes Odoo branding from the sale portal page modal for connecting other
2+
software.
3+
4+
Specifically, it:
5+
* Replaces the Odoo-specific instructions in the "Connect your software" modal with generic ones.
6+
* Removes the section suggesting to "Get your Odoo".

0 commit comments

Comments
 (0)