Skip to main content

Django app for linking to help pages with short tokens

Project description

Django app for linking to help pages with short tokens.

PyPI CI Codecov Supported Python versions License

Overview

There are various factors that affect what help page an application should link to:

  • There may be a number of relevant books

  • The version of the application might affect which book to display

  • The application’s language might affect which book to display

This small Django app provides a means to use “help tokens” on the application pages, and then use those tokens, and various other settings, to determine the actual URL to use.

Documentation

Help-tokens provides a context processor, and a redirection URL. Configuration is in a number of settings.

Settings

Help-tokens reads these Django settings to create URLs:

  • HELP_TOKENS_INI_FILE: Path to a .ini file containing help token definitions. The format of the ini file is described below.

  • HELP_TOKENS_BOOKS: a dictionary mapping book slugs to URLs. For example:

    HELP_TOKENS_BOOKS = {
        'learner': 'https://docs.openedx.org/en/latest/learners',
        'course_author': 'https://docs.openedx.org/en/latest/educators',
    }
  • HELP_TOKENS_VERSION: a string used as part of the final URL, to choose the correct version of the book. For example, “latest”.

  • HELP_TOKENS_LANGUAGE_CODE: the language code to use as part of the book URL, mapped through the [locales] section of the ini file.

INI file format

The .ini file pointed to by HELP_TOKENS_INI_FILE contains the definitions of the help tokens themselves.

The [pages] section defines the help tokens. Each help token definition consists of a book slug (defined in HELP_TOKENS_BOOKS), a colon, and a URL path. The default token is used for missing tokens. For example:

[pages]
default = learner:index.html
instructor = learner:SFD_instructor_dash_help.html
course = learner:index.html

cohortmanual = course_author:course_features/cohorts/cohort_config.html#assign-learners-to-cohorts-manually
cohortautomatic = course_author:course_features/cohorts/cohorts_overview.html#all-automated-assignment

The [locales] section defines language codes, used with HELP_TOKENS_LANGUAGE_CODE to determine the language portion of the URL:

[locales]
default = en
en = en
en_us = en

Context processor

The context processor is “help_tokens.context_processor”. It adds a function get_online_help_info. Call it with a help token, and it will return a dict with a doc_url entry, the help URL. You can use it like this in a template:

<a href="${get_online_help_info('visibility')['doc_url']}">...</a>

This interface is a bit verbose, but is to maintain backward compatibility with a previous implementation of this context processor.

Redirection view

The help_tokens.urls URLs define a view that redirects to a help URL. You can include it in your app:

# For redirecting to help pages.
url(r'^help_token/', include('help_tokens.urls')),

Then visiting help_token/foobar will redirect to the URL defined by the “foobar” help token.

License

The code in this repository is licensed under the AGPL 3.0 unless otherwise noted. Please see LICENSE.txt for details.

How To Contribute

Contributions are very welcome.

Please read How To Contribute for details.

PR description template should be automatically applied if you are sending PR from GitHub interface; otherwise you can find it it at PULL_REQUEST_TEMPLATE.md

Issue report template should be automatically applied if you are sending it from GitHub UI as well; otherwise you can find it at ISSUE_TEMPLATE.md

Reporting Security Issues

Please do not report security issues in public. Please email security@openedx.org.

Getting Help

Have a question about this repository, or about Open edX in general? Please refer to this list of resources if you need any assistance.

Change Log

[3.2.0] - 2025-04-21

  • Added support for Python 3.12

[3.1.0] - 2025-04-09

  • Dropped support for Python 3.8 and 3.9

  • Added support fort Django 5.2

[3.0.0] - 2025-03-14

[2.4.0] - 2024-03-29

  • Added support for Python 3.11

  • Dropped support for Django 3.2, Django 4.0 and Django 4.1

[2.3.0] - 2023-08-02

  • Added support for Django 4.2

[2.2.0] - 2022-01-20

  • Dropped support for django2.2, 3.0, 3.1 and 3.2

  • Added Django40 support in CI

[2.1.0] - 2020-07-07

  • Added support for django3.0, 3.1 and 3.2

[2.0.0] - 2020-01-19

  • Removed support of python3.5

[1.1.0] - 2020-05-05

  • Removed support of Django < 2.2 version

  • Added support for python 3.8

[1.0.3] - 2017-07-17

  • Updated tests to support Django 1.11

  • Updated dependency versions

[1.0.2] - 2017-05-16

  • Fixed the README.

[1.0.1] - 2017-05-15

  • First version on PyPI.

[1.0.0] - 2017-05-03

  • First release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

help_tokens-3.2.0.tar.gz (22.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

help_tokens-3.2.0-py2.py3-none-any.whl (19.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file help_tokens-3.2.0.tar.gz.

File metadata

  • Download URL: help_tokens-3.2.0.tar.gz
  • Upload date:
  • Size: 22.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for help_tokens-3.2.0.tar.gz
Algorithm Hash digest
SHA256 890e2ca79447ec0cf7635fc21ee6dc58ee5fb5b8d49643c7441c6271a642c0f1
MD5 a1abb661f9a9e4bf1c457fd8085d50f0
BLAKE2b-256 c45673aa811599ffcefee47a45f81189a215a8cdd2817305c5efb2d9d1c4bb8d

See more details on using hashes here.

File details

Details for the file help_tokens-3.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: help_tokens-3.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 19.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for help_tokens-3.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1e9f671cf0ea34de87a87767bc34f04980d00bafa75f333cd1f1649dfcd7a99a
MD5 3d83c7a72380a81735f08c204c17d17f
BLAKE2b-256 37251676ddc5283c29f85678ff3c0c53953664b8010f0a06d3c0ec8812938b14

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page