Skip to content

Commit 75e7f29

Browse files
committed
[MOV] developer/api/odoo: rename odoo.rst into external_api.rst
The previous file name was not very relevant in regard to the content of the page, and it conflicted with the `sys.path`. closes #2067 Signed-off-by: Antoine Vandevenne (anv) <[email protected]>
1 parent 4649c3f commit 75e7f29

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

content/developer/howtos/rdtraining/B_acl_irrules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ or a *visibility* feature before using it:
482482

483483
* *Visibility* features mean a user can still access the model or record
484484
otherwise, either through another part of the interface or by :doc:`performing
485-
operations remotely using RPC <../../misc/api/odoo>`, things might just not be
485+
operations remotely using RPC <../../misc/api/external_api>`, things might just not be
486486
visible in the web interface in some contexts.
487487
* *Security* features mean a user can not access records, fields or operations.
488488

content/developer/misc/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ API
77
.. toctree::
88
:titlesonly:
99

10-
api/odoo
10+
api/external_api
1111
api/iap
1212
api/extract_api

content/developer/misc/api/odoo.rst renamed to content/developer/misc/api/external_api.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ account (although they can not be used to log-in via the interface).
8080
In order to add a key to your account, simply go to your
8181
:guilabel:`Preferences` (or :guilabel:`My Profile`):
8282

83-
.. image:: odoo/preferences.png
83+
.. image:: external_api/preferences.png
8484
:align: center
8585

8686
then open the :guilabel:`Account Security` tab, and click
8787
:guilabel:`New API Key`:
8888

89-
.. image:: odoo/account-security.png
89+
.. image:: external_api/account-security.png
9090
:align: center
9191

9292
Input a description for the key, **this description should be as clear and
@@ -102,7 +102,7 @@ lost).
102102
Once you have keys configured on your account, they will appear above the
103103
:guilabel:`New API Key` button, and you will be able to delete them:
104104

105-
.. image:: odoo/delete-key.png
105+
.. image:: external_api/delete-key.png
106106
:align: center
107107

108108
**A deleted API key can not be undeleted or re-set**. You will have to generate
@@ -237,7 +237,7 @@ Result:
237237

238238
int uid = (int)client.execute(common_config, "authenticate", asList(db, username, password, emptyMap()));
239239

240-
.. _api/odoo/calling_methods:
240+
.. _api/external_api/calling_methods:
241241

242242
Calling methods
243243
===============
15.5 KB
Loading
23.4 KB
Loading
12.1 KB
Loading

content/developer/reference/backend/security.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Unsafe Public Methods
203203
---------------------
204204

205205
Any public method can be executed via a :ref:`RPC call
206-
<api/odoo/calling_methods>` with the chosen parameters. The methods
206+
<api/external_api/calling_methods>` with the chosen parameters. The methods
207207
starting with a ``_`` are not callable from an action button or external API.
208208

209209
On public methods, the record on which a method is executed and the parameters

0 commit comments

Comments
 (0)