Skip to content

Latest commit

 

History

History
83 lines (55 loc) · 5.94 KB

CONTRIBUTING.md

File metadata and controls

83 lines (55 loc) · 5.94 KB

Testing file only - not the live system

This is just a cloned copy so we can try different things out. If we do something good to this file we can always copy it across to the live system later.

Contributing to LearnOSM

Thank you for your interest in contributing to learnosm.org. This file explains how to make contributions. We can also coordinate work with 'issues' here on github, and discussion on the learnosm-coord Mailing list. Be sure to follow these channels if you are interested in ongoing contribution.

Text modifications and translations

For minor edits (typos, spelling, etc), you can use the online github editing tools to propose changes.

Translation workflow - new from November 2014

This workflow does not require the translator to install or run any software programmes on their computer & should be easy to administer. It has only become possible due to recent improvements to the editing process, explained here online github editing tools.

Workflow

  1. A volunteer translator makes contact and agrees with a github helper on a section/chapter for translation. An issue is opened on LearnOSM 'issues' here on github listing the translator, github helper and exactly which section of LearnOSM is being translated.
  2. Ensure the chapter of LearnOSM is up to date (probably from English).
  3. Create a copy of the original document in the new language folder, ensure it has the header explaining that it is in the process of being translated.
  4. The translator gets a github account & is directed to the file for translation.
  5. The translator replaces the original text in the document with new language, issuing pull requests as they go - as per online github editing tools. The translated text will only appear on LearnOSM when the 'pull request' has been authorised by a site administrator.
  6. The translator can view the document by clicking on it in the repository - ensure the link is included in the issue, so that it is easy for all parties to find.
  7. While the translator is carrying out steps 4, 5 & 6, the github helper obtains screenshots in correct language & puts them in appropriate folder, updating the links in the translated document.

In translation header

This section of LearnOSM is in the process of being translated. If you would like to assist with translating this site, please see CONTRIBUTING.md.

Also consider addind the header in the translation language.

Previous translation system - may still be used if the translator prefers this workflow.

Daniel Joseph has written a detailed explanation of the translation workflow assuming no technical/github know-how.

The outline procedure for contributing is: fork the LearnOSM repository, improve content or site, then issue a pull request.

Other guides than the beginner guide are managed in Google documents. Refer to a listing of these documents in the wiki.

LearnOSM is built with Jekyll. All content can be found under _posts/. The site is multilingual and posts are organized by language code (_posts/bi, _posts/en, etc).

It's handy to run the site locally when editing content or code - Jekyll documentation contains a good section on installation.

For fresh translations always start with a copy of the English guide.

Quick install guide for Windows

  • Download and install Ruby 1.9, enable the PATH setting during installation

  • Open a command prompt (cmd.exe) and install jekyll by typing gem install jekyll

  • Install rdiscount by typing gem install rdiscount --platform=ruby -v 1.6.8

  • Navigate to your local learnosm repository cd C:\learnosm

  • Start the local webserver by executing the following 2 commands, or save them to a .bat file and start:

     chcp 65001
     jekyll --rdiscount > jekyll_log.txt 2> jekyll_errorlog.txt
    
  • Open a browser and go to localhost:4000

Front matter for guide documents

Each chapter in a guide constitutes a markdown document. In order to handle languages and translations and to relate the document with a specific guide and a couple of YAML Frontmatter rules need to be in place.

Example front matter for a guide chapter:

layout: doc
title: Moving Forward
permalink: /en/beginner/moving-forward/
lang: en
category: beginner

Explanation:

  • layout must be doc
  • title is the plain title of the document, must not be repeated in the document's body
  • permalink is the path to the document, must contain the language prefix (en in this case)
  • lang is the language prefix of the document and must be the same as in permalink. This is redundant with permalink for Jekyll specific reasons.
  • category contains the guide's shortname (currently there is only one guide in the Jekyll site: beginner).

Contributing to site

Same as with content, to contribute, fork this repository, modify, then issue a pull request.

The site is hosted using GitHub Pages, any changes to the gh-pages branch automatically update the site within minutes.