Actions

Difference between revisions of "Developer Area/Mahara manual setup"

From Mahara Wiki

< Developer Area
m
(Update instructions to remove old info that has been superceded by our automatic process)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Introduction=
+
===Introduction===
  
 
The [https://manual.mahara.org Mahara manual] uses [https://www.sphinx-doc.org/ Sphinx] and a custom theme. It is hosted by Catalyst. It is an open source project though and can be contributed to. The [https://git.mahara.org/user-manual/manual code] is accessible. At the moment, you can't register on that Git repository. If you'd like to contribute, you can:
 
The [https://manual.mahara.org Mahara manual] uses [https://www.sphinx-doc.org/ Sphinx] and a custom theme. It is hosted by Catalyst. It is an open source project though and can be contributed to. The [https://git.mahara.org/user-manual/manual code] is accessible. At the moment, you can't register on that Git repository. If you'd like to contribute, you can:
  
* [https://bugs.launchpad.net/mahara-manual/+filebug Send a change request via our tracker]
+
*[https://bugs.launchpad.net/mahara-manual/+filebug Send a change request via our tracker]
* Send [mailto:[email protected] a mail] with your change or ask to have access to the repository
+
*Send [mailto:[email protected] a mail] with your change or ask to have access to the repository
  
The Mahara manual can be cloned, and you can make changes yourself. If you host it on your own, you can change the URL in your Mahara instance in 'Administration menu -> Configure site -> Menus'. Keep the overall structure of the manual pages though so that links within Mahara can refer to the correct section in the manual.
+
The Mahara manual can be cloned, and you can make changes yourself. If you host it on your own, you can change the URL in your Mahara instance in 'Administration menu Configure site Menus'. Keep the overall structure of the manual pages though so that links within Mahara can refer to the correct section in the manual.
  
 
The steps outlined below are typically done by Catalyst to set up a new version of the overall manual and set up the translation branches.
 
The steps outlined below are typically done by Catalyst to set up a new version of the overall manual and set up the translation branches.
The example below uses Mahara version 21.10 as an example. Any reference to it would need to be replaced with the version that you are creating the manual branch for.
 
  
==Setup==
+
The example below uses Mahara version 21.10 as reference. Any reference to it would need to be replaced with the version that you are creating the manual branch for.
 +
 
 +
=== Translating the Mahara manual ===
 +
If you want to translate the Mahara manual, you can do so directly via [https://translations.launchpad.net/mahara-manual Launchpad] and do not need to install anything on your computer.
 +
 
 +
You would only need to set up the manual on your computer if you wanted to make changes to it or create your own version of it.
 +
 
 +
===Setup===
  
 
1. Clone the repository to your computer
 
1. Clone the repository to your computer
Line 24: Line 30:
 
That Readme file outlines how to preview the manual locally, pull in the translations, and get the output, which you could then push to a server and publish your own manual.
 
That Readme file outlines how to preview the manual locally, pull in the translations, and get the output, which you could then push to a server and publish your own manual.
  
==Create a new branch (Catalyst) ==
+
===Create a new branch (Catalyst)===
  
 
1. Create a new local branch for the new version of the manual
 
1. Create a new local branch for the new version of the manual
Line 46: Line 52:
  
  
3. Publish the new branch on git.mahara.org
+
3. Publish the new branch to git.mahara.org
  
 
   git push origin 21.10_STABLE:refs/heads/21.10_STABLE  
 
   git push origin 21.10_STABLE:refs/heads/21.10_STABLE  
Line 52: Line 58:
 
4. Make initial changes to index.php, manual-build/conf-common.py.
 
4. Make initial changes to index.php, manual-build/conf-common.py.
  
==Include in build process==
+
===Include in build process and set up translation branches in Launchpad===
 
+
The manual is built automatically for the versions defined and translations are updated automatically as well when new text has appeared.
'''Catalyst only'''
 
 
 
# Build the new version and publish it to GitLab.
 
## Follow the instructions under 'Updating the manual-build submodule'.
 
## Create a new schedule in the CI/CD process.
 
## Description: Version (Daily)
 
## Variables: “MAHARA_VERSION” and enter the version number in the field to the right. Just the version number, e.g. '21.10' and '''not''' '21.10_STABLE'.
 
## Interval patterns: Select 'Every day' first and then switch to 'Custom' and change the cron time. Note: Do not schedule all builds at the same time but spread things out a bit.
 
# Run the build manually. Note: To see which version of the manual was run, go to Pipelines -> Click the Status icon and then on the next screen click the 'Passed' icon and see the console output.
 
# Once ready to have the manual publicly linked: Add the new release to conf-common.py for 'mahara_releases' and 'all_mahara_releases'. Remove the version that is fallen / has fallen out of support from 'mahara_releases'.
 
# Re-assess the auto build frequency of older releases and change them as necessary.
 
# When the new version of Mahara has been released, go to manual-build/source/index.html and change the version number on line 22, i.e. window.location = "https://manual.mahara.org/" + lang + "/21.10/";
 
 
 
=Setting up the translation export branch for Launchpad=
 
 
 
'''This is done by Catalyst'''
 
 
 
This part is the tricky bit as Launchpad uses bzr for version control. There is a [http://doc.bazaar.canonical.com/latest/en/mini-tutorial/ good tutorial on how to work with bzr] that can help anyone get started.
 
 
 
The following steps are a bit incomplete, but will hopefully fleshed out in the future.
 
 
 
1. Assumption: Folder code/manual-export/manual-export exists.
 
 
 
2. Create the new folder "21.10_STABLE-export".
 
 
 
3. Generate the potfiles in your manual folder.
 
 
 
  cd code/manual
 
  manual-build/build-manual.sh generatepot
 
 
 
4. Go back to the export folder. If the potfiles generation doesn't produce folders in which the potfiles are listed (sometimes it does, sometimes it doesn't), create a folder for each potfile. The folder name needs to match the potfile name (minus the extension). The folders will be empty and don't have the actual potfiles in them. Your folder 21.10_STABLE-export should contain the sub folder "potfiles" and in there a folder for each potfile that has the name of the potfile, but the potfile is not in it.
 
 
 
5. Create the bzr files
 
 
 
  cd manual-export
 
  bzr init manual-export/21.10_STABLE-export/
 
 
 
6. Enter your potfiles export folder and commit the folders.
 
 
 
  cd manual-export/21.10_STABLE-export/
 
  bzr add potfiles/
 
  bzr commit
 
  write commit message
 
 
 
7. Push your newly created branch to Launchpad
 
 
 
  bzr push lp:~mahara-lang/mahara-manual/21.10_STABLE-export
 
 
 
8. Go to Launchpad and set up the export branch for your translation: https://translations.launchpad.net/mahara-manual/21.10/+translations-settings
 
  
  Under "Exporting translations to branch" click the "Edit" button. Then type into the field / search for the branch:
+
Typically, the most recent version is updated weekly and older versions may be updated monthly if there are changes. If a translator did a big push to update the translation, the versions in question can be updated manually via the pipelines rather than running a scheduled task.
  ~mahara-lang/mahara-manual/21.10_STABLE-export
 
  confirm the branch
 
  
9. Upload the potfiles into the import branch. Make sure that you set the path to "potfiles/[name of the potfile folder]/[potfile]
+
'''Catalyst only:''' Follow the Readme file on the Catalyst internal GitLab instance for the 'manual-builder' project.

Latest revision as of 21:29, 12 April 2023

Introduction

The Mahara manual uses Sphinx and a custom theme. It is hosted by Catalyst. It is an open source project though and can be contributed to. The code is accessible. At the moment, you can't register on that Git repository. If you'd like to contribute, you can:

The Mahara manual can be cloned, and you can make changes yourself. If you host it on your own, you can change the URL in your Mahara instance in 'Administration menu → Configure site → Menus'. Keep the overall structure of the manual pages though so that links within Mahara can refer to the correct section in the manual.

The steps outlined below are typically done by Catalyst to set up a new version of the overall manual and set up the translation branches.

The example below uses Mahara version 21.10 as reference. Any reference to it would need to be replaced with the version that you are creating the manual branch for.

Translating the Mahara manual

If you want to translate the Mahara manual, you can do so directly via Launchpad and do not need to install anything on your computer.

You would only need to set up the manual on your computer if you wanted to make changes to it or create your own version of it.

Setup

1. Clone the repository to your computer

 cd ~
 mkdir code
 cd code
 git clone https://git.mahara.org/user-manual/manual.git

2. Follow the instructions to get the install running. Docker is required.

That Readme file outlines how to preview the manual locally, pull in the translations, and get the output, which you could then push to a server and publish your own manual.

Create a new branch (Catalyst)

1. Create a new local branch for the new version of the manual

 git branch
 git checkout -b 21.10_STABLE

2. Replace the information in .git/config with the following.

 [core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
  [remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = [email protected]:user-manual/manual.git
  [branch "21.10_STABLE"]
    remote = origin
    merge = refs/heads/21.10_STABLE


3. Publish the new branch to git.mahara.org

 git push origin 21.10_STABLE:refs/heads/21.10_STABLE 

4. Make initial changes to index.php, manual-build/conf-common.py.

Include in build process and set up translation branches in Launchpad

The manual is built automatically for the versions defined and translations are updated automatically as well when new text has appeared.

Typically, the most recent version is updated weekly and older versions may be updated monthly if there are changes. If a translator did a big push to update the translation, the versions in question can be updated manually via the pipelines rather than running a scheduled task.

Catalyst only: Follow the Readme file on the Catalyst internal GitLab instance for the 'manual-builder' project.