Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

OpenDataServices/reuse.id

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Open Data Services Sphinx Base

The base Sphinx setup (recommonmark + internationalisation) for Open Data Services docs projects.

Features

  • Markdown support (thanks to recommonmark)
  • Internationalisation
  • Wrapping text in tables, to avoid having horizontal scrollbars

Building the documentation

Build the docs locally

Assuming a unix based system:

# Make sure you have python3 venv, e.g. for Ubuntu
# If you're not sure, try creating a venv, and see if it errors
sudo apt-get install python3-venv

# Create a venv
python3 -m venv .ve    
# Enter the venv, needs to be run for every new shell
source .ve/bin/activate
# Install requirements
pip install --upgrade pip setuptools
pip install -r requirements.txt
# Build the docs
cd docs
make dirhtml

Built docs are in docs/_build/dirhtml.

Viewing the docs:

cd _build/dirhtml
python -m http.server

Then go to http://localhost:8000/ in a browser.

Building on readthedocs

Initial setup:

  • Select your repo at: https://readthedocs.org/dashboard/import/
  • Tick: "Edit advanced project options:"
  • Click "Next" button
  • Documentation type: "Sphinx HtmlDir"
  • Click "Finish" button
  • Click "Admin" button, then "Advanced Settings" in the left hand nav
  • Requirements file: requirements.txt
  • Python interpreter: "CPython 3.x"
  • Click "Submit" button

Translations

Translations are generally done using this transifex project. Create one at https://www.transifex.com/OpenDataServices/add/ :

How to push new text up to Transifex:

First, do a local build, then:

cd docs
make gettext
sphinx-intl update-txconfig-resources --transifex-project-name <project-name>
tx push -s

When the translations are filled in transifex you need to run:

tx pull -a -f

These should then be commited and then pushed to GitHub (so that actual deployed translations are always version controlled).

Running the build in another language:

make -e SPHINXOPTS="-D language='<language code>'" html

If translations are added locally, these can also be pushed up to Transifex:

tx push -t --skip

About

An open data schema for the reuse of product packaging

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published