Documentation¶
This introductory guide will help you acquire the tools and knowledge needed to contribute to the documentation.
Read the introduction to the reStructuredText language if you are not familiar with it. Then, there are two courses of action to start contributing to the documentation:
For minor changes, such as adding a paragraph or fixing a typo, we recommend using the GitHub interface. This is the easiest and fastest way to submit changes, and it is suitable for non-technical people. Jump directly to the Contributing to the documentation section to get started.
For more complex changes, such as adding a new page, it is necessary to use Git and work from a local copy of the documentation. Follow the instructions in the Environment setup section first to prepare your environment.
reStructuredText (RST)¶
The documentation is written in reStructuredText (RST), a lightweight markup language consisting of regular text augmented with markup, which allows including headings, images, notes, and so on. RST is easy to use, even if you are not familiar with it.
Environment setup¶
The instructions below help you prepare your environment for making local changes to the documentation and then push them to GitHub. Skip this section and go to Contributing to the documentation if you have already completed this step or want to make changes from the GitHub interface.
First, create a GitHub account. Odoo uses GitHub to manage the source code of its products, and this is where you will submit your changes.
Generate a new SSH key and register it on your GitHub account.
Go to github.com/odoo/documentation and click on the Fork button in the top right corner to create a fork (your own copy) of the repository on your account. This creates a copy of the codebase to which you can make changes without affecting the main codebase. Skip this step if you work at Odoo.
Install Git. It is a command-line (a text interface) tool that allows tracking the history of changes made to a file and, more importantly, working on different versions of that file simultaneously. It means you do not need to worry about overwriting someone else’s pending work when making changes.
Verify that the installation directory of Git is included in your system’s
PATH
variable.Follow the guide to update the PATH variable on Linux and macOS with the installation path of Git (by default
/usr/bin/git
).Follow the guide to update the PATH variable on Windows with the installation path of Git (by default
C:\Program Files\Git
).Configure Git to identify yourself as the author of your future contributions. Enter the same email address you used to register on GitHub.
$ git config --global user.name "Your Name" $ git config --global user.email "youremail@example.com"
Clone the sources with Git and navigate into the local repository.
$ git clone git@github.com:odoo/documentation.git $ cd documentation
Configure Git to push changes to your fork rather than to the main codebase. In the commands below, replace
<your_github_account>
with the name of the GitHub account on which you created the fork. Skip this step if you work at Odoo.$ git remote add dev git@github.com:<your_github_account>/documentation.git
Configure Git to ease the collaboration between writers coming from different systems.
$ git config --global core.autocrlf input $ git config commit.template `pwd`/commit_template.txt
$ git config --global core.autocrlf true $ git config commit.template %CD%\commit_template.txt
Install the Python dependencies of the documentation with pip.
$ pip install -r requirements.txt
Verify that the installation directory of the Python dependencies is included in your system’s
PATH
variable.Follow the guide to update the PATH variable on Linux and macOS with the installation path of the Python dependencies (by default
~/.local/bin
).Follow the guide to update the PATH variable on Windows with the installation path of the Python dependencies.
Install Make.
$ sudo apt install make -y
Follow the guide to install Make on Windows.
You are now ready to make your first contribution with Git.
Contributing to the documentation¶
First, create a GitHub account. Odoo uses GitHub to manage the source code of its products, and this is where you will submit your changes.
Verify that you are browsing the documentation in the version that you intend to change. The version can be selected from the dropdown in the top menu.
Head to the page that you want to change and click on the Edit on GitHub button in the top right corner of the page.
Click on the Fork this repository button to create a fork (your own copy) of the repository on your account. This creates a copy of the codebase to which you can make changes without affecting the main codebase. Skip this step if you work at Odoo.
Make the desired changes while taking care of following the content and RST guidelines.
Tip
Click on the Preview changes button to review your contribution in a more human-readable format. Be aware that the preview is not able to handle all markups correctly. Notes and tips, for instance, are shown as plain text.
Scroll to the bottom of the page and fill out the small form to propose your changes. In the first text box, write a very short summary of your changes. For instance, “Fix a typo” or “Add documentation for invoicing of sales orders.” In the second text box, explain why you are proposing these changes. Then, click on the Propose changes button.
Review your changes and click on the Create pull request button.
Tick the Allow edits from maintainer checkbox. Skip this step if you work at Odoo.
Review the summary that you wrote about your changes and click on the Create pull request button again.
At the bottom of the page, check the mergeability status and address any issues.
As soon as your PR is ready for merging, a member of the Odoo team is automatically assigned for review. If the reviewer has questions or remarks, they will post them as comments and you will be notified by email. Those comments must be resolved for the contribution to go forward.
Once your changes are approved, the reviewer merges them and they appear online the next day.
Belangrijk
Some steps of this guide require to be comfortable with Git. Here are some tutorials and an interactive training if you are stuck at some point.
Now that your environment is set up, you can start contributing to the documentation. In a terminal, navigate to the directory where you cloned the sources and follow the guide below.
Choose the version of the documentation to which you want to make changes. Keep in mind that contributions targeting an unsupported version of Odoo are not accepted. This guide assumes that the changes target the documentation of Odoo 18, which corresponds to branch
18.0
.Create a new branch starting from branch 18.0. Prefix the branch name with the base branch:
18.0-...
. If you work at Odoo, suffix the branch name with your Odoo handle:18.0-...-xyz
.Example
$ git switch -c 18.0-explain-pricelists
$ git switch -c 18.0-explain-pricelists-xyz
Make the desired changes while taking care of following the content and RST guidelines.
Compress all PNG images that were added or modified.
$ pngquant path/to/image.png $ mv path/to/image-fs8.png path/to/image.png
Write a redirect rule for every RST file that were renamed.
Build the documentation with make. Then, open
_build/index.html
in a web browser to browse the documentation with your changes.Tip
Use make help to learn about other useful commands.
Commit your changes. Write a clear commit message as instructed in the Git guidelines.
$ git add . $ git commit
Push your changes to your fork, for which we added the remote alias
dev
.Example
$ git push -u dev 18.0-explain-pricelists
If you work at Odoo, push your changes directly to the main codebase whose remote alias is
origin
.Example
$ git push -u origin 18.0-explain-pricelists-xyz
Open a PR on GitHub to submit your changes for review.
Select 18.0 for the base.
Click on compare across forks.
Select <your_github_account>/odoo for the head repository. Replace
<your_github_account>
with the name of the GitHub account on which you created the fork. Skip this step if you work at Odoo.Review your changes and click on the Create pull request button.
Tick the Allow edits from maintainer checkbox. Skip this step if you work at Odoo.
Complete the description and click on the Create pull request button again.
At the bottom of the page, check the mergeability status and address any issues.
As soon as your PR is ready for merging, a member of the Odoo team is automatically assigned for review. If the reviewer has questions or remarks, they will post them as comments and you will be notified by email. Those comments must be resolved for the contribution to go forward.
Once your changes are approved, the reviewer merges them and they appear online the next day.