Commit Graph

146 Commits

Author SHA1 Message Date
Adrien Widart (awt)
37ca3f1917 [IMP] supported_versions: end of saas-16.4
closes odoo/documentation#9884

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2024-06-21 15:36:42 +00:00
XPL
51323fba44 [IMP] upgrade: remove ticket go-live mention
The phrase is confusing and leads customers to contact support to carry out
the upgrade for them.

closes odoo/documentation#9880

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2024-06-21 09:57:56 +00:00
Xavier-Do
e2241f76fc [FIX] fix typo in warning message 2024-05-30 12:50:51 +02:00
Xavier-Do
af73b44168 [IMP] adapt documentation for new install script
closes odoo/documentation#9116

Related: odoo/odoo#163788
Signed-off-by: Xavier Dollé (xdo) <xdo@odoo.com>
2024-05-28 14:36:49 +00:00
tiku-odoo
ad3343d158 [IMP] admin: onprem password reset
closes odoo/documentation#8990

Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2024-05-01 14:27:38 +00:00
tiku-odoo
ecd7d62a01 [IMP] database mgt: odoocom account add dup limit
closes odoo/documentation#8989

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2024-04-25 18:50:51 +00:00
XPL
d1e65a3224 [IMP] hosting: add Odoo.sh as not supporting intermediary versions
task-3874935

closes odoo/documentation#8792

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2024-04-17 16:24:53 +00:00
Antoine Vandevenne (anv)
a906478bc7 [IMP] supported_versions: release saas-17.2
closes odoo/documentation#8486

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2024-04-02 15:14:48 +00:00
XPL
9fd199ff27 [ADD] database management: odoo mobile apps
task-3821019

closes odoo/documentation#8445

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2024-04-02 12:32:44 +00:00
tiku-odoo
9df807a532 [IMP] hosting: add admonition block on subscription
closes odoo/documentation#8164

Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2024-03-20 10:49:48 +00:00
Colu
739309b258 [IMP] database management: update on-premise page
task-3627193

closes odoo/documentation#7820

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2024-03-15 15:47:06 +00:00
Jonathan Castillo (jcs)
a6bf19ea35 [MOV] documentation structure reorganization
This commit aims to improve the documentation's navigability by
redefining some categories' purposes and titles.

There is a redirection rule for each documentation page moved.
This ensures that users won't have a 404 error message.

task-3217827

closes odoo/documentation#7981

Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2024-03-11 14:57:04 +00:00
Donatienne (dopi)
89a6adc160 [IMP] maintain: domain names
task-3595179

closes odoo/documentation#7073

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2024-02-26 14:37:10 +00:00
Xavier (XPL)
62e08e0c1f [IMP] install: enterprise packaged installers note
task-3536177

closes odoo/documentation#7804

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2024-02-22 18:43:01 +00:00
Antoine Vandevenne (anv)
e116579c99 [IMP] supported_versions: release saas-17.1
closes odoo/documentation#7699

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2024-02-12 11:26:25 +00:00
tiku-odoo
d902bbbc19 [IMP] Microsoft Azure Email Phrasing update
closes odoo/documentation#7430

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2024-01-19 18:59:55 +00:00
Donatienne (dopi)
99dbd6d61b [MOV] geo ip installation: move page to install
Page moved from Websites to Install section

taskid-3512515

Part-of: odoo/documentation#7201
2024-01-12 11:38:43 +00:00
tiku-odoo
3088c83b29 [IMP] Misc: Portal User Change Login Initial Commit
closes odoo/documentation#7050

X-original-commit: d423038270
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 06:51:15 +00:00
Julien Castiaux
8d1642984f [FIX] deploy: nginx forwarded-host with tcp port
Install nginx using the nginx configuration found in the documentation
and changes the `listen` port to 8080. Start Odoo in `--proxy-mode`.

    listen 8080;
    server_name mycompany.odoo.com;
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Real-IP $remote_addr;
    location / {
            proxy_pass http://127.0.0.1:8069;
    }

Inside your browser, access "http://mycompany.odoo.com:8080" you are
wrongly redirected to "http://mycompany.odoo.com:80".

Odoo uses the `X-Forwarded-Host` http header value to generate new URls,
in this configuration `$host` only contains the domain (=hostname using
the urllib terminology) instead of the domain+port (=netloc). The
variable that contains both the domain and the port is actually
`$http_host`.

closes odoo/documentation#6885

Closes: odoo/odoo#64643
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-12-14 13:45:06 +00:00
Xavier (XPL)
dc48273e7e [IMP] upgrade: add note on bank synch neutralization
task-3605690

closes odoo/documentation#6555

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-22 11:19:47 +00:00
Nathan Marotte (nama)
35a3bcd421 [IMP] upgrade: overhaul upgrade doc
closes odoo/documentation#6392

X-original-commit: c6c4598928
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-10 12:30:03 +00:00
Antoine Vandevenne (anv)
d67143410a [IMP] supported_versions: release 17.0
closes odoo/documentation#6306

X-original-commit: 2c805d9813
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-07 17:26:52 +00:00
tiku-odoo
2437687710 [IMP] Maintain/Productivity: Azure Name Change
closes odoo/documentation#6168

X-original-commit: b65dd60b25
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-19 03:58:59 +00:00
bve-odoo
41b9ba6383 [FIX] azure_oauth: configuration mail server Outlook.
Results of seeing a lot of wrong and missing configuration
on consultancy project for Outlook accounts.

The Multi outgoing mail server is harder to maintain than having
a unique mail server with an Odoo db correctly configured.

Insisting on the mail.default.from (ICP) and the From Filtering
parameters that NEEDS TO BE set up.

task-3512379

[FIX] Maintain: Azure_oauth: configuration mail server Outlook

Co-author-by: tiku-odoo <tiku@odoo.com>
Co-author-by: jqu-odoo <jqu@odoo.com>

Results of seeing a lot of wrong and missing configuration
on consultancy project for Outlook accounts.

The Multi outgoing mail server is harder to maintain than having
a unique mail server with an Odoo db correctly configured.

Insisting on the mail.default.from (ICP) and the From Filtering
parameters that NEEDS TO BE set up.

task-3512379

closes odoo/documentation#5909

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-05 17:57:43 +00:00
Julien Castiaux
0b7c7e4c67 [IMP] deploy: reword multi-thread/process section
Many users don't start odoo-bin in --workers (multi-processing) mode but
instead leave the default configuration which use the development/demo
multi-threaded server, even in production.

This commit rewords the section about the difference between the
built-in servers and highlight the many advantages of the
multi-processing on. It repeats that information when it comes to
running a dedicated cron server, that it should use the multi-processing
server instead of the default multi-threading one.

closes odoo/documentation#5885

Fixes: odoo/odoo#88984
Closes: odoo/odoo#128571
X-original-commit: 9ee92c3a27
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-09-21 07:07:07 +00:00
Martin Trigaux
573dcf1ef4 [IMP] install: clarify Windows is not recommended for prod
It has always been the case informally but write it in the doc.

closes odoo/documentation#5828

X-original-commit: 80e1065dff
Signed-off-by: Olivier Dony (odo) <odo@odoo.com>
2023-09-13 00:33:25 +00:00
baro-odoo
6cde25ecca [FIX] odoo.sh: typo in branches.rst
closes odoo/documentation#5746

X-original-commit: cbbd5a5ee9
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-09-06 16:28:48 +00:00
Xavier (XPL)
2fb5610c05 [IMP] maintain: refresh the change hosting solution page
This PR updates the page's content as it is a bit dated in some places
(see task) and takes into consideration the latest rst guidelines.

task-3434787

closes odoo/documentation#5738

X-original-commit: 8e41b58834
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-09-06 14:11:25 +00:00
Augusto Perez
38336c324b [ADD] upgrade/on_premise: Add filestore explanation
Added a note explaining that the filestores from the upgraded database
and the production database have to be merged for on-premise upgrade,
on both the testing and the production phases

closes odoo/documentation#5722

X-original-commit: 28cacd3b98
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-09-05 14:34:50 +00:00
Xavier (XPL)
c4c945e41c [REF] install: move intro to main install page and split by install type
This PR moves the introduction about the different installation methods and editions found on the
install/install.rst page directly under the main install/ page. It creates three pages, one per
installation method documented on the install/install.rst page (Docker being documented on
docker.com and maintained by us), and moves the related content there. In addition, it fixes various
typos/grammar issues and improves the content according to the documentation guidelines. Various
references and links across the documentation had to be fixed accordingly.

task-3459070

closes odoo/documentation#5522

X-original-commit: b7d5d04229
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-17 20:39:02 +02:00
Xavier (XPL)
1d15429f4a [IMP] maintain: change info about domain names approval time
Original commit: 4fd1b73013
Original PR: https://github.com/odoo/documentation/pull/5272

closes odoo/documentation#5333

X-original-commit: 45a2d970b7
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-07 19:54:46 +02:00
Antoine Vandevenne (anv)
69ae824dff [IMP] supported_versions: release saas-16.4
This commit also moves all versions from 8.0 to 12.0 from the table to
the "older versions" section.

closes odoo/documentation#5320

X-original-commit: 6225ef9e32
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-08-07 16:39:54 +02:00
Xavier
6617d01d46 [IMP] maintain: odoo online database management
task-2995394

closes odoo/documentation#5000

X-original-commit: c6e6401e36
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-03 17:31:54 +02:00
John Holton (hojo)
15749fd715 [IMP] Administration: Rewrite Upgrade Odoo SaaS
closes odoo/documentation#4945

X-original-commit: 45b1a62782
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-30 10:13:17 +02:00
Christophe Monniez
476e019bff [FIX] deploy: reference the config parameter
The deploy documentation is assuming that `/etc/odoo.conf` is the
default config file, which is not the case.

With this commit, the configuration file references the cli
documentation.

closes odoo/documentation#4802

X-original-commit: 8aed7988ba
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Christophe Monniez (moc) <moc@odoo.com>
2023-06-20 14:17:21 +02:00
Christophe Monniez
dbf60af282 [IMP] maintain: switch to enterprise windows
* Update the title as `Upgrade Community to Enterprise` is confusing.
* Update 9.0 screenshots to more recent ones
* As the windows installer uses a real python interpreter, the install
  command is updated accordingly.

X-original-commit: f03b4ca649
Part-of: odoo/documentation#4802
2023-06-20 14:17:21 +02:00
Benjamin Hanquin
4218ba7964 [IMP] odoo.sh: settings collaborators access matrix
Add the Upgrade submenu, Fix the Settings submenu to User only in
staging branches and improve the style in order to be similar to
supported versions matrix
(https://www.odoo.com/documentation/16.0/administration/maintain/supported_versions.html)

closes odoo/documentation#4677

X-original-commit: 98207740d5
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-09 13:55:50 +02:00
Antoine Vandevenne (anv)
552ef54355 [IMP] supported_versions: release saas-16.3
"September" didn't fit in the current table, so this commit also
replaces the previous implementation of the table by a `list-table`
directive... The real reason is that it was long due to ease future
updates of the table.

closes odoo/documentation#4623

X-original-commit: 3d1293757a
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-06 10:50:53 +02:00
CVDE-odoo
29203e94bd [ADD] developer/howto: guide for theming
A complete guide on how to create a custom website theme for Odoo

closes odoo/documentation#3047

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-05-10 15:37:15 +02:00
Xavier
8763fef3f7 [IMP] upgrade: clarify and update the SLA section
task-3300955

closes odoo/documentation#4353

X-original-commit: 1a657194ab
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-08 14:11:17 +02:00
Timothy Kukulka (tiku)
9fe358ac1c [IMP] Google Oauth Docs edits final review
closes odoo/documentation#4298

X-original-commit: 5b63bfcba9
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-30 19:45:38 +02:00
tiku-odoo
d2e6c1d647 [IMP]Maintain:Fix typo in Azure Mail
closes odoo/documentation#4279

X-original-commit: 330ce42cef
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-04-27 19:21:15 +02:00
Jonathan Castillo (jcs)
8740623ad5 [MOV] website: structure
As a first step to update the doc - at last! - we first need to update
its structure.

task-3269837

X-original-commit: ce4a0c3e35
Part-of: odoo/documentation#4105
2023-04-11 23:32:40 +02:00
Jonathan Castillo (jcs)
99bcb694dc [MOV] calendar: "Calendar" app from "Misc" to "Productivity"
To improve the structure of the documentation, the "Miscellaneous"
section should be limited as much as possible.

This commit:
- renames "Calendars" into "Calendar" (as the app name)
- moves the app from the "Miscellaneous" section to the "Productivity"
  section
- fixes the wrong file structure to follow the toc
  (e.g. general/calendars/outlook/outlook_calendar -> productivity/calendar/outlook)

task-3217827

closes odoo/documentation#4109

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-11 21:29:44 +02:00
Timothy Kukulka (tiku)
2167c18143 [IMP] General: Oauth seemore additions
closes odoo/documentation#3932

X-original-commit: aa4e5d7a01
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-03-29 03:41:27 +02:00
Antoine Vandevenne (anv)
7b266b99a6 [IMP] supported_version: release saas-16.2
closes odoo/documentation#3891

X-original-commit: 697cdad097
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-03-27 18:02:54 +02:00
Antoine Vandevenne (anv)
7eeb275f83 [IMP] supported_versions: flag saas-16.1 as supported
closes odoo/documentation#3836

X-original-commit: c466d6fd6e
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-03-17 12:05:07 +01:00
Timothy Kukulka (tiku)
dc50388b30 [IMP] Website: rewrite-keycdn-doc
closes odoo/documentation#3819

X-original-commit: 3eb3f74f70
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-03-13 21:44:52 +01:00
Timothy Kukulka (tiku)
1de373336b [IMP] Maintain: Add process to delete account and clean-up
closes odoo/documentation#3805

X-original-commit: 6b7c550724
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-03-13 21:44:47 +01:00
Timothy Kukulka (tiku)
9eb9fa7e19 [IMP] Misc: Remove section from from-address
closes odoo/documentation#3165

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-03-13 14:24:59 +01:00