-
-
Notifications
You must be signed in to change notification settings - Fork 33k
gh-138843: Clean up downloads page #138844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
StanFromIreland
wants to merge
4
commits into
python:main
Choose a base branch
from
StanFromIreland:download-page
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,48 +42,39 @@ <h1>{% trans %}Download Python {{ dl_version }} documentation{% endtrans %}</h1> | |
</tr> | ||
<tr> | ||
<td>{% trans %}PDF{% endtrans %}</td> | ||
<td>{% trans download_size="17" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-pdf-a4.zip">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans download_size="17" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-pdf-a4.tar.bz2">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-pdf-a4.zip">Download</a>{% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-pdf-a4.tar.bz2">Download</a>{% endtrans %}</td> | ||
</tr> | ||
<tr> | ||
<td>{% trans %}HTML{% endtrans %}</td> | ||
<td>{% trans download_size="13" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-html.zip">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans download_size="8" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-html.tar.bz2">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-html.zip">Download</a>{% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-html.tar.bz2">Download</a>{% endtrans %}</td> | ||
</tr> | ||
<tr> | ||
<td>{% trans %}Plain text{% endtrans %}</td> | ||
<td>{% trans download_size="4" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-text.zip">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans download_size="3" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-text.tar.bz2">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-text.zip">Download</a>{% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-text.tar.bz2">Download</a>{% endtrans %}</td> | ||
</tr> | ||
<tr> | ||
<td>{% trans %}Texinfo{% endtrans %}</td> | ||
<td>{% trans download_size="9" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-texinfo.zip">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans download_size="7" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-texinfo.tar.bz2">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-texinfo.zip">Download</a>{% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs-texinfo.tar.bz2">Download</a>{% endtrans %}</td> | ||
</tr> | ||
<tr> | ||
<td>{% trans %}EPUB{% endtrans %}</td> | ||
<td>{% trans download_size="6" %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs.epub">Download</a> (ca. {{ download_size }} MiB){% endtrans %}</td> | ||
<td>{% trans %}<a href="{{ dl_base }}/python-{{ dl_version }}-docs.epub">Download</a>{% endtrans %}</td> | ||
<td></td> | ||
</tr> | ||
</table> | ||
|
||
<p>{% trans %}These archives contain all the content in the documentation.{% endtrans %}</p> | ||
|
||
|
||
<h2>{% trans %}Unpacking{% endtrans %}</h2> | ||
|
||
<p>{% trans %}Unix users should download the .tar.bz2 archives; these are bzipped tar | ||
archives and can be handled in the usual way using tar and the bzip2 | ||
program. The <a href="https://infozip.sourceforge.net">Info-ZIP</a> unzip program can be | ||
used to handle the ZIP archives if desired. The .tar.bz2 archives provide the | ||
best compression and fastest download times.{% endtrans %}</p> | ||
|
||
<p>{% trans %}Windows users can use the ZIP archives since those are customary on that | ||
platform. These are created on Unix using the Info-ZIP zip program.{% endtrans %}</p> | ||
|
||
{% set archives = pathto('archives')|replace('.html', '/') %} | ||
<p>{% trans archives = archives %}These archives contain all the content in the | ||
documentation. | ||
See the <a href="{{ archives }}">directory listing</a> for accurate size | ||
information.{% endtrans %}</p> | ||
StanFromIreland marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
<h2>{% trans %}Problems{% endtrans %}</h2> | ||
|
||
<p>{% trans %}If you have comments or suggestions for the Python documentation, please send | ||
email to <a href="mailto:[email protected]">[email protected]</a>.{% endtrans %}</p> | ||
{% set bugs = pathto('bugs') %} | ||
<p>{% trans bugs = bugs %}See <a href="{{ bugs }}">this page</a> if you | ||
StanFromIreland marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
have comments or suggestions for the Python documentation.{% endtrans %}</p> | ||
{% endblock %} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.