summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-12-19 18:07:03 +0100
committerClaude Paroz <claude@2xlibre.net>2014-12-19 18:07:52 +0100
commit337cd0983699ea5739746fb2d5066f38f8834bbb (patch)
treec6b786619ae9dee42b3288724ae1de9de3c32a28 /docs/howto
parent0a4b04fc23356aa6970ca1b17cb5e6955b108289 (diff)
Updated some other external links in the docs
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/auth-remote-user.txt2
-rw-r--r--docs/howto/deployment/index.txt2
-rw-r--r--docs/howto/outputting-pdf.txt10
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/howto/auth-remote-user.txt b/docs/howto/auth-remote-user.txt
index 2edab6bc53..30aad24293 100644
--- a/docs/howto/auth-remote-user.txt
+++ b/docs/howto/auth-remote-user.txt
@@ -10,7 +10,7 @@ Windows Authentication or Apache and `mod_authnz_ldap`_, `CAS`_, `Cosign`_,
`WebAuth`_, `mod_auth_sspi`_, etc.
.. _mod_authnz_ldap: http://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html
-.. _CAS: http://www.jasig.org/cas
+.. _CAS: https://www.apereo.org/cas
.. _Cosign: http://weblogin.org
.. _WebAuth: http://www.stanford.edu/services/webauth/
.. _mod_auth_sspi: http://sourceforge.net/projects/mod-auth-sspi
diff --git a/docs/howto/deployment/index.txt b/docs/howto/deployment/index.txt
index 1a5d137596..7b37a4870e 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.html
+.. _chapter 12 of the django book (second edition): http://www.djangobook.com/en/2.0/chapter12.html
diff --git a/docs/howto/outputting-pdf.txt b/docs/howto/outputting-pdf.txt
index 2c0cb277cc..4bc413e009 100644
--- a/docs/howto/outputting-pdf.txt
+++ b/docs/howto/outputting-pdf.txt
@@ -14,16 +14,15 @@ 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/software/opensource/rl-toolkit/
+.. _ReportLab: http://www.reportlab.com/opensource/
.. _kusports.com: http://www.kusports.com/
Install ReportLab
=================
-Download and install the ReportLab library from
-http://www.reportlab.com/software/opensource/rl-toolkit/download/.
-The `user guide`_ (not coincidentally, a PDF file) explains how to install it.
-Alternatively, you can also install it with ``pip``:
+The ReportLab library is `available on PyPI`_. A `user guide`_ (not
+coincidentally, a PDF file) is also available for download.
+You can install ReportLab with ``pip``:
.. code-block:: bash
@@ -35,6 +34,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
Write your view