Browse Source

[FIX] fix lint errors across the repository (#968)

pull/158/head
Nedas Zilinskas 6 years ago
committed by Pedro M. Baeza
parent
commit
1b4b1b77e4
  1. 4
      web_action_conditionable/README.rst
  2. 1
      web_action_conditionable/__openerp__.py
  3. 7
      web_ckeditor4/README.rst
  4. 4
      web_menu_autohide/README.rst
  5. 2
      web_menu_autohide/__openerp__.py
  6. 3
      web_one2many_list_action/README.rst
  7. 19
      web_option_auto_color/README.rst
  8. 10
      web_widget_x2many_2d_matrix/README.rst

4
web_action_conditionable/README.rst

@ -49,10 +49,6 @@ For further information, please visit:
* https://www.odoo.com/forum/help-1
Known issues / Roadmap
======================
* ...
Bug Tracker
===========

1
web_action_conditionable/__openerp__.py

@ -7,6 +7,7 @@
'base',
'web',
],
"license": "AGPL-3",
'data': ['views/view.xml'],
"author": "Cristian Salamea,Odoo Community Association (OCA)",
"installable": True,

7
web_ckeditor4/README.rst

@ -17,9 +17,10 @@ Known issues / Roadmap
======================
* This version of CKEditor contains a patch that prevents the referencing of
the editor's iframe if it has already been cleaned up by Odoo. In 8.0, this is
the case if the editor was created in an x2many popup. The patch was proposed
as https://github.com/ckeditor/ckeditor-dev/pull/200
the editor's iframe if it has already been cleaned up by Odoo. In 8.0, this is
the case if the editor was created in an x2many popup. The patch was proposed
as https://github.com/ckeditor/ckeditor-dev/pull/200
Bug Tracker
===========

4
web_menu_autohide/README.rst

@ -28,8 +28,8 @@ Contributors
Icon
----
* http://commons.wikimedia.org/wiki/File:VisualEditor_-_Icon_-_Menu.svg
* http://commons.wikimedia.org/wiki/File:ProhibitionSign2.svg
* `http://commons.wikimedia.org/wiki/File:VisualEditor_-_Icon_-_Menu.svg`
* `http://commons.wikimedia.org/wiki/File:ProhibitionSign2.svg`
Maintainer
----------

2
web_menu_autohide/__openerp__.py

@ -21,7 +21,7 @@
{
"name": "Hide menus",
"version": "8.0.1.0.0",
"author": "Therp BV",
"author": "Therp BV, Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Tools",
"summary": "Hide top and left menu bar",

3
web_one2many_list_action/README.rst

@ -11,8 +11,7 @@ use the 'tree_but_open' interface to define actions for rows.
To use this just specify a 'tree_but_open' action on the target model of the
one2many field relation.
Example
::
Example::
<!-- server action retrieves ir.actions.act_window to open row specific popup -->
<record model="ir.actions.server" id="message_index_list_view_delegate_open">

19
web_option_auto_color/README.rst

@ -20,17 +20,14 @@ Usage
In the view declaration, put autocolor="1" attribute in the field tag::
...
<field name="arch" type="xml">
<tree string="View name">
...
<field name="name"/>
<field name="name2" autocolor="1"/>
...
</tree>
</field>
...
<field name="arch" type="xml">
<tree string="View name">
...
<field name="name"/>
<field name="name2" autocolor="1"/>
...
</tree>
</field>
Bug Tracker
===========

10
web_widget_x2many_2d_matrix/README.rst

@ -9,12 +9,10 @@
This module allows to show an x2many field with 3-tuples
($x_value, $y_value, $value) in a table
========= =========== ===========
\ $x_value1 $x_value2
========= =========== ===========
$y_value1 $value(1/1) $value(2/1)
$y_value2 $value(1/2) $value(2/2)
========= =========== ===========
| | $x_value1 | $x_value2 |
| :---: | :---: | :---: |
| $y_value1 | $value(1/1) | $value(2/1) |
| $y_value2 | $value(1/2) | $value(2/2) |
where `value(n/n)` is editable.

Loading…
Cancel
Save