mirror of https://github.com/OCA/social.git
commit
753d3d03d1
|
@ -60,9 +60,17 @@ Do not contact contributors directly about support or help with technical issues
|
||||||
Credits
|
Credits
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
Authors
|
||||||
|
~~~~~~~
|
||||||
|
|
||||||
|
* Tecnativa
|
||||||
|
* Eficent
|
||||||
|
|
||||||
Contributors
|
Contributors
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||||
|
* Lois Rilo <lois.rilo@eficent.com>
|
||||||
* Graeme Gellatly <graeme@o4sb.com>
|
* Graeme Gellatly <graeme@o4sb.com>
|
||||||
|
|
||||||
Maintainers
|
Maintainers
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
|
# Copyright 2016 Tecnativa - Jairo Llopis
|
||||||
|
# Copyright 2017 Tecnativa - Pedro M. Baeza
|
||||||
|
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
|
||||||
|
# - Lois Rilo <lois.rilo@eficent.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Mail Debrand",
|
"name": "Mail Debrand",
|
||||||
"summary": "Remove Odoo branding in sent emails",
|
"summary": "Remove Odoo branding in sent emails",
|
||||||
"version": "12.0.2.0.0",
|
"version": "12.0.2.0.1",
|
||||||
"category": "Social Network",
|
"category": "Social Network",
|
||||||
"website": "https://github.com/OCA/social/",
|
"website": "https://github.com/OCA/social/",
|
||||||
"author": "Odoo Community Association (OCA)",
|
"author": "Tecnativa, Eficent, Odoo Community Association (OCA)",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"installable": True,
|
"installable": True,
|
||||||
"depends": [
|
"depends": [
|
||||||
|
|
|
@ -18,6 +18,11 @@ msgstr ""
|
||||||
msgid "Email Templates"
|
msgid "Email Templates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: mail_debrand
|
||||||
|
#: model:ir.model,name:mail_debrand.model_mail_thread
|
||||||
|
msgid "Email Thread"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: mail_debrand
|
#. module: mail_debrand
|
||||||
#: code:addons/mail_debrand/models/mail_template.py:15
|
#: code:addons/mail_debrand/models/mail_template.py:15
|
||||||
#, python-format
|
#, python-format
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
from . import mail_template
|
from . import mail_template
|
||||||
|
from . import mail_thread
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
|
||||||
|
# Lois Rilo <lois.rilo@eficent.com>
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
|
from odoo import models
|
||||||
|
|
||||||
|
|
||||||
|
class MailThread(models.AbstractModel):
|
||||||
|
_inherit = "mail.thread"
|
||||||
|
|
||||||
|
def _replace_local_links(self, html, base_url=None):
|
||||||
|
html = super()._replace_local_links(html, base_url=base_url)
|
||||||
|
html_debranded = self.env["mail.template"]._debrand_body(html)
|
||||||
|
return html_debranded
|
|
@ -1 +1,3 @@
|
||||||
|
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||||||
|
* Lois Rilo <lois.rilo@eficent.com>
|
||||||
* Graeme Gellatly <graeme@o4sb.com>
|
* Graeme Gellatly <graeme@o4sb.com>
|
||||||
|
|
|
@ -380,8 +380,9 @@ specifically the ‘using Odoo’ of notifications or the ‘Powered by Odoo’<
|
||||||
</li>
|
</li>
|
||||||
<li><a class="reference internal" href="#bug-tracker" id="id5">Bug Tracker</a></li>
|
<li><a class="reference internal" href="#bug-tracker" id="id5">Bug Tracker</a></li>
|
||||||
<li><a class="reference internal" href="#credits" id="id6">Credits</a><ul>
|
<li><a class="reference internal" href="#credits" id="id6">Credits</a><ul>
|
||||||
<li><a class="reference internal" href="#contributors" id="id7">Contributors</a></li>
|
<li><a class="reference internal" href="#authors" id="id7">Authors</a></li>
|
||||||
<li><a class="reference internal" href="#maintainers" id="id8">Maintainers</a></li>
|
<li><a class="reference internal" href="#contributors" id="id8">Contributors</a></li>
|
||||||
|
<li><a class="reference internal" href="#maintainers" id="id9">Maintainers</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -414,14 +415,23 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="credits">
|
<div class="section" id="credits">
|
||||||
<h1><a class="toc-backref" href="#id6">Credits</a></h1>
|
<h1><a class="toc-backref" href="#id6">Credits</a></h1>
|
||||||
<div class="section" id="contributors">
|
<div class="section" id="authors">
|
||||||
<h2><a class="toc-backref" href="#id7">Contributors</a></h2>
|
<h2><a class="toc-backref" href="#id7">Authors</a></h2>
|
||||||
<ul class="simple">
|
<ul class="simple">
|
||||||
|
<li>Tecnativa</li>
|
||||||
|
<li>Eficent</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="section" id="contributors">
|
||||||
|
<h2><a class="toc-backref" href="#id8">Contributors</a></h2>
|
||||||
|
<ul class="simple">
|
||||||
|
<li>Pedro M. Baeza <<a class="reference external" href="mailto:pedro.baeza@tecnativa.com">pedro.baeza@tecnativa.com</a>></li>
|
||||||
|
<li>Lois Rilo <<a class="reference external" href="mailto:lois.rilo@eficent.com">lois.rilo@eficent.com</a>></li>
|
||||||
<li>Graeme Gellatly <<a class="reference external" href="mailto:graeme@o4sb.com">graeme@o4sb.com</a>></li>
|
<li>Graeme Gellatly <<a class="reference external" href="mailto:graeme@o4sb.com">graeme@o4sb.com</a>></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="maintainers">
|
<div class="section" id="maintainers">
|
||||||
<h2><a class="toc-backref" href="#id8">Maintainers</a></h2>
|
<h2><a class="toc-backref" href="#id9">Maintainers</a></h2>
|
||||||
<p>This module is maintained by the OCA.</p>
|
<p>This module is maintained by the OCA.</p>
|
||||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||||
|
|
Loading…
Reference in New Issue