[REL] freeze saas-15.3 branch

closes odoo/documentation#1791

Related: odoo/odoo#87949
Related: odoo/design-themes#558
Related: odoo/enterprise#25888
This commit is contained in:
Antoine Vandevenne (anv) 2022-04-04 07:57:42 +00:00
parent 493d45d687
commit 9cb3eaa2ef
6 changed files with 14 additions and 12 deletions

View File

@ -24,7 +24,7 @@ SOURCE_DIR = content
HTML_BUILD_DIR = $(BUILD_DIR)/html HTML_BUILD_DIR = $(BUILD_DIR)/html
ifdef VERSIONS ifdef VERSIONS
HTML_BUILD_DIR := $(HTML_BUILD_DIR)/master HTML_BUILD_DIR := $(HTML_BUILD_DIR)/saas-15.3
endif endif
ifneq ($(CURRENT_LANG),en) ifneq ($(CURRENT_LANG),en)
HTML_BUILD_DIR := $(HTML_BUILD_DIR)/$(CURRENT_LANG) HTML_BUILD_DIR := $(HTML_BUILD_DIR)/$(CURRENT_LANG)

View File

@ -4,11 +4,11 @@
### Requirements ### Requirements
- [Git](https://www.odoo.com/documentation/master/contributing/documentation.html#install-git) - [Git](https://www.odoo.com/documentation/saas-15.3/contributing/documentation.html#install-git)
- [Python 3.7 or 3.8](https://www.odoo.com/documentation/master/contributing/documentation.html#python) - [Python 3.7 or 3.8](https://www.odoo.com/documentation/saas-15.3/contributing/documentation.html#python)
- Python dependencies listed in the file [`requirements.txt`](https://github.com/odoo/documentation/tree/master/requirements.txt). - Python dependencies listed in the file [`requirements.txt`](https://github.com/odoo/documentation/tree/saas-15.3/requirements.txt).
- [Make](https://www.odoo.com/documentation/master/contributing/documentation.html#make) - [Make](https://www.odoo.com/documentation/saas-15.3/contributing/documentation.html#make)
- A local copy of the [odoo/odoo repository in master](https://github.com/odoo/odoo/tree/master) (Optional) - A local copy of the [odoo/odoo repository in saas-15.3](https://github.com/odoo/odoo/tree/saas-15.3) (Optional)
### Instructions ### Instructions
@ -23,7 +23,7 @@
2. Open the file `documentation/_build/html/index.html` in your web browser to display the render. 2. Open the file `documentation/_build/html/index.html` in your web browser to display the render.
3. See [this guide](https://www.odoo.com/documentation/master/contributing/documentation.html#preview-your-changes) 3. See [this guide](https://www.odoo.com/documentation/saas-15.3/contributing/documentation.html#preview-your-changes)
for more detailed instructions. for more detailed instructions.
Optional: to fully build the developer documentation with inline docstrings for documented Python Optional: to fully build the developer documentation with inline docstrings for documented Python
@ -34,7 +34,7 @@ be shown.
## Contribute to the documentation ## Contribute to the documentation
For contributions to the content of the documentation, please refer to the For contributions to the content of the documentation, please refer to the
[Introduction Guide](https://www.odoo.com/documentation/master/contributing/documentation.html). [Introduction Guide](https://www.odoo.com/documentation/saas-15.3/contributing/documentation.html).
To **report a content issue**, **request new content** or **ask a question**, use the To **report a content issue**, **request new content** or **ask a question**, use the
[repository's issue tracker](https://github.com/odoo/documentation-user/issues) as usual. [repository's issue tracker](https://github.com/odoo/documentation-user/issues) as usual.

View File

@ -19,7 +19,7 @@ copyright = 'Odoo S.A.'
# `version` if the version info for the project being documented, acts as replacement for |version|, # `version` if the version info for the project being documented, acts as replacement for |version|,
# also used in various other places throughout the built documents. # also used in various other places throughout the built documents.
# `release` is the full version, including alpha/beta/rc tags. Acts as replacement for |release|. # `release` is the full version, including alpha/beta/rc tags. Acts as replacement for |release|.
version = release = 'master' version = release = 'saas-15.3'
# The minimal Sphinx version required to build the documentation. # The minimal Sphinx version required to build the documentation.
needs_sphinx = '3.0.0' needs_sphinx = '3.0.0'
@ -158,6 +158,7 @@ sphinx.transforms.i18n.docname_to_domain = (
# is populated. If a version is passed to `versions` but is not listed here, it will not be shown. # is populated. If a version is passed to `versions` but is not listed here, it will not be shown.
versions_names = { versions_names = {
'master': "Master", 'master': "Master",
'saas-15.3': "Odoo Online",
'saas-15.2': "Odoo Online", 'saas-15.2': "Odoo Online",
'saas-15.1': "Odoo Online", 'saas-15.1': "Odoo Online",
'15.0': "Odoo 15", '15.0': "Odoo 15",

View File

@ -220,7 +220,8 @@ Python comes with its own package manager: `pip
a single command. a single command.
#. Download and install the recommended release (`see README file #. Download and install the recommended release (`see README file
<https://github.com/odoo/documentation/tree/master/README.md>`_) of **Python 3** on your machine. <https://github.com/odoo/documentation/tree/saas-15.3/README.md>`_) of **Python 3** on your
machine.
#. Make sure to have **pip** installed on your machine (on Windows, you can install pip alongside #. Make sure to have **pip** installed on your machine (on Windows, you can install pip alongside
Python). Python).
#. Execute the following commands in a terminal to verify that both installations finished #. Execute the following commands in a terminal to verify that both installations finished

View File

@ -18,7 +18,7 @@ Data Files (CSV)
Odoo is a highly data driven system. Although behavior is customized using Python code, part of a Odoo is a highly data driven system. Although behavior is customized using Python code, part of a
module's value is in the data it sets up when loaded. One way to load data is through a CSV module's value is in the data it sets up when loaded. One way to load data is through a CSV
file. One example is the file. One example is the
`list of country states <https://github.com/odoo/odoo/blob/master/odoo/addons/base/data/res.country.state.csv>`__ `list of country states <https://github.com/odoo/odoo/blob/saas-15.3/odoo/addons/base/data/res.country.state.csv>`__
which is loaded at installation of the ``base`` module. which is loaded at installation of the ``base`` module.
.. code-block:: text .. code-block:: text

View File

@ -599,7 +599,7 @@ Javascript
#. Add any step you want. #. Add any step you want.
Every step contains at least a trigger. You can either use the `predefined steps Every step contains at least a trigger. You can either use the `predefined steps
<https://github.com/odoo/odoo/blob/master/addons/web_tour/static/src/js/tour_step_utils.js>`_ or write <https://github.com/odoo/odoo/blob/saas-15.3/addons/web_tour/static/src/js/tour_step_utils.js>`_ or write
your own personalized step. your own personalized step.
Here are some example of steps: Here are some example of steps: