docs: Allow list of versions to be specified by environment variable.

pull/1889/merge
Damien George 2016-03-09 12:43:22 +00:00
rodzic 5b74bba3a3
commit 42ef5a1567
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -34,6 +34,7 @@ ports = OrderedDict((
# The members of the html_context dict are available inside topindex.html
micropy_version = os.getenv('MICROPY_VERSION') or 'latest'
micropy_all_versions = (os.getenv('MICROPY_ALL_VERSIONS') or 'latest').split(',')
url_pattern = '%s/en/%%s/%%s' % (os.getenv('MICROPY_URL_PREFIX') or '/',)
html_context = {
'port':micropy_port,
@ -46,7 +47,7 @@ html_context = {
],
'all_versions':[
(ver, url_pattern % (ver, micropy_port))
for ver in ('v1.4', 'v1.4.1', 'v1.5', 'v1.6', 'latest')
for ver in micropy_all_versions
],
}