summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2018-01-07 14:28:41 +0100
committerGitHub <noreply@github.com>2018-01-07 14:28:41 +0100
commit7c81b28ebcaebbc2e5bbca9a73427d81166ce3dc (patch)
tree7f2c5870c682c2cdce61a571049d84ae2f403fe2 /docs/howto
parent762bd34c3699875d315d478b3efb090155beb743 (diff)
Updated various links in docs to use HTTPS.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/auth-remote-user.txt2
-rw-r--r--docs/howto/deployment/wsgi/apache-auth.txt2
-rw-r--r--docs/howto/initial-data.txt2
-rw-r--r--docs/howto/outputting-pdf.txt4
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/howto/auth-remote-user.txt b/docs/howto/auth-remote-user.txt
index 7bc9ef08c0..fc16647098 100644
--- a/docs/howto/auth-remote-user.txt
+++ b/docs/howto/auth-remote-user.txt
@@ -13,7 +13,7 @@ Windows Authentication or Apache and `mod_authnz_ldap`_, `CAS`_, `Cosign`_,
.. _CAS: https://www.apereo.org/projects/cas
.. _Cosign: http://weblogin.org
.. _WebAuth: https://www.stanford.edu/services/webauth/
-.. _mod_auth_sspi: http://sourceforge.net/projects/mod-auth-sspi
+.. _mod_auth_sspi: https://sourceforge.net/projects/mod-auth-sspi
When the Web server takes care of authentication it typically sets the
``REMOTE_USER`` environment variable for use in the underlying application. In
diff --git a/docs/howto/deployment/wsgi/apache-auth.txt b/docs/howto/deployment/wsgi/apache-auth.txt
index 5f134209f0..912d11830e 100644
--- a/docs/howto/deployment/wsgi/apache-auth.txt
+++ b/docs/howto/deployment/wsgi/apache-auth.txt
@@ -22,7 +22,7 @@ version >= 2.2 and mod_wsgi >= 2.0. For example, you could:
a 'name' field. You can also specify your own custom mod_wsgi
auth handler if your custom cannot conform to these requirements.
-.. _Subversion: http://subversion.apache.org/
+.. _Subversion: https://subversion.apache.org/
.. _mod_dav: https://httpd.apache.org/docs/2.2/mod/mod_dav.html
Authentication with ``mod_wsgi``
diff --git a/docs/howto/initial-data.txt b/docs/howto/initial-data.txt
index 5945073889..0568d36262 100644
--- a/docs/howto/initial-data.txt
+++ b/docs/howto/initial-data.txt
@@ -19,7 +19,7 @@ Or, you can write fixtures by hand; fixtures can be written as JSON, XML or YAML
</topics/serialization>` has more details about each of these supported
:ref:`serialization formats <serialization-formats>`.
-.. _PyYAML: http://www.pyyaml.org/
+.. _PyYAML: https://www.pyyaml.org/
As an example, though, here's what a fixture for a simple ``Person`` model might
look like in JSON:
diff --git a/docs/howto/outputting-pdf.txt b/docs/howto/outputting-pdf.txt
index bfcea02f97..7f1b9d1b1a 100644
--- a/docs/howto/outputting-pdf.txt
+++ b/docs/howto/outputting-pdf.txt
@@ -14,7 +14,7 @@ For example, Django was used at kusports.com_ to generate customized,
printer-friendly NCAA tournament brackets, as PDF files, for people
participating in a March Madness contest.
-.. _ReportLab: http://www.reportlab.com/opensource/
+.. _ReportLab: https://www.reportlab.com/opensource/
.. _kusports.com: http://www.kusports.com/
Install ReportLab
@@ -35,7 +35,7 @@ Test your installation by importing it in the Python interactive interpreter::
If that command doesn't raise any errors, the installation worked.
.. _available on PyPI: https://pypi.python.org/pypi/reportlab
-.. _user guide: http://www.reportlab.com/docs/reportlab-userguide.pdf
+.. _user guide: https://www.reportlab.com/docs/reportlab-userguide.pdf
Write your view
===============