Commit 8a135cca authored by Tim Graham's avatar Tim Graham
Browse files

[1.9.x] Fixed #26554 -- Updated docs URLs to readthedocs.io

Backport of f945fb24 from master
parent 472c5408
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
"""
This module houses the GeoIP2 object, a wrapper for the MaxMind GeoIP2(R)
Python API (http://geoip2.readthedocs.org/). This is an alternative to the
Python API (https://geoip2.readthedocs.io/). This is an alternative to the
Python GeoIP2 interface provided by MaxMind.

GeoIP(R) is a registered trademark of MaxMind, Inc.
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ intersphinx_mapping = {
    'python': ('https://docs.python.org/3/', None),
    'sphinx': ('http://sphinx-doc.org/', None),
    'six': ('https://pythonhosted.org/six/', None),
    'formtools': ('http://django-formtools.readthedocs.org/en/latest/', None),
    'formtools': ('https://django-formtools.readthedocs.io/en/latest/', None),
    'psycopg2': ('http://initd.org/psycopg/docs/', None),
}

+1 −1
Original line number Diff line number Diff line
@@ -233,7 +233,7 @@ See :doc:`/howto/error-reporting` for details on error reporting by email.
    Consider using an error monitoring system such as Sentry_ before your
    inbox is flooded by reports. Sentry can also aggregate logs.

    .. _Sentry: https://sentry.readthedocs.org/en/latest/
    .. _Sentry: https://docs.getsentry.com/

Customize the default error views
---------------------------------
+2 −2
Original line number Diff line number Diff line
@@ -97,8 +97,8 @@ Requests beginning with ``/secret/`` will now require a user to authenticate.
The mod_wsgi `access control mechanisms documentation`_ provides additional
details and information about alternative methods of authentication.

.. _Defining Application Groups: https://modwsgi.readthedocs.org/en/develop/user-guides/configuration-guidelines.html#defining-application-groups
.. _access control mechanisms documentation: https://modwsgi.readthedocs.org/en/develop/user-guides/access-control-mechanisms.html
.. _Defining Application Groups: https://modwsgi.readthedocs.io/en/develop/user-guides/configuration-guidelines.html#defining-application-groups
.. _access control mechanisms documentation: https://modwsgi.readthedocs.io/en/develop/user-guides/access-control-mechanisms.html

Authorization with ``mod_wsgi`` and Django groups
-------------------------------------------------
+4 −4
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ The `official mod_wsgi documentation`_ is fantastic; it's your source for all
the details about how to use mod_wsgi. You'll probably want to start with the
`installation and configuration documentation`_.

.. _official mod_wsgi documentation: https://modwsgi.readthedocs.org/
.. _installation and configuration documentation: https://modwsgi.readthedocs.org/en/develop/installation.html
.. _official mod_wsgi documentation: https://modwsgi.readthedocs.io/
.. _installation and configuration documentation: https://modwsgi.readthedocs.io/en/develop/installation.html

Basic configuration
===================
@@ -139,7 +139,7 @@ to the configuration above:
See the official mod_wsgi documentation for `details on setting up daemon
mode`_.

.. _details on setting up daemon mode: https://modwsgi.readthedocs.org/en/develop/user-guides/quick-configuration-guide.html#delegation-to-daemon-process
.. _details on setting up daemon mode: https://modwsgi.readthedocs.io/en/develop/user-guides/quick-configuration-guide.html#delegation-to-daemon-process

.. _serving-files:

@@ -197,7 +197,7 @@ If you are using a version of Apache older than 2.4, replace
.. More details on configuring a mod_wsgi site to serve static files can be found
.. in the mod_wsgi documentation on `hosting static files`_.

.. _hosting static files: https://modwsgi.readthedocs.org/en/develop/user-guides/configuration-guidelines.html#hosting-of-static-files
.. _hosting static files: https://modwsgi.readthedocs.io/en/develop/user-guides/configuration-guidelines.html#hosting-of-static-files

.. _serving-the-admin-files:

Loading