Used https for most *.python.org links

This commit is contained in:
Claude Paroz 2014-12-19 16:25:57 +01:00
parent 742fba9455
commit 0a4b04fc23
36 changed files with 52 additions and 57 deletions

View file

@ -253,4 +253,4 @@ drastically increase CPU usage by causing worst-case performance when
creating ``dict`` instances. See `oCERT advisory #2011-003
<http://www.ocert.org/advisories/ocert-2011-003.html>`_ for more information.
.. _-r: http://docs.python.org/2.7/using/cmdline.html#cmdoption-R
.. _-r: https://docs.python.org/using/cmdline.html#cmdoption-R

View file

@ -80,7 +80,7 @@ You could also replace the Django WSGI application with a custom WSGI
application that later delegates to the Django WSGI application, if you want
to combine a Django application with a WSGI application of another framework.
.. _`WSGI middleware`: http://www.python.org/dev/peps/pep-3333/#middleware-components-that-play-both-sides
.. _`WSGI middleware`: https://www.python.org/dev/peps/pep-3333/#middleware-components-that-play-both-sides
.. note::

View file

@ -71,7 +71,7 @@ mention:
For more information, see the Python documentation of the :mod:`csv` module.
.. _`csv module's examples section`: http://docs.python.org/2/library/csv.html#examples
.. _`csv module's examples section`: https://docs.python.org/library/csv.html#examples
.. _`python-unicodecsv module`: https://github.com/jdunck/python-unicodecsv
.. _streaming-csv-files:

View file

@ -16,7 +16,7 @@ Install Python
Django is a Python web framework, thus requiring Python to be installed on your
machine.
To install Python on your machine go to http://python.org/download/, and
To install Python on your machine go to https://python.org/download/, and
download a Windows MSI installer for Python. Once downloaded, run the MSI
installer and follow the on-screen instructions.
@ -33,14 +33,14 @@ Install Setuptools
==================
To install Python packages on your computer, Setuptools is needed. Download the
latest version of `Setuptools <http://pypi.python.org/pypi/setuptools>`_ for
latest version of `Setuptools <https://pypi.python.org/pypi/setuptools>`_ for
your Python version and follow the installation instructions given there.
Install PIP
===========
`PIP <http://www.pip-installer.org/>`_ is a package manager for Python that
uses the `Python Package Index <http://pypi.python.org>`_ to install Python
uses the `Python Package Index <https://pypi.python.org>`_ to install Python
packages. PIP will later be used to install Django from PyPI. If you've
installed Python 3.4, ``pip`` is included so you may skip this section.