~ubuntu-branches/ubuntu/natty/python2.6/natty-security

« back to all changes in this revision

Viewing changes to Doc/tools/sphinxext/download.html

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-20 03:57:17 UTC
  • mfrom: (1.1.8 upstream) (10.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20100320035717-xg6wzg0snk0o3jf2
Tags: 2.6.5-1ubuntu1
Merge with Debian (2.6.5-1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "layout.html" %}
2
2
{% set title = 'Download' %}
3
 
{% set dlbase = 'http://docs.python.org/ftp/python/doc/current' %}
 
3
{% if daily is defined %}
 
4
  {% set dlbase = pathto('archives', 1) %}
 
5
{% else %}
 
6
  {% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %}
 
7
{% endif %}
 
8
 
4
9
{% block body %}
5
 
 
6
10
<h1>Download Python {{ release }} Documentation</h1>
7
11
 
8
 
{% if 'a' in release or 'b' in release or 'c' in release %}
9
 
<p>We don't package the documentation for development releases for download.
10
 
  Downloads will be available for the final release.</p>
11
 
 
12
 
{% else %}
13
12
{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %}
14
13
 
15
14
<p>To download an archive containing all the documents for this version of
55
54
 
56
55
<p>If you have comments or suggestions for the Python documentation, please send
57
56
email to <a href="mailto:docs@python.org">docs@python.org</a>.</p>
58
 
{% endif %}
59
 
 
60
57
{% endblock %}