Browse Source

[FIX] rst syntax errors

pull/1275/head
Stéphane Bidoul (ACSONE) 6 years ago
parent
commit
a91a75fe4e
No known key found for this signature in database GPG Key ID: BCAB2555446B5B92
  1. 1
      base_export_manager/README.rst
  2. 12
      base_kanban_stage_state/README.rst
  3. 3
      base_suspend_security/README.rst
  4. 2
      user_immutable/README.rst
  5. 4
      webhook/README.rst

1
base_export_manager/README.rst

@ -44,6 +44,7 @@ To manage export profiles, you need to:
* Choose a name.
* Choose a model (table in the database).
* Choose the fields to export.
* If you choose a related field, you can choose also up to 4 levels of
subfields.
* You can drag & drop to reorder the fields.

12
base_kanban_stage_state/README.rst

@ -9,12 +9,12 @@ Base Kanban Stage State
This module extends the functionality of base_kanban_stage to allow you to
map stages from base_kanban_stage to states. The states are:
*. New (draft)
*. In Progress (open)
*. Pending (pending)
*. Done (done)
*. Cancelled (cancelled)
*. Exception (exception)
* New (draft)
* In Progress (open)
* Pending (pending)
* Done (done)
* Cancelled (cancelled)
* Exception (exception)
Usage
=====

3
base_suspend_security/README.rst

@ -1,7 +1,8 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License: AGPL-3
Suspend security
=====================
================
This module was written to allow you to call code with some `uid` while being sure no security checks (`ir.model.access` and `ir.rule`) are done. In this way, it's the same as `sudo()`, but the crucial difference is that the code still runs with the original user id. This can be important for inherited code that calls workflow functions, subscribes the current user to some object, etc.

2
user_immutable/README.rst

@ -33,7 +33,7 @@ Bug Tracker
===========
Bugs are tracked on `GitHub Issues
`<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

4
webhook/README.rst

@ -6,15 +6,15 @@
Webhook
=======
Module to receive `webhook <https://en.wikipedia.org/wiki/Webhook>`_ events.
Module to receive `webhook events <https://en.wikipedia.org/wiki/Webhook>`_.
This module invoke methods to process webhook events.
Configuration
=============
You will need create a new module to add your logic to process the events with methods called:
*def run_CONSUMER_EVENT\**
Example with gihub consumer and push event.
.. code-block:: python

Loading…
Cancel
Save