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

This commit is contained in:
Nedas Zilinskas
2018-06-26 13:05:27 +03:00
committed by Pedro M. Baeza
parent 3bdb520e43
commit 1b4b1b77e4
8 changed files with 21 additions and 29 deletions

View File

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

View File

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

View File

@@ -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
===========

View File

@@ -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
----------

View File

@@ -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",

View File

@@ -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">

View File

@@ -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
===========

View File

@@ -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.