summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2021-04-27 12:09:00 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-05-17 12:16:09 +0200
commitcb91b2d9e3e28d0ede24dbb052faa6e7fead5897 (patch)
tree6ba869da57dc76a38857115e096f09426949f50b /docs/intro
parent55b89e8cac2f8cc7cf3f96dfa138b3b9fda81160 (diff)
[3.2.x] Refs #32720 -- Updated various links in docs to avoid redirects and use HTTPS.
Backport of c156e369553c75a30c78b8ed54a57b1101865105 from main
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/contributing.txt2
-rw-r--r--docs/intro/index.txt2
-rw-r--r--docs/intro/install.txt2
-rw-r--r--docs/intro/tutorial03.txt2
-rw-r--r--docs/intro/tutorial05.txt2
5 files changed, 5 insertions, 5 deletions
diff --git a/docs/intro/contributing.txt b/docs/intro/contributing.txt
index f745442d13..29cf3665f3 100644
--- a/docs/intro/contributing.txt
+++ b/docs/intro/contributing.txt
@@ -343,7 +343,7 @@ This test checks that the ``make_toast()`` returns ``'toast'``.
* After reading those, if you want something a little meatier to sink
your teeth into, there's always the Python :mod:`unittest` documentation.
-__ https://www.diveinto.org/python3/unit-testing.html
+__ https://diveinto.org/python3/unit-testing.html
Running your new test
---------------------
diff --git a/docs/intro/index.txt b/docs/intro/index.txt
index 1be0facb22..f52c04e8cf 100644
--- a/docs/intro/index.txt
+++ b/docs/intro/index.txt
@@ -34,7 +34,7 @@ place: read this material to quickly get up and running.
Python quickly, we recommend `Dive Into Python`_. If that's not quite your
style, there are many other `books about Python`_.
- .. _python: https://python.org/
+ .. _python: https://www.python.org/
.. _list of Python resources for non-programmers: https://wiki.python.org/moin/BeginnersGuide/NonProgrammers
.. _Dive Into Python: https://diveinto.org/python3/table-of-contents.html
.. _books about Python: https://wiki.python.org/moin/PythonBooks
diff --git a/docs/intro/install.txt b/docs/intro/install.txt
index dc8399d933..2e67b9a9aa 100644
--- a/docs/intro/install.txt
+++ b/docs/intro/install.txt
@@ -14,7 +14,7 @@ Being a Python Web framework, Django requires Python. See
:ref:`faq-python-version-support` for details. Python includes a lightweight
database called SQLite_ so you won't need to set up a database just yet.
-.. _sqlite: https://sqlite.org/
+.. _sqlite: https://www.sqlite.org/
Get the latest version of Python at https://www.python.org/downloads/ or with
your operating system's package manager.
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 3d83c56b91..1fc72d3e79 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -212,7 +212,7 @@ Put the following code in that template:
To make the tutorial shorter, all template examples use incomplete HTML. In
your own projects you should use `complete HTML documents`__.
-__ https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Getting_started#Anatomy_of_an_HTML_document
+__ https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Getting_started#anatomy_of_an_html_document
Now let's update our ``index`` view in ``polls/views.py`` to use the template:
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index 1ff868b1cb..d7f6334324 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -689,7 +689,7 @@ Coverage will help to identify dead code. See
:doc:`Testing in Django </topics/testing/index>` has comprehensive
information about testing.
-.. _Selenium: http://seleniumhq.org/
+.. _Selenium: https://www.selenium.dev/
.. _continuous integration: https://en.wikipedia.org/wiki/Continuous_integration
What's next?