mirror of https://github.com/OCA/web.git
[IMP] web_ir_actions_act_window_message: pre-commit auto fixes
parent
9f1bd885eb
commit
c0f6b91ca7
|
@ -17,18 +17,19 @@ Client side message boxes
|
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message
|
||||
:target: https://github.com/OCA/web/tree/18.0/web_ir_actions_act_window_message
|
||||
:alt: OCA/web
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_ir_actions_act_window_message
|
||||
:target: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_ir_actions_act_window_message
|
||||
: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/web&target_branch=16.0
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=18.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module allows to show a message popup on the client side as result of a button.
|
||||
This module allows to show a message popup on the client side as result
|
||||
of a button.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
|
@ -42,52 +43,52 @@ Depend on this module and return
|
|||
|
||||
.. code:: python
|
||||
|
||||
{
|
||||
'type': 'ir.actions.act_window.message',
|
||||
'title': _('My title'),
|
||||
'message': _('My message'),
|
||||
# optional title of the close button, if not set, will be _('Close')
|
||||
# if set False, no close button will be shown
|
||||
# you can create your own close button with an action of type
|
||||
# ir.actions.act_window_close
|
||||
'close_button_title': 'Make this window go away',
|
||||
# Use HTML instead of text
|
||||
'is_html_message': True,
|
||||
# this is an optional list of buttons to show
|
||||
'buttons': [
|
||||
# a button can be any action (also ir.actions.report.xml et al)
|
||||
{
|
||||
'type': 'ir.actions.act_window',
|
||||
'name': 'All customers',
|
||||
'res_model': 'res.partner',
|
||||
'view_mode': 'form',
|
||||
'views': [[False, 'list'], [False, 'form']],
|
||||
'domain': [('customer', '=', True)],
|
||||
},
|
||||
# or if type == method, you need to pass a model, a method name and
|
||||
# parameters
|
||||
{
|
||||
'type': 'method',
|
||||
'name': _('Yes, do it'),
|
||||
'model': self._name,
|
||||
'method': 'myfunction',
|
||||
# list of arguments to pass positionally
|
||||
'args': [self.ids],
|
||||
# dictionary of keyword arguments
|
||||
'kwargs': {'force': True},
|
||||
# button style
|
||||
'classes': 'btn-primary',
|
||||
}
|
||||
]
|
||||
}
|
||||
{
|
||||
'type': 'ir.actions.act_window.message',
|
||||
'title': _('My title'),
|
||||
'message': _('My message'),
|
||||
# optional title of the close button, if not set, will be _('Close')
|
||||
# if set False, no close button will be shown
|
||||
# you can create your own close button with an action of type
|
||||
# ir.actions.act_window_close
|
||||
'close_button_title': 'Make this window go away',
|
||||
# Use HTML instead of text
|
||||
'is_html_message': True,
|
||||
# this is an optional list of buttons to show
|
||||
'buttons': [
|
||||
# a button can be any action (also ir.actions.report.xml et al)
|
||||
{
|
||||
'type': 'ir.actions.act_window',
|
||||
'name': 'All customers',
|
||||
'res_model': 'res.partner',
|
||||
'view_mode': 'form',
|
||||
'views': [[False, 'list'], [False, 'form']],
|
||||
'domain': [('customer', '=', True)],
|
||||
},
|
||||
# or if type == method, you need to pass a model, a method name and
|
||||
# parameters
|
||||
{
|
||||
'type': 'method',
|
||||
'name': _('Yes, do it'),
|
||||
'model': self._name,
|
||||
'method': 'myfunction',
|
||||
# list of arguments to pass positionally
|
||||
'args': [self.ids],
|
||||
# dictionary of keyword arguments
|
||||
'kwargs': {'force': True},
|
||||
# button style
|
||||
'classes': 'btn-primary',
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
You are responsible for translating the messages.
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
* add `message_type` to differenciate between warnings, errors, etc.
|
||||
* have one `message_type` to show a nonmodal warning on top right
|
||||
- add message_type to differenciate between warnings, errors, etc.
|
||||
- have one message_type to show a nonmodal warning on top right
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
@ -95,7 +96,7 @@ Bug Tracker
|
|||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/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 <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
|
@ -103,27 +104,27 @@ Credits
|
|||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
-------
|
||||
|
||||
* Therp BV
|
||||
* ACSONE SA/NV
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
------------
|
||||
|
||||
* Holger Brunn <hbrunn@therp.nl>
|
||||
* Zakaria Makrelouf (ACSONE SA/NV) <z.makrelouf@gmail.com>
|
||||
* Benjamin Willig (ACSONE SA/NV) <benjamin.willig@acsone.eu>
|
||||
* Ioan Galan (Studio73) <ioan@studio73.es>
|
||||
* Abraham Anes (Studio73) <abraham@studio73.es>
|
||||
* Miguel Gandia (Studio73) <miguel@studio73.es>
|
||||
* `DynApps NV <https://www.dynapps.be>`_:
|
||||
- Holger Brunn <hbrunn@therp.nl>
|
||||
- Zakaria Makrelouf (ACSONE SA/NV) <z.makrelouf@gmail.com>
|
||||
- Benjamin Willig (ACSONE SA/NV) <benjamin.willig@acsone.eu>
|
||||
- Ioan Galan (Studio73) <ioan@studio73.es>
|
||||
- Abraham Anes (Studio73) <abraham@studio73.es>
|
||||
- Miguel Gandia (Studio73) <miguel@studio73.es>
|
||||
- `DynApps NV <https://www.dynapps.be>`__:
|
||||
|
||||
* Koen Loodts
|
||||
* Raf Ven
|
||||
- Koen Loodts
|
||||
- Raf Ven
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
|
@ -135,6 +136,6 @@ 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/web <https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message>`_ project on GitHub.
|
||||
This module is part of the `OCA/web <https://github.com/OCA/web/tree/18.0/web_ir_actions_act_window_message>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
|
@ -0,0 +1,9 @@
|
|||
- Holger Brunn \<<hbrunn@therp.nl>\>
|
||||
- Zakaria Makrelouf (ACSONE SA/NV) \<<z.makrelouf@gmail.com>\>
|
||||
- Benjamin Willig (ACSONE SA/NV) \<<benjamin.willig@acsone.eu>\>
|
||||
- Ioan Galan (Studio73) \<<ioan@studio73.es>\>
|
||||
- Abraham Anes (Studio73) \<<abraham@studio73.es>\>
|
||||
- Miguel Gandia (Studio73) \<<miguel@studio73.es>\>
|
||||
- [DynApps NV](https://www.dynapps.be):
|
||||
- Koen Loodts
|
||||
- Raf Ven
|
|
@ -1,10 +0,0 @@
|
|||
* Holger Brunn <hbrunn@therp.nl>
|
||||
* Zakaria Makrelouf (ACSONE SA/NV) <z.makrelouf@gmail.com>
|
||||
* Benjamin Willig (ACSONE SA/NV) <benjamin.willig@acsone.eu>
|
||||
* Ioan Galan (Studio73) <ioan@studio73.es>
|
||||
* Abraham Anes (Studio73) <abraham@studio73.es>
|
||||
* Miguel Gandia (Studio73) <miguel@studio73.es>
|
||||
* `DynApps NV <https://www.dynapps.be>`_:
|
||||
|
||||
* Koen Loodts
|
||||
* Raf Ven
|
|
@ -1 +1,2 @@
|
|||
This module allows to show a message popup on the client side as result of a button.
|
||||
This module allows to show a message popup on the client side as result
|
||||
of a button.
|
|
@ -0,0 +1,2 @@
|
|||
- add message_type to differenciate between warnings, errors, etc.
|
||||
- have one message_type to show a nonmodal warning on top right
|
|
@ -1,2 +0,0 @@
|
|||
* add `message_type` to differenciate between warnings, errors, etc.
|
||||
* have one `message_type` to show a nonmodal warning on top right
|
|
@ -0,0 +1,44 @@
|
|||
Depend on this module and return
|
||||
|
||||
``` python
|
||||
{
|
||||
'type': 'ir.actions.act_window.message',
|
||||
'title': _('My title'),
|
||||
'message': _('My message'),
|
||||
# optional title of the close button, if not set, will be _('Close')
|
||||
# if set False, no close button will be shown
|
||||
# you can create your own close button with an action of type
|
||||
# ir.actions.act_window_close
|
||||
'close_button_title': 'Make this window go away',
|
||||
# Use HTML instead of text
|
||||
'is_html_message': True,
|
||||
# this is an optional list of buttons to show
|
||||
'buttons': [
|
||||
# a button can be any action (also ir.actions.report.xml et al)
|
||||
{
|
||||
'type': 'ir.actions.act_window',
|
||||
'name': 'All customers',
|
||||
'res_model': 'res.partner',
|
||||
'view_mode': 'form',
|
||||
'views': [[False, 'list'], [False, 'form']],
|
||||
'domain': [('customer', '=', True)],
|
||||
},
|
||||
# or if type == method, you need to pass a model, a method name and
|
||||
# parameters
|
||||
{
|
||||
'type': 'method',
|
||||
'name': _('Yes, do it'),
|
||||
'model': self._name,
|
||||
'method': 'myfunction',
|
||||
# list of arguments to pass positionally
|
||||
'args': [self.ids],
|
||||
# dictionary of keyword arguments
|
||||
'kwargs': {'force': True},
|
||||
# button style
|
||||
'classes': 'btn-primary',
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
You are responsible for translating the messages.
|
|
@ -1,44 +0,0 @@
|
|||
Depend on this module and return
|
||||
|
||||
.. code:: python
|
||||
|
||||
{
|
||||
'type': 'ir.actions.act_window.message',
|
||||
'title': _('My title'),
|
||||
'message': _('My message'),
|
||||
# optional title of the close button, if not set, will be _('Close')
|
||||
# if set False, no close button will be shown
|
||||
# you can create your own close button with an action of type
|
||||
# ir.actions.act_window_close
|
||||
'close_button_title': 'Make this window go away',
|
||||
# Use HTML instead of text
|
||||
'is_html_message': True,
|
||||
# this is an optional list of buttons to show
|
||||
'buttons': [
|
||||
# a button can be any action (also ir.actions.report.xml et al)
|
||||
{
|
||||
'type': 'ir.actions.act_window',
|
||||
'name': 'All customers',
|
||||
'res_model': 'res.partner',
|
||||
'view_mode': 'form',
|
||||
'views': [[False, 'list'], [False, 'form']],
|
||||
'domain': [('customer', '=', True)],
|
||||
},
|
||||
# or if type == method, you need to pass a model, a method name and
|
||||
# parameters
|
||||
{
|
||||
'type': 'method',
|
||||
'name': _('Yes, do it'),
|
||||
'model': self._name,
|
||||
'method': 'myfunction',
|
||||
# list of arguments to pass positionally
|
||||
'args': [self.ids],
|
||||
# dictionary of keyword arguments
|
||||
'kwargs': {'force': True},
|
||||
# button style
|
||||
'classes': 'btn-primary',
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
You are responsible for translating the messages.
|
|
@ -8,10 +8,11 @@
|
|||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
||||
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
Despite the name, some widely supported CSS2 features are used.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
|
@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
|||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code .ln { color: gray; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
|
@ -300,7 +301,7 @@ span.option {
|
|||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
span.problematic, pre.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
|
@ -368,8 +369,9 @@ ul.auto-toc {
|
|||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:c6ab6322d92b7ec73af6324032ed00e8a974d28ad30f78d025febc67e5976bf7
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_ir_actions_act_window_message"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows to show a message popup on the client side as result of a button.</p>
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/18.0/web_ir_actions_act_window_message"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_ir_actions_act_window_message"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows to show a message popup on the client side as result
|
||||
of a button.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
|
@ -432,8 +434,8 @@ ul.auto-toc {
|
|||
<div class="section" id="known-issues-roadmap">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h1>
|
||||
<ul class="simple">
|
||||
<li>add <cite>message_type</cite> to differenciate between warnings, errors, etc.</li>
|
||||
<li>have one <cite>message_type</cite> to show a nonmodal warning on top right</li>
|
||||
<li>add message_type to differenciate between warnings, errors, etc.</li>
|
||||
<li>have one message_type to show a nonmodal warning on top right</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
|
@ -441,7 +443,7 @@ ul.auto-toc {
|
|||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
|
||||
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
|
||||
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
|
@ -472,11 +474,13 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
|
||||
<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
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/16.0/web_ir_actions_act_window_message">OCA/web</a> project on GitHub.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/18.0/web_ir_actions_act_window_message">OCA/web</a> project on GitHub.</p>
|
||||
<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>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue