From bfc94cde382f756aab339e902bc9eec60ad5042c Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Sun, 20 Oct 2024 03:07:08 -0400 Subject: [PATCH] [FIX] fix some typos --- docsource/040_run_migration.rst | 4 ++-- docsource/070_migration_files.rst | 4 ++-- docsource/080_migration_script_development.rst | 2 +- docsource/090_contribute.rst | 2 +- docsource/100_maintain_repository.rst | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docsource/040_run_migration.rst b/docsource/040_run_migration.rst index c8e39b6b2262..a47efc764c00 100644 --- a/docsource/040_run_migration.rst +++ b/docsource/040_run_migration.rst @@ -14,7 +14,7 @@ OpenUpgrade Make the `openupgrade_framework` and the `openupgrade_scripts` modules available in the addons path in the Odoo instance of the new version. -Or, for older versions: check out the OpenUpgrade source code from Github +Or, for older versions: check out the OpenUpgrade source code from GitHub for the branches you need. Each branch migrates to its version from the previous version, so branch 13.0 migrates from 12.0 to 13.0. If you are migrating across multiple versions, you need to run each version of @@ -87,7 +87,7 @@ Run the upgrade and check for errors. You will probably learn a lot about your data and have to do some manual clean up before and after the upgrade. Expect to repeat the process several times as you encounter errors, clean up your data, and try again. If necessary, ask for help or report bugs on -Github. +GitHub. Write the missing migration scripts ................................... diff --git a/docsource/070_migration_files.rst b/docsource/070_migration_files.rst index cac5d1f75f7f..5c033f58c3ab 100644 --- a/docsource/070_migration_files.rst +++ b/docsource/070_migration_files.rst @@ -117,7 +117,7 @@ The change description flags the following types of change: stopped doing so. You need to audit the function for any change in possible values and may need to map any differences you encounter. - (Of course, a selection function could change the set of posible values + (Of course, a selection function could change the set of possible values in between functions.) * The field changes type. This always calls for action in your upgrade @@ -130,7 +130,7 @@ The change description flags the following types of change: res.partner.title. * A relation field's relation changes. You need to migrate the one target - model to the other, and update the references to them + model to the other, and update the references to them. * A field is deleted from the model (marked by 'DEL'). Also fields from deleted models are marked in this way. TODO: mark fields from deleted diff --git a/docsource/080_migration_script_development.rst b/docsource/080_migration_script_development.rst index f6a142eb16ad..0e435f39dc99 100644 --- a/docsource/080_migration_script_development.rst +++ b/docsource/080_migration_script_development.rst @@ -32,7 +32,7 @@ See `OpenUpgrade API `_ For many modules, a developer will not even need to write any function, but will "simply" need to call pre-existing functions from `openupgradelib` with the appropriate arguments. The main complexities becomes to learn what are the functions available in -`openupgradelib` and then to select appropriatly the arguments (usually according to +`openupgradelib` and then to select appropriately the arguments (usually according to the `openupgrade_analysis.txt`, see below). For instance, the migration to version 13 of mass_mailing did not require any custom diff --git a/docsource/090_contribute.rst b/docsource/090_contribute.rst index 477f971c2670..70c65b93ea97 100644 --- a/docsource/090_contribute.rst +++ b/docsource/090_contribute.rst @@ -96,7 +96,7 @@ Writing migration scripts for Odoo is a lot of work, that can not be accomplished by a single party. We need your help. If you are at all interested in discussing strategic, functional or -technical issues, please post an issue on the Github project: +technical issues, please post an issue on the GitHub project: ``_. If you are a developer, give the OpenUpgrade software a go and give us diff --git a/docsource/100_maintain_repository.rst b/docsource/100_maintain_repository.rst index 6f86b2b9e7f4..9fb637fc01a8 100644 --- a/docsource/100_maintain_repository.rst +++ b/docsource/100_maintain_repository.rst @@ -24,7 +24,7 @@ Manual changes * In the ``OpenUpgrade``/``documentation`` branch, add a new line in ``build_openupgrade_docs``. -* Push a test database for the old release to Github (see https://github.com/OCA/OpenUpgrade/wiki/How-to-create-a-reference-database) +* Push a test database for the old release to GitHub (see https://github.com/OCA/OpenUpgrade/wiki/How-to-create-a-reference-database) * Execute the technical migration of ``openupgrade_framework``.