diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-12-08 18:39:26 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-12-08 18:48:30 +0100 |
| commit | ef9832f148d72cd8a32c9398d8dd8600d30f0ab8 (patch) | |
| tree | cd847e5bbbb45f767a19b6dfb9406f5546803bca /docs/intro | |
| parent | 45c0d2e1ce0fe024e4a80c9dde8263f5ff59d577 (diff) | |
[1.6.x] Updated a bunch of hyperlinks in documentation
Backport of 626bdf648 from master.
Diffstat (limited to 'docs/intro')
| -rw-r--r-- | docs/intro/index.txt | 4 | ||||
| -rw-r--r-- | docs/intro/reusable-apps.txt | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/intro/index.txt b/docs/intro/index.txt index 9e88402f6d..a7872017b9 100644 --- a/docs/intro/index.txt +++ b/docs/intro/index.txt @@ -35,8 +35,8 @@ place: read this material to quickly get up and running. a few other `books about Python`_. .. _python: http://python.org/ - .. _list of Python resources for non-programmers: http://wiki.python.org/moin/BeginnersGuide/NonProgrammers + .. _list of Python resources for non-programmers: https://wiki.python.org/moin/BeginnersGuide/NonProgrammers .. _Python 2: http://diveintopython.net/ .. _Python 3: http://diveintopython3.net/ .. _dead-tree version: http://www.amazon.com/exec/obidos/ASIN/1590593561/ref=nosim/jacobian20 - .. _books about Python: http://wiki.python.org/moin/PythonBooks + .. _books about Python: https://wiki.python.org/moin/PythonBooks diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt index 73b9461408..2bd04a0be3 100644 --- a/docs/intro/reusable-apps.txt +++ b/docs/intro/reusable-apps.txt @@ -19,7 +19,7 @@ could save some of this repeated work? Reusability is the way of life in Python. `The Python Package Index (PyPI) <http://guide.python-distribute.org/contributing.html#pypi-info>`_ has a vast range of packages you can use in your own Python programs. Check out `Django -Packages <http://www.djangopackages.com>`_ for existing reusable apps you could +Packages <https://www.djangopackages.com>`_ for existing reusable apps you could incorporate in your project. Django itself is also just a Python package. This means that you can take existing Python packages or Django apps and compose them into your own web project. You only need to write the parts that make @@ -108,7 +108,7 @@ Django with pip<installing-official-release>`. You can install ``setuptools`` the same way. .. _setuptools: https://pypi.python.org/pypi/setuptools -.. _pip: http://pypi.python.org/pypi/pip +.. _pip: https://pypi.python.org/pypi/pip Packaging your app ================== @@ -179,7 +179,7 @@ this. For a small app like polls, this process isn't too difficult. 5. Next we'll create a ``setup.py`` file which provides details about how to build and install the app. A full explanation of this file is beyond the scope of this tutorial, but the `setuptools docs - <http://packages.python.org/setuptools/setuptools.html>`_ have a good + <http://pythonhosted.org/setuptools/setuptools.html>`_ have a good explanation. Create a file ``django-polls/setup.py`` with the following contents:: @@ -236,7 +236,7 @@ this. For a small app like polls, this process isn't too difficult. Note that the ``docs`` directory won't be included in your package unless you add some files to it. Many Django apps also provide their documentation - online through sites like `readthedocs.org <http://readthedocs.org>`_. + online through sites like `readthedocs.org <https://readthedocs.org>`_. 8. Try building your package with ``python setup.py sdist`` (run from inside ``django-polls``). This creates a directory called ``dist`` and builds your @@ -277,7 +277,7 @@ working. We'll now fix this by installing our new ``django-polls`` package. pip uninstall django-polls -.. _pip: http://pypi.python.org/pypi/pip +.. _pip: https://pypi.python.org/pypi/pip Publishing your app =================== |
