From 626bdf648a2c4c4f5fd25fbc4af41a1acfa18d7f Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sun, 8 Dec 2013 18:39:26 +0100 Subject: [PATCH] Updated a bunch of hyperlinks in documentation --- docs/faq/general.txt | 8 ++++---- docs/howto/deployment/index.txt | 2 +- docs/howto/deployment/wsgi/gunicorn.txt | 2 +- docs/howto/deployment/wsgi/uwsgi.txt | 6 +++--- docs/howto/jython.txt | 2 +- docs/index.txt | 2 +- docs/internals/committers.txt | 6 +++--- docs/internals/contributing/localizing.txt | 4 ++-- .../contributing/writing-code/coding-style.txt | 2 +- .../internals/contributing/writing-code/unit-tests.txt | 6 +++--- docs/internals/mailing-lists.txt | 10 +++++----- docs/internals/security.txt | 2 +- docs/intro/index.txt | 4 ++-- docs/intro/reusable-apps.txt | 10 +++++----- docs/ref/contrib/gis/admin.txt | 2 +- docs/ref/contrib/gis/feeds.txt | 2 +- docs/ref/contrib/gis/forms-api.txt | 2 +- docs/ref/contrib/gis/install/index.txt | 4 ++-- docs/ref/contrib/gis/install/postgis.txt | 2 +- docs/ref/contrib/gis/measure.txt | 2 +- docs/ref/contrib/gis/sitemaps.txt | 2 +- docs/ref/contrib/gis/tutorial.txt | 2 +- docs/ref/contrib/sitemaps.txt | 2 +- docs/ref/databases.txt | 2 +- docs/releases/1.2.txt | 2 +- docs/topics/install.txt | 2 +- docs/topics/logging.txt | 2 +- docs/topics/performance.txt | 2 +- docs/topics/python3.txt | 6 +++--- docs/topics/templates.txt | 2 +- docs/topics/testing/advanced.txt | 2 +- docs/topics/testing/overview.txt | 4 ++-- 32 files changed, 55 insertions(+), 55 deletions(-) diff --git a/docs/faq/general.txt b/docs/faq/general.txt index 5db3141f820..801cb334cab 100644 --- a/docs/faq/general.txt +++ b/docs/faq/general.txt @@ -159,7 +159,7 @@ Django has special conveniences for building "CMS-y" apps, that doesn't mean it's not just as appropriate for building "non-CMS-y" apps (whatever that means!). -.. _Drupal: http://drupal.org/ +.. _Drupal: https://drupal.org/ How can I download the Django documentation to read it offline? --------------------------------------------------------------- @@ -183,7 +183,7 @@ Where can I find Django developers for hire? Consult our `developers for hire page`_ for a list of Django developers who would be happy to help you. -You might also be interested in posting a job to http://djangogigs.com/ . +You might also be interested in posting a job to https://djangogigs.com/ . If you want to find Django-capable people in your local area, try https://people.djangoproject.com/ . @@ -198,7 +198,7 @@ software are still a matter of some debate. For example, `APA style`_, would dictate something like:: - Django (Version 1.5) [Computer Software]. (2013). Retrieved from http://djangoproject.com. + Django (Version 1.5) [Computer Software]. (2013). Retrieved from https://djangoproject.com. However, the only true guide is what your publisher will accept, so get a copy of those guidelines and fill in the gaps as best you can. @@ -208,7 +208,7 @@ Foundation". If you need a publishing location, use "Lawrence, Kansas". -If you need a web address, use http://djangoproject.com. +If you need a web address, use https://djangoproject.com. If you need a name, just use "Django", without any tagline. diff --git a/docs/howto/deployment/index.txt b/docs/howto/deployment/index.txt index 688bae2397a..1a5d137596b 100644 --- a/docs/howto/deployment/index.txt +++ b/docs/howto/deployment/index.txt @@ -31,4 +31,4 @@ the easiest, fastest, and most stable deployment choice. ``mod_python`` was first deprecated, then completely removed in Django 1.5. -.. _chapter 12 of the django book (second edition): http://djangobook.com/en/2.0/chapter12/ +.. _chapter 12 of the django book (second edition): http://djangobook.com/en/2.0/chapter12.html diff --git a/docs/howto/deployment/wsgi/gunicorn.txt b/docs/howto/deployment/wsgi/gunicorn.txt index 14c80af0a0e..95051b690b0 100644 --- a/docs/howto/deployment/wsgi/gunicorn.txt +++ b/docs/howto/deployment/wsgi/gunicorn.txt @@ -13,7 +13,7 @@ There are two ways to use Gunicorn with Django. One is to have Gunicorn treat Django as just another WSGI application. The second is to use Gunicorn's special `integration with Django`_. -.. _integration with Django: http://gunicorn.org/run.html#django-manage-py +.. _integration with Django: http://docs.gunicorn.org/en/latest/run.html#django-manage-py Installing Gunicorn =================== diff --git a/docs/howto/deployment/wsgi/uwsgi.txt b/docs/howto/deployment/wsgi/uwsgi.txt index 59dddda418c..47f1e7a61d6 100644 --- a/docs/howto/deployment/wsgi/uwsgi.txt +++ b/docs/howto/deployment/wsgi/uwsgi.txt @@ -32,7 +32,7 @@ command. For example: # Or install LTS (long term support). $ sudo pip install http://projects.unbit.it/downloads/uwsgi-lts.tar.gz -.. _installation procedures: http://projects.unbit.it/uwsgi/wiki/Install +.. _installation procedures: http://uwsgi-docs.readthedocs.org/en/latest/Install.html .. warning:: @@ -58,7 +58,7 @@ Configuring and starting the uWSGI server for Django uWSGI supports multiple ways to configure the process. See uWSGI's `configuration documentation`_ and `examples`_ -.. _configuration documentation: http://projects.unbit.it/uwsgi/wiki/Doc +.. _configuration documentation: https://uwsgi.readthedocs.org/en/latest/Configuration.html .. _examples: http://projects.unbit.it/uwsgi/wiki/Example Here's an example command to start a uWSGI server:: @@ -111,4 +111,4 @@ Example ini configuration file usage:: See the uWSGI docs on `managing the uWSGI process`_ for information on starting, stopping and reloading the uWSGI workers. -.. _managing the uWSGI process: http://projects.unbit.it/uwsgi/wiki/Management +.. _managing the uWSGI process: http://uwsgi-docs.readthedocs.org/en/latest/Management.html diff --git a/docs/howto/jython.txt b/docs/howto/jython.txt index 96a3d642512..2d2c22872a6 100644 --- a/docs/howto/jython.txt +++ b/docs/howto/jython.txt @@ -30,7 +30,7 @@ such as `Apache Tomcat`_. Full JavaEE applications servers such as `GlassFish`_ or `JBoss`_ are also OK, if you need the extra features they include. .. _`Apache Tomcat`: http://tomcat.apache.org/ -.. _GlassFish: http://glassfish.java.net/ +.. _GlassFish: https://glassfish.java.net/ .. _JBoss: http://www.jboss.org/ Installing Django diff --git a/docs/index.txt b/docs/index.txt index e5c92a20738..bd3baf8a9c2 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -26,7 +26,7 @@ Having trouble? We'd like to help! * Report bugs with Django in our `ticket tracker`_. .. _archives: http://groups.google.com/group/django-users/ -.. _post a question: http://groups.google.com/group/django-users/ +.. _post a question: https://groups.google.com/d/forum/django-users .. _#django IRC channel: irc://irc.freenode.net/django .. _IRC logs: http://django-irc-logs.com/ .. _ticket tracker: https://code.djangoproject.com/ diff --git a/docs/internals/committers.txt b/docs/internals/committers.txt index 3b37a2ca58c..0da26a31eb9 100644 --- a/docs/internals/committers.txt +++ b/docs/internals/committers.txt @@ -223,7 +223,7 @@ Karen Tracey Jannis lives in Berlin, Germany. - .. _Jannis Leidel: http://jezdez.com/ + .. _Jannis Leidel: https://jezdez.com/ .. _Bauhaus-University Weimar: http://www.uni-weimar.de/ .. _virtualenv: http://www.virtualenv.org/ .. _pip: http://www.pip-installer.org/ @@ -396,7 +396,7 @@ Tim Graham He works in a `management consulting company`_ in Paris, France. - .. _Aymeric Augustin: http://myks.org/ + .. _Aymeric Augustin: https://myks.org/ .. _management consulting company: http://www.polyconseil.fr/ `Claude Paroz`_ @@ -410,7 +410,7 @@ Tim Graham Django-based `l10n.gnome.org`_. .. _Claude Paroz: http://www.2xlibre.net - .. _l10n.gnome.org: http://l10n.gnome.org + .. _l10n.gnome.org: https://l10n.gnome.org Anssi Kääriäinen Anssi works as a developer at Finnish National Institute for Health and diff --git a/docs/internals/contributing/localizing.txt b/docs/internals/contributing/localizing.txt index 01b88d8d9a2..2069ea264c6 100644 --- a/docs/internals/contributing/localizing.txt +++ b/docs/internals/contributing/localizing.txt @@ -61,6 +61,6 @@ Django source tree, as for any code change: ``Translations``, and attach the patch to it. .. _Transifex: https://www.transifex.com/ -.. _Django i18n mailing list: http://groups.google.com/group/django-i18n/ +.. _Django i18n mailing list: /https://groups.google.com/d/forum/django-i18n .. _Django project page: https://www.transifex.com/projects/p/django-core/ -.. _Transifex User Guide: http://help.transifex.com/ +.. _Transifex User Guide: http://support.transifex.com/ diff --git a/docs/internals/contributing/writing-code/coding-style.txt b/docs/internals/contributing/writing-code/coding-style.txt index afcf9c072cb..c3d1b7c7582 100644 --- a/docs/internals/contributing/writing-code/coding-style.txt +++ b/docs/internals/contributing/writing-code/coding-style.txt @@ -213,4 +213,4 @@ Miscellaneous change to the ``AUTHORS`` file in your patch if you make more than a single trivial change. -.. _flake8: http://pypi.python.org/pypi/flake8 +.. _flake8: https://pypi.python.org/pypi/flake8 diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index 969635f2efe..2bbd9dcf0ec 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -187,11 +187,11 @@ associated tests will be skipped. .. _Pillow: https://pypi.python.org/pypi/Pillow/ .. _PyYAML: http://pyyaml.org/wiki/PyYAML .. _pytz: https://pypi.python.org/pypi/pytz/ -.. _setuptools: http://pypi.python.org/pypi/setuptools/ +.. _setuptools: https://pypi.python.org/pypi/setuptools/ .. _memcached: http://memcached.org/ .. _gettext: http://www.gnu.org/software/gettext/manual/gettext.html -.. _selenium: http://pypi.python.org/pypi/selenium -.. _pip requirements files: http://www.pip-installer.org/en/latest/requirements.html +.. _selenium: https://pypi.python.org/pypi/selenium +.. _pip requirements files: http://www.pip-installer.org/en/latest/cookbook.html#requirements-files Code coverage ~~~~~~~~~~~~~ diff --git a/docs/internals/mailing-lists.txt b/docs/internals/mailing-lists.txt index e5e6ea9a3d8..68b80357582 100644 --- a/docs/internals/mailing-lists.txt +++ b/docs/internals/mailing-lists.txt @@ -31,7 +31,7 @@ installation, usage, or debugging of Django. * `django-users subscription email address`_ * `django-users posting email`_ -.. _django-users mailing archive: http://groups.google.com/group/django-users/ +.. _django-users mailing archive: https://groups.google.com/d/forum/django-users .. _django-users subscription email address: mailto:django-users+subscribe@googlegroups.com .. _django-users posting email: mailto:django-users@googlegroups.com @@ -48,7 +48,7 @@ Django development. * `django-core-mentorship subscription email address`_ * `django-core-mentorship posting email`_ -.. _django-core-mentorship mailing archive: http://groups.google.com/group/django-core-mentorship/ +.. _django-core-mentorship mailing archive: https://groups.google.com/d/forum/django-core-mentorship .. _django-core-mentorship subscription email address: mailto:django-core-mentorship+subscribe@googlegroups.com .. _django-core-mentorship posting email: mailto:django-core-mentorship@googlegroups.com @@ -69,7 +69,7 @@ The discussion about the development of Django itself takes place here. * `django-developers subscription email address`_ * `django-developers posting email`_ -.. _django-developers mailing archive: http://groups.google.com/group/django-developers/ +.. _django-developers mailing archive: https://groups.google.com/d/forum/django-developers .. _django-developers subscription email address: mailto:django-developers+subscribe@googlegroups.com .. _django-developers posting email: mailto:django-developers@googlegroups.com @@ -85,7 +85,7 @@ bugfixes. * `django-announce subscription email address`_ * `django-announce posting email`_ -.. _django-announce mailing archive: http://groups.google.com/group/django-announce/ +.. _django-announce mailing archive: https://groups.google.com/d/forum/django-announce .. _django-announce subscription email address: mailto:django-announce+subscribe@googlegroups.com .. _django-announce posting email: mailto:django-announce@googlegroups.com @@ -101,6 +101,6 @@ by developers and interested community members. * `django-updates subscription email address`_ * `django-updates posting email`_ -.. _django-updates mailing archive: http://groups.google.com/group/django-updates/ +.. _django-updates mailing archive: https://groups.google.com/d/forum/django-updates .. _django-updates subscription email address: mailto:django-updates+subscribe@googlegroups.com .. _django-updates posting email: mailto:django-updates@googlegroups.com diff --git a/docs/internals/security.txt b/docs/internals/security.txt index 7c0a9242d54..d9aab377f58 100644 --- a/docs/internals/security.txt +++ b/docs/internals/security.txt @@ -113,7 +113,7 @@ On the day of disclosure, we will take the following steps: 4. Post a notice to the |django-announce| mailing list that links to the blog post. -.. _the Python Package Index: http://pypi.python.org/pypi +.. _the Python Package Index: https://pypi.python.org/pypi .. _the official Django development blog: https://www.djangoproject.com/weblog/ If a reported issue is believed to be particularly time-sensitive -- diff --git a/docs/intro/index.txt b/docs/intro/index.txt index 9e88402f6d1..a7872017b9c 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 04a8ea7417c..8959aae06ae 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) `_ has a vast range of packages you can use in your own Python programs. Check out `Django -Packages `_ for existing reusable apps you could +Packages `_ 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`. 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 ================== @@ -182,7 +182,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 - `_ have a good + `_ have a good explanation. Create a file ``django-polls/setup.py`` with the following contents: @@ -246,7 +246,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 `_. + online through sites like `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 @@ -285,7 +285,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 =================== diff --git a/docs/ref/contrib/gis/admin.txt b/docs/ref/contrib/gis/admin.txt index d1a9fc1dcb3..d3bc1d26a16 100644 --- a/docs/ref/contrib/gis/admin.txt +++ b/docs/ref/contrib/gis/admin.txt @@ -67,6 +67,6 @@ GeoDjango's admin site .. class:: OSMGeoAdmin A subclass of :class:`GeoModelAdmin` that uses a spherical mercator projection - with `OpenStreetMap `_ street data tiles. + with `OpenStreetMap `_ street data tiles. See the :ref:`OSMGeoAdmin introduction ` in the tutorial for a usage example. diff --git a/docs/ref/contrib/gis/feeds.txt b/docs/ref/contrib/gis/feeds.txt index 7b1b6ebccf6..72c51b57abc 100644 --- a/docs/ref/contrib/gis/feeds.txt +++ b/docs/ref/contrib/gis/feeds.txt @@ -13,7 +13,7 @@ Django's, please consult :doc:`Django's syndication documentation .. _W3C Geo: http://www.w3.org/2003/01/geo/ -__ http://georss.org/1.0#simple +__ http://georss.org/simple.html Example ======= diff --git a/docs/ref/contrib/gis/forms-api.txt b/docs/ref/contrib/gis/forms-api.txt index da4c96792e1..435bcfc8b11 100644 --- a/docs/ref/contrib/gis/forms-api.txt +++ b/docs/ref/contrib/gis/forms-api.txt @@ -14,7 +14,7 @@ display and edit geolocalized data on a map. By default, they use `OpenLayers`_-powered maps, with a base WMS layer provided by `Metacarta`_. .. _OpenLayers: http://openlayers.org/ -.. _Metacarta: http://metacarta.com/ +.. _Metacarta: http://www.metacarta.com/ Field arguments =============== diff --git a/docs/ref/contrib/gis/install/index.txt b/docs/ref/contrib/gis/install/index.txt index 9c46b19493e..4bd0471572a 100644 --- a/docs/ref/contrib/gis/install/index.txt +++ b/docs/ref/contrib/gis/install/index.txt @@ -140,7 +140,7 @@ community! You can: sure to provide a complete description of the problem, versions used, and specify the component as "GIS". -__ http://groups.google.com/group/geodjango +__ https://groups.google.com/d/forum/geodjango __ https://code.djangoproject.com/newticket .. _libsettings: @@ -273,7 +273,7 @@ Summary:: $ brew install gdal $ brew install libgeoip -__ http://mxcl.github.com/homebrew/ +__ http://brew.sh/ .. _Apple Developer Tools: https://developer.apple.com/technologies/tools/ .. _kyngchaos: diff --git a/docs/ref/contrib/gis/install/postgis.txt b/docs/ref/contrib/gis/install/postgis.txt index c651fe8fca5..75597fbb38f 100644 --- a/docs/ref/contrib/gis/install/postgis.txt +++ b/docs/ref/contrib/gis/install/postgis.txt @@ -15,7 +15,7 @@ might also need additional libraries, see `PostGIS requirements`_. when using GeoDjango with PostGIS. .. _psycopg2: http://initd.org/psycopg/ -.. _PostGIS requirements: http://www.postgis.org/documentation/manual-2.0/postgis_installation.html#id2711662 +.. _PostGIS requirements: http://www.postgis.org/documentation/manual-2.0/postgis_installation.html#id554707 On Debian/Ubuntu, you are advised to install the following packages: postgresql-x.x, postgresql-x.x-postgis, postgresql-server-dev-x.x, diff --git a/docs/ref/contrib/gis/measure.txt b/docs/ref/contrib/gis/measure.txt index 2a05b42600c..197f584729e 100644 --- a/docs/ref/contrib/gis/measure.txt +++ b/docs/ref/contrib/gis/measure.txt @@ -175,6 +175,6 @@ Measurement API Alias for :class:`Area` class. .. rubric:: Footnotes -.. [#] `Robert Coup `_ is the initial author of the measure objects, +.. [#] `Robert Coup `_ is the initial author of the measure objects, and was inspired by Brian Beck's work in `geopy `_ and Geoff Biggs' PhD work on dimensioned units for robotics. diff --git a/docs/ref/contrib/gis/sitemaps.txt b/docs/ref/contrib/gis/sitemaps.txt index 0ab8f758250..60df2b87b28 100644 --- a/docs/ref/contrib/gis/sitemaps.txt +++ b/docs/ref/contrib/gis/sitemaps.txt @@ -23,4 +23,4 @@ Reference ----------------- .. rubric:: Footnotes -.. [#] Google, Inc., `What is a Geo Sitemap? `_. +.. [#] Google, Inc., `What is a Geo Sitemap? `_. diff --git a/docs/ref/contrib/gis/tutorial.txt b/docs/ref/contrib/gis/tutorial.txt index 17ce1edbf03..183b2b98758 100644 --- a/docs/ref/contrib/gis/tutorial.txt +++ b/docs/ref/contrib/gis/tutorial.txt @@ -747,7 +747,7 @@ entries -- the borders may be edited by clicking on a polygon and dragging the vertexes to the desired position. .. _OpenLayers: http://openlayers.org/ -.. _Open Street Map: http://openstreetmap.org/ +.. _Open Street Map: http://www.openstreetmap.org/ .. _Vector Map Level 0: http://earth-info.nga.mil/publications/vmap0.html .. _OSGeo: http://www.osgeo.org diff --git a/docs/ref/contrib/sitemaps.txt b/docs/ref/contrib/sitemaps.txt index 7b53fc8c129..fefe90a4201 100644 --- a/docs/ref/contrib/sitemaps.txt +++ b/docs/ref/contrib/sitemaps.txt @@ -454,7 +454,7 @@ generate a Google News compatible sitemap: {% endspaceless %} -.. _`Google news sitemaps`: http://support.google.com/webmasters/bin/answer.py?hl=en&answer=74288 +.. _`Google news sitemaps`: https://support.google.com/webmasters/answer/74288?hl=en Pinging Google ============== diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index 0ff1861b2a5..3429531d761 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -866,5 +866,5 @@ the support channels provided by each 3rd party project. .. _IBM DB2: http://code.google.com/p/ibm-db/ .. _Microsoft SQL Server 2005: http://code.google.com/p/django-mssql/ .. _Firebird: http://code.google.com/p/django-firebird/ -.. _ODBC: https://github.com/aurorasoftware/django-pyodbc/ +.. _ODBC: https://github.com/lionheart/django-pyodbc/ .. _ADSDB: http://code.google.com/p/adsdb-django/ diff --git a/docs/releases/1.2.txt b/docs/releases/1.2.txt index ac355a1d875..387f2508ef2 100644 --- a/docs/releases/1.2.txt +++ b/docs/releases/1.2.txt @@ -50,7 +50,7 @@ be found below`_. `Django Advent`_ covered the release of Django 1.2 with a series of articles and tutorials that cover some of the new features in depth. -.. _django advent: http://djangoadvent.com/ +.. _django advent: https://github.com/djangoadvent/djangoadvent-articles Wherever possible these features have been introduced in a backwards-compatible manner per :doc:`our API stability policy ` policy. diff --git a/docs/topics/install.txt b/docs/topics/install.txt index 923ae44270e..1868c73a6bd 100644 --- a/docs/topics/install.txt +++ b/docs/topics/install.txt @@ -221,7 +221,7 @@ This is the recommended way to install Django. .. _pip: http://www.pip-installer.org/ .. _virtualenv: http://www.virtualenv.org/ -.. _virtualenvwrapper: http://www.doughellmann.com/docs/virtualenvwrapper/ +.. _virtualenvwrapper: http://virtualenvwrapper.readthedocs.org/en/latest/ .. _standalone pip installer: http://www.pip-installer.org/en/latest/installing.html#using-the-installer Installing an official release manually diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt index f4c1043eb40..15c1aa9dd8d 100644 --- a/docs/topics/logging.txt +++ b/docs/topics/logging.txt @@ -516,7 +516,7 @@ Python logging module. By default, an instance of the email backend specified in :setting:`EMAIL_BACKEND` will be used. -.. _Sentry: http://pypi.python.org/pypi/sentry +.. _Sentry: https://pypi.python.org/pypi/sentry Filters diff --git a/docs/topics/performance.txt b/docs/topics/performance.txt index 1c1ed867625..1e3bf7b9d43 100644 --- a/docs/topics/performance.txt +++ b/docs/topics/performance.txt @@ -417,7 +417,7 @@ With these caveats in mind, you should be aware of: performance gains, typically for heavyweight applications. A key aim of the PyPy project is `compatibility -`_ with existing Python APIs and libraries. +`_ with existing Python APIs and libraries. Django is compatible, but you will need to check the compatibility of other libraries you rely on. diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt index d059bc042d6..15c07ccbf08 100644 --- a/docs/topics/python3.txt +++ b/docs/topics/python3.txt @@ -6,7 +6,7 @@ Django 1.5 is the first version of Django to support Python 3. The same code runs both on Python 2 (≥ 2.6.5) and Python 3 (≥ 3.2), thanks to the six_ compatibility layer. -.. _six: http://packages.python.org/six/ +.. _six: http://pythonhosted.org/six/ This document is primarily targeted at authors of pluggable application who want to support both Python 2 and 3. It also describes guidelines that @@ -42,7 +42,7 @@ developers are used to dealing with such constraints. Porting tools provided by Django are inspired by this philosophy, and it's reflected throughout this guide. -.. _Python's official porting guide: http://docs.python.org/py3k/howto/pyporting.html +.. _Python's official porting guide: http://docs.python.org/3/howto/pyporting.html .. _Pragmatic Unicode: http://nedbatchelder.com/text/unipain.html Porting tips @@ -246,7 +246,7 @@ consequence, the following pattern is sometimes necessary:: Be cautious if you have to `index bytestrings`_. -.. _index bytestrings: http://docs.python.org/py3k/howto/pyporting.html#bytes-literals +.. _index bytestrings: http://docs.python.org/3/howto/pyporting.html#bytes-literals Exceptions ~~~~~~~~~~ diff --git a/docs/topics/templates.txt b/docs/topics/templates.txt index b1389b85f62..53ee292e376 100644 --- a/docs/topics/templates.txt +++ b/docs/topics/templates.txt @@ -30,7 +30,7 @@ or CheetahTemplate_, you should feel right at home with Django's templates. ` to the template language as needed). .. _`The Django template language: For Python programmers`: ../templates_python/ -.. _Smarty: http://smarty.php.net/ +.. _Smarty: http://www.smarty.net/ .. _CheetahTemplate: http://www.cheetahtemplate.org/ Templates diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt index 90111d05ffd..936b90b7471 100644 --- a/docs/topics/testing/advanced.txt +++ b/docs/topics/testing/advanced.txt @@ -549,4 +549,4 @@ For more options like annotated HTML listings detailing missed lines, see the `coverage.py`_ docs. .. _coverage.py: http://nedbatchelder.com/code/coverage/ -.. _install coverage.py: http://pypi.python.org/pypi/coverage +.. _install coverage.py: https://pypi.python.org/pypi/coverage diff --git a/docs/topics/testing/overview.txt b/docs/topics/testing/overview.txt index a0bed1b2ee4..f8464638c20 100644 --- a/docs/topics/testing/overview.txt +++ b/docs/topics/testing/overview.txt @@ -31,7 +31,7 @@ module defines tests using a class-based approach. Since Django no longer supports Python versions older than 2.7, ``django.utils.unittest`` is deprecated. Simply use ``unittest``. -.. _unittest2: http://pypi.python.org/pypi/unittest2 +.. _unittest2: https://pypi.python.org/pypi/unittest2 Here is an example which subclasses from :class:`django.test.TestCase`, which is a subclass of :class:`unittest.TestCase` that runs each test inside a @@ -1053,7 +1053,7 @@ example above is just a tiny fraction of what the Selenium client can do; check out the `full reference`_ for more details. .. _Selenium: http://seleniumhq.org/ -.. _selenium package: http://pypi.python.org/pypi/selenium +.. _selenium package: https://pypi.python.org/pypi/selenium .. _full reference: http://selenium-python.readthedocs.org/en/latest/api.html .. _Firefox: http://www.mozilla.com/firefox/