| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 1 | {% extends "layout.html" %} | 
 | 2 | {% set title = 'Download' %} | 
| Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 3 | {% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %} | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 4 | {% block body %} | 
 | 5 |  | 
| Benjamin Peterson | e5384b0 | 2008-10-04 22:00:42 +0000 | [diff] [blame^] | 6 | <h1>Download Python {{ release }} Documentation</h1> | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 7 |  | 
| Georg Brandl | 850c5cd | 2008-09-28 08:38:49 +0000 | [diff] [blame] | 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 %} | 
| Benjamin Peterson | e5384b0 | 2008-10-04 22:00:42 +0000 | [diff] [blame^] | 13 | {% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %} | 
 | 14 |  | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 15 | <p>To download an archive containing all the documents for this version of | 
 | 16 | Python in one of various formats, follow one of links in this table. The numbers | 
 | 17 | in the table are the size of the download files in Kilobytes.</p> | 
 | 18 |  | 
| Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 19 | <table class="docutils"> | 
 | 20 |   <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr> | 
 | 21 |   <tr><td>PDF (US-Letter paper size)</td> | 
 | 22 |     <td><a href="{{ dlbase }}/python-docs-pdf-letter.zip">Download</a> (ca. 8 MB)</td> | 
 | 23 |     <td><a href="{{ dlbase }}/python-docs-pdf-letter.tar.bz2">Download</a> (ca. 8 MB)</td> | 
 | 24 |   </tr> | 
 | 25 |   <tr><td>PDF (A4 paper size)</td> | 
 | 26 |     <td><a href="{{ dlbase }}/python-docs-pdf-a4.zip">Download</a> (ca. 8 MB)</td> | 
 | 27 |     <td><a href="{{ dlbase }}/python-docs-pdf-a4.tar.bz2">Download</a> (ca. 8 MB)</td> | 
 | 28 |   </tr> | 
 | 29 |   <tr><td>HTML</td> | 
 | 30 |     <td><a href="{{ dlbase }}/python-docs-html.zip">Download</a> (ca. 6 MB)</td> | 
 | 31 |     <td><a href="{{ dlbase }}/python-docs-html.tar.bz2">Download</a> (ca. 4 MB)</td> | 
 | 32 |   </tr> | 
 | 33 |   <tr><td>Plain Text</td> | 
 | 34 |     <td><a href="{{ dlbase }}/python-docs-pdf-text.zip">Download</a> (ca. 2 MB)</td> | 
 | 35 |     <td><a href="{{ dlbase }}/python-docs-pdf-text.tar.bz2">Download</a> (ca. 1.5 MB)</td> | 
 | 36 |   </tr> | 
 | 37 | </table> | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 38 |  | 
 | 39 |  | 
| Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 40 | <p>These archives contain all the content in the documentation.</p> | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 41 |  | 
 | 42 | <h2>Unpacking</h2> | 
 | 43 |  | 
 | 44 | <p>Unix users should download the .tar.bz2 archives; these are bzipped tar | 
 | 45 | archives and can be handled in the usual way using tar and the bzip2 | 
 | 46 | program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be | 
 | 47 | used to handle the ZIP archives if desired. The .tar.bz2 archives provide the | 
 | 48 | best compression and fastest download times.</p> | 
 | 49 |  | 
 | 50 | <p>Windows users can use the ZIP archives since those are customary on that | 
| Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 51 | platform. These are created on Unix using the InfoZIP zip program.</p> | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 52 |  | 
 | 53 |  | 
 | 54 | <h2>Problems</h2> | 
 | 55 |  | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 56 | <p>If you have comments or suggestions for the Python documentation, please send | 
 | 57 | email to <a href="docs@python.org">docs@python.org</a>.</p> | 
| Georg Brandl | 850c5cd | 2008-09-28 08:38:49 +0000 | [diff] [blame] | 58 | {% endif %} | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 59 |  | 
| Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 60 | {% endblock %} |