[FIX] *: remove trailing whitespaces

Part-of: odoo/documentation#2978
This commit is contained in:
Victor Feyens
2022-11-17 16:11:12 +00:00
parent 4af7600805
commit efb6c47e92
102 changed files with 898 additions and 900 deletions
+2 -2
View File
@@ -33,9 +33,9 @@ A tool called *gprof2dot* will produce a graph with this result:
A tool called *xdot* will display the resulting graph:
.. code:: bash
xdot /temp/prof.xdot
Log a method
============
@@ -233,7 +233,7 @@ An example of a view inheritance extension can be found
Add the ``property_ids`` field to the ``base.view_users_form`` in a new notebook page.
Tip: an example an inheritance of the users' view can be found
`here <https://github.com/odoo/odoo/blob/691d1f087040f1ec7066e485d19ce3662dfc6501/addons/gamification/views/res_users_views.xml#L5-L14>`__.
`here <https://github.com/odoo/odoo/blob/691d1f087040f1ec7066e485d19ce3662dfc6501/addons/gamification/views/res_users_views.xml#L5-L14>`__.
Inheritance is extensively used in Odoo due to its modular concept. Do not hesitate to read
the corresponding documentation for more info!
@@ -136,7 +136,7 @@ to link a line to an invoice is to include all lines at invoice creation. To do
:class:`~odoo.fields.One2many`. One2many and Many2many use special 'commands' described in
:ref:`reference/orm/models/crud`. This format is a list of triplets executed sequentially, where
each triplet is a command to execute on the set of records. Here is a simple example to include
a One2many field ``line_ids`` at creation of a ``test.model``::
a One2many field ``line_ids`` at creation of a ``test.model``::
def inherited_action(self):
self.env["test.model"].create(
@@ -277,7 +277,7 @@ the template, such as data from additional models:
Custom fonts
============
If you want to use custom fonts you will need to add your custom font and the related less/CSS to the ``web.reports_assets_common`` assets bundle.
If you want to use custom fonts you will need to add your custom font and the related less/CSS to the ``web.reports_assets_common`` assets bundle.
Adding your custom font(s) to ``web.assets_common`` or ``web.assets_backend`` will not make your font available in QWeb reports.
Example::
@@ -9,7 +9,7 @@ Introduction
============
In Odoo 10.0 we released a mobile app which allows you to access all **Odoo apps**
(even your customized modules).
(even your customized modules).
The application is a combination of **Odoo Web** and **Native Mobile
components**. In other words it is a Odoo Web instance loaded inside a native, mobile, WebView container.
@@ -21,7 +21,7 @@ access all available mobile features.
.. warning:: These features work with **Odoo Enterprise 10.0+** only
How does it work?
How does it work?
=================
Internal workings of the mobile application:
@@ -53,7 +53,7 @@ Just like the Odoo Web Framework, the Mobile API can be used anywhere by getting
.. image:: mobile/odoo_mobile_api.png
The mobile RPC object provides a list of methods that are available (this only works with the mobile
app).
app).
Check if the method is available and then execute it.
@@ -136,7 +136,7 @@ area and the notification drawer are system-controlled areas that the user can
view at any time.
.. code-block:: javascript
mobile.showNotification({'title': 'Simple Notification', 'message': 'This is a test for a simple notification'})
.. image:: mobile/mobile_notification.png
@@ -152,7 +152,7 @@ Create contact in device
Create a new device contact with the given contact details.
.. code-block:: javascript
var contact = {
'name': 'Michel Fletcher',
'mobile': '9999999999',
@@ -205,7 +205,7 @@ Switching account in device
Use switchAccount to switch from one account to another on the device.
.. code-block:: javascript
mobile.methods.switchAccount();
.. image:: mobile/mobile_switch_account.png