Skip to content

Commit 05a3a31

Browse files
committed
Merge PR #955 into 16.0
Signed-off-by legalsylvain
2 parents 4b55517 + 5d5ec98 commit 05a3a31

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

sql_export/README.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,13 @@ promote its widespread use.
119119
.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px
120120
:target: https://github.com/legalsylvain
121121
:alt: legalsylvain
122+
.. |maintainer-florian-dacosta| image:: https://github.com/florian-dacosta.png?size=40px
123+
:target: https://github.com/florian-dacosta
124+
:alt: florian-dacosta
122125

123-
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
126+
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:
124127

125-
|maintainer-legalsylvain|
128+
|maintainer-legalsylvain| |maintainer-florian-dacosta|
126129

127130
This module is part of the `OCA/reporting-engine <https://github.com/OCA/reporting-engine/tree/16.0/sql_export>`_ project on GitHub.
128131

sql_export/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"name": "SQL Export",
77
"version": "16.0.2.2.0",
88
"author": "Akretion,GRAP,Odoo Community Association (OCA)",
9-
"maintainers": ["legalsylvain"],
9+
"maintainers": ["legalsylvain", "florian-dacosta"],
1010
"website": "https://github.com/OCA/reporting-engine",
1111
"license": "AGPL-3",
1212
"category": "Generic Modules/Others",

sql_export/static/description/index.html

+9-6
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88

99
/*
1010
:Author: David Goodger (goodger@python.org)
11-
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
11+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
1212
:Copyright: This stylesheet has been placed in the public domain.
1313
1414
Default cascading style sheet for the HTML output of Docutils.
15+
Despite the name, some widely supported CSS2 features are used.
1516
1617
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
1718
customize this style sheet.
@@ -274,7 +275,7 @@
274275
margin-left: 2em ;
275276
margin-right: 2em }
276277

277-
pre.code .ln { color: grey; } /* line numbers */
278+
pre.code .ln { color: gray; } /* line numbers */
278279
pre.code, code { background-color: #eeeeee }
279280
pre.code .comment, code .comment { color: #5C6576 }
280281
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -300,7 +301,7 @@
300301
span.pre {
301302
white-space: pre }
302303

303-
span.problematic {
304+
span.problematic, pre.problematic {
304305
color: red }
305306

306307
span.section-subtitle {
@@ -453,12 +454,14 @@ <h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
453454
<div class="section" id="maintainers">
454455
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
455456
<p>This module is maintained by the OCA.</p>
456-
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
457+
<a class="reference external image-reference" href="https://odoo-community.org">
458+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
459+
</a>
457460
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
458461
mission is to support the collaborative development of Odoo features and
459462
promote its widespread use.</p>
460-
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
461-
<p><a class="reference external image-reference" href="https://github.com/legalsylvain"><img alt="legalsylvain" src="https://github.com/legalsylvain.png?size=40px" /></a></p>
463+
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainers</a>:</p>
464+
<p><a class="reference external image-reference" href="https://github.com/legalsylvain"><img alt="legalsylvain" src="https://github.com/legalsylvain.png?size=40px" /></a> <a class="reference external image-reference" href="https://github.com/florian-dacosta"><img alt="florian-dacosta" src="https://github.com/florian-dacosta.png?size=40px" /></a></p>
462465
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/reporting-engine/tree/16.0/sql_export">OCA/reporting-engine</a> project on GitHub.</p>
463466
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
464467
</div>

sql_export/wizard/wizard_file.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def export_sql(self):
7979
sql_export.id,
8080
),
8181
)
82-
self._get_field_attachment().write(
82+
self._get_field_attachment().sudo().write(
8383
{
8484
"name": self.file_name,
8585
"mimetype": guess_type(self.file_name)[0],

0 commit comments

Comments
 (0)