diff options
author | Georg Brandl <georg@python.org> | 2010-03-13 13:39:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-13 13:39:46 (GMT) |
commit | e82110f3a53b34bcaca10b115b037c1cf1b5bd78 (patch) | |
tree | 37406d97c769298faa54bbc1c429f21873cecbd8 /Doc/tools | |
parent | 1b51c3d4deb4e99fe8440ce9e6f82769e2a1b9be (diff) | |
download | cpython-e82110f3a53b34bcaca10b115b037c1cf1b5bd78.zip cpython-e82110f3a53b34bcaca10b115b037c1cf1b5bd78.tar.gz cpython-e82110f3a53b34bcaca10b115b037c1cf1b5bd78.tar.bz2 |
Change/fix handling of docs download location: for daily builds, put them right next to the HTML.
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/sphinxext/download.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Doc/tools/sphinxext/download.html b/Doc/tools/sphinxext/download.html index 22a03a0..4fca138 100644 --- a/Doc/tools/sphinxext/download.html +++ b/Doc/tools/sphinxext/download.html @@ -1,15 +1,14 @@ {% extends "layout.html" %} {% set title = 'Download' %} -{% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %} -{% block body %} +{% if daily is defined %} + {% set dlbase = pathto('archives', 1) %} +{% else %} + {% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %} +{% endif %} +{% block body %} <h1>Download Python {{ release }} Documentation</h1> -{% if 'a' in release or 'b' in release or 'c' in release %} -<p>We don't package the documentation for development releases for download. - Downloads will be available for the final release.</p> - -{% else %} {% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %} <p>To download an archive containing all the documents for this version of @@ -55,6 +54,4 @@ platform. These are created on Unix using the InfoZIP zip program.</p> <p>If you have comments or suggestions for the Python documentation, please send email to <a href="mailto:docs@python.org">docs@python.org</a>.</p> -{% endif %} - {% endblock %} |