diff --git a/content/administration/on_premise/deploy.rst b/content/administration/on_premise/deploy.rst index fa1dd5cbe..39e7002ec 100644 --- a/content/administration/on_premise/deploy.rst +++ b/content/administration/on_premise/deploy.rst @@ -172,7 +172,7 @@ in Odoo the db_sslmode control the ssl security of the connection with value chosen out of 'disable', 'allow', 'prefer', 'require', 'verify-ca' or 'verify-full' -`PostgreSQL Doc `_ +`PostgreSQL Doc `_ .. _builtin_server: @@ -923,8 +923,8 @@ Here are the supported browsers: .. _socat: http://www.dest-unreach.org/socat/ .. _PostgreSQL connection settings: .. _listen to network interfaces: - https://www.postgresql.org/docs/12/static/runtime-config-connection.html + https://www.postgresql.org/docs/15/runtime-config-connection.html .. _use an SSH tunnel: - https://www.postgresql.org/docs/12/static/ssh-tunnels.html + https://www.postgresql.org/docs/15/ssh-tunnels.html .. _WSGI: https://wsgi.readthedocs.org/ .. _POSBox: https://www.odoo.com/page/point-of-sale-hardware#part_2 diff --git a/content/administration/on_premise/source.rst b/content/administration/on_premise/source.rst index 3b43fc64a..8f0203982 100644 --- a/content/administration/on_premise/source.rst +++ b/content/administration/on_premise/source.rst @@ -198,7 +198,7 @@ Odoo uses PostgreSQL as its database management system. .. group-tab:: Linux - Use a package manager to download and install PostgreSQL (supported versions: 12.0 or above). + Use a package manager to download and install PostgreSQL (supported versions: 15.0 or above). It can be achieved by executing the following: .. code-block:: console @@ -207,13 +207,13 @@ Odoo uses PostgreSQL as its database management system. .. group-tab:: Windows - `Download PostgreSQL `_ (supported versions: 12.0 + `Download PostgreSQL `_ (supported versions: 15.0 or above) and install it. .. group-tab:: Mac OS Use `Postgres.app `_ to download and install PostgreSQL (supported - version: 12.0 or above). + version: 15.0 or above). .. tip:: To make the command line tools bundled with Postgres.app available, make sure to set up the diff --git a/content/developer/reference/cli.rst b/content/developer/reference/cli.rst index c56b5aa2b..55b5c48cd 100644 --- a/content/developer/reference/cli.rst +++ b/content/developer/reference/cli.rst @@ -651,13 +651,13 @@ Here is a sample file: .. _jinja2: https://jinja.palletsprojects.com/ .. _regular expression: https://docs.python.org/3/library/re.html .. _password authentication: - https://www.postgresql.org/docs/12/static/auth-methods.html#AUTH-PASSWORD + https://www.postgresql.org/docs/15/auth-password.html .. _template database: - https://www.postgresql.org/docs/12/static/manage-ag-templatedbs.html + https://www.postgresql.org/docs/15/manage-ag-templatedbs.html .. _level: https://docs.python.org/3/library/logging.html#logging.Logger.setLevel .. _a PostgreSQL URI: - https://www.postgresql.org/docs/12/static/libpq-connect.html#AEN38208 + https://www.postgresql.org/docs/15/libpq-connect.html#id-1.7.3.8.3.6 .. _Werkzeug's proxy support: https://werkzeug.palletsprojects.com/en/0.16.x/middleware/proxy_fix/#module-werkzeug.middleware.proxy_fix .. _pyinotify: https://github.com/seb-m/pyinotify/wiki diff --git a/content/developer/tutorials/backend.rst b/content/developer/tutorials/backend.rst index 73d60684d..c8d7c293c 100644 --- a/content/developer/tutorials/backend.rst +++ b/content/developer/tutorials/backend.rst @@ -468,7 +468,7 @@ Relational field types are: print(foo.other_id.name) - .. seealso:: `foreign keys `_ + .. seealso:: `foreign keys `_ :class:`One2many(other_model, related_field) ` A virtual relationship, inverse of a :class:`~odoo.fields.Many2one`. @@ -1368,7 +1368,7 @@ Dashboards .. _POEdit: https://poedit.net .. _PostgreSQL's documentation: .. _table_constraint: - https://www.postgresql.org/docs/12/static/ddl-constraints.html + https://www.postgresql.org/docs/15/ddl-constraints.html .. _python: https://python.org .. _XPath: https://w3.org/TR/xpath .. _twitter bootstrap: https://getbootstrap.com diff --git a/content/developer/tutorials/server_framework_101/07_relations.rst b/content/developer/tutorials/server_framework_101/07_relations.rst index 1d2130d83..02cf607a7 100644 --- a/content/developer/tutorials/server_framework_101/07_relations.rst +++ b/content/developer/tutorials/server_framework_101/07_relations.rst @@ -57,7 +57,7 @@ can then be easily done with:: .. seealso:: - `foreign keys `_ + `foreign keys `_ In practice a many2one can be seen as a dropdown list in a form view. diff --git a/content/developer/tutorials/server_framework_101/10_constraints.rst b/content/developer/tutorials/server_framework_101/10_constraints.rst index b6f5f771e..a215c059b 100644 --- a/content/developer/tutorials/server_framework_101/10_constraints.rst +++ b/content/developer/tutorials/server_framework_101/10_constraints.rst @@ -125,4 +125,4 @@ improve it in the :doc:`next chapter <11_sprinkles>`. .. _PostgreSQL's documentation: .. _table_constraint: - https://www.postgresql.org/docs/12/ddl-constraints.html + https://www.postgresql.org/docs/15/ddl-constraints.html diff --git a/content/developer/tutorials/server_framework_101/11_sprinkles.rst b/content/developer/tutorials/server_framework_101/11_sprinkles.rst index f7116fd92..4bbf719a3 100644 --- a/content/developer/tutorials/server_framework_101/11_sprinkles.rst +++ b/content/developer/tutorials/server_framework_101/11_sprinkles.rst @@ -516,4 +516,4 @@ Looking good? If not, don't worry, the :doc:`next chapter <12_inheritance>` doesn't require stat buttons ;-) .. _order_by: - https://www.postgresql.org/docs/12/queries-order.html + https://www.postgresql.org/docs/15/queries-order.html