summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2015-11-29 08:29:46 -0800
committerTim Graham <timograham@gmail.com>2015-12-01 08:03:16 -0500
commitbf76cf07e0e0713020974f47dacfaddcedbe1abf (patch)
tree25d3659624b41be8315d418c577a7b529b4d8ae6 /docs/topics
parentb4074102328180dd53ecc5a03b0afa1322024036 (diff)
[1.9.x] Fixed #25778 -- Updated docs links to use https when available.
Backport of 7aabd6238028f4bb78d0687bbccc97bcf634e28b from master
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/cache.txt4
-rw-r--r--docs/topics/db/transactions.txt2
-rw-r--r--docs/topics/http/_images/middleware.graffle2
-rw-r--r--docs/topics/http/sessions.txt2
-rw-r--r--docs/topics/http/shortcuts.txt2
-rw-r--r--docs/topics/http/urls.txt4
-rw-r--r--docs/topics/i18n/index.txt2
-rw-r--r--docs/topics/i18n/translation.txt2
-rw-r--r--docs/topics/install.txt8
-rw-r--r--docs/topics/python3.txt2
-rw-r--r--docs/topics/security.txt2
-rw-r--r--docs/topics/signing.txt2
-rw-r--r--docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle2
-rw-r--r--docs/topics/testing/tools.txt6
14 files changed, 21 insertions, 21 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 386c9870e0..7c94c789c4 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -1016,7 +1016,7 @@ the request reaches your website.
Here are a few examples of downstream caches:
* Your ISP may cache certain pages, so if you requested a page from
- http://example.com/, your ISP would send you the page without having to
+ https://example.com/, your ISP would send you the page without having to
access example.com directly. The maintainers of example.com have no
knowledge of this caching; the ISP sits between example.com and your Web
browser, handling all of the caching transparently.
@@ -1059,7 +1059,7 @@ said to "vary on language."
By default, Django's cache system creates its cache keys using the requested
fully-qualified URL -- e.g.,
-``"http://www.example.com/stories/2005/?order_by=author"``. This means every
+``"https://www.example.com/stories/2005/?order_by=author"``. This means every
request to that URL will use the same cached version, regardless of user-agent
differences such as cookies or language preferences. However, if this page
produces different content based on some difference in request headers -- such
diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt
index ad4e027ef5..978a35e87f 100644
--- a/docs/topics/db/transactions.txt
+++ b/docs/topics/db/transactions.txt
@@ -592,7 +592,7 @@ function in autocommit mode: statements will be executed and committed as soon
as they're called. If your MySQL setup *does* support transactions, Django
will handle transactions as explained in this document.
-.. _information on MySQL transactions: http://dev.mysql.com/doc/refman/5.6/en/sql-syntax-transactions.html
+.. _information on MySQL transactions: https://dev.mysql.com/doc/refman/5.6/en/sql-syntax-transactions.html
Handling exceptions within PostgreSQL transactions
--------------------------------------------------
diff --git a/docs/topics/http/_images/middleware.graffle b/docs/topics/http/_images/middleware.graffle
index 4aa85f7611..cdefd4b810 100644
--- a/docs/topics/http/_images/middleware.graffle
+++ b/docs/topics/http/_images/middleware.graffle
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ActiveLayerIndex</key>
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index da9e5ef567..89e37bb4b7 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -165,7 +165,7 @@ and the :setting:`SECRET_KEY` setting.
Finally, the size of a cookie can have an impact on the `speed of your site`_.
-.. _`common limit of 4096 bytes`: http://tools.ietf.org/html/rfc2965#section-5.3
+.. _`common limit of 4096 bytes`: https://tools.ietf.org/html/rfc2965#section-5.3
.. _`replay attacks`: https://en.wikipedia.org/wiki/Replay_attack
.. _`speed of your site`: http://yuiblog.com/blog/2007/03/01/performance-research-part-3/
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index ab8c237ee9..58bffcf64a 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -261,7 +261,7 @@ You can use the :func:`redirect` function in a number of ways.
def my_view(request):
...
- return redirect('http://example.com/')
+ return redirect('https://example.com/')
By default, :func:`redirect` returns a temporary redirect. All of the above
forms accept a ``permanent`` argument; if set to ``True`` a permanent redirect
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index b00c3d462c..b5f108e309 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -179,10 +179,10 @@ What the URLconf searches against
The URLconf searches against the requested URL, as a normal Python string. This
does not include GET or POST parameters, or the domain name.
-For example, in a request to ``http://www.example.com/myapp/``, the URLconf
+For example, in a request to ``https://www.example.com/myapp/``, the URLconf
will look for ``myapp/``.
-In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look
+In a request to ``https://www.example.com/myapp/?page=3``, the URLconf will look
for ``myapp/``.
The URLconf doesn't look at the request method. In other words, all request
diff --git a/docs/topics/i18n/index.txt b/docs/topics/i18n/index.txt
index b860b2e7fd..366ff97bb9 100644
--- a/docs/topics/i18n/index.txt
+++ b/docs/topics/i18n/index.txt
@@ -49,7 +49,7 @@ here's a simplified definition:
More details can be found in the `W3C Web Internationalization FAQ`_, the `Wikipedia article`_ or the `GNU gettext documentation`_.
.. _W3C Web Internationalization FAQ: http://www.w3.org/International/questions/qa-i18n
-.. _GNU gettext documentation: http://www.gnu.org/software/gettext/manual/gettext.html#Concepts
+.. _GNU gettext documentation: https://www.gnu.org/software/gettext/manual/gettext.html#Concepts
.. _Wikipedia article: https://en.wikipedia.org/wiki/Internationalization_and_localization
.. warning::
diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
index 88dfc131c1..681f0aa73a 100644
--- a/docs/topics/i18n/translation.txt
+++ b/docs/topics/i18n/translation.txt
@@ -182,7 +182,7 @@ translation string and the number of objects.
This function is useful when you need your Django application to be localizable
to languages where the number and complexity of `plural forms
-<http://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms>`_ is
+<https://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms>`_ is
greater than the two forms used in English ('object' for the singular and
'objects' for all the cases where ``count`` is different from one, irrespective
of its value.)
diff --git a/docs/topics/install.txt b/docs/topics/install.txt
index d560317808..02f34fe02d 100644
--- a/docs/topics/install.txt
+++ b/docs/topics/install.txt
@@ -58,7 +58,7 @@ deployment options. One is :doc:`uWSGI </howto/deployment/wsgi/uwsgi>`; it works
very well with `nginx`_. Additionally, Django follows the WSGI spec
(:pep:`3333`), which allows it to run on a variety of server platforms.
-.. _Apache: http://httpd.apache.org/
+.. _Apache: https://httpd.apache.org/
.. _nginx: http://nginx.org/
.. _mod_wsgi: http://www.modwsgi.org/
@@ -116,9 +116,9 @@ If you're using Django's :doc:`testing framework</topics/testing/index>` to test
database queries, Django will need permission to create a test database.
.. _PostgreSQL: http://www.postgresql.org/
-.. _MySQL: http://www.mysql.com/
+.. _MySQL: https://www.mysql.com/
.. _psycopg2: http://initd.org/psycopg/
-.. _SQLite: http://www.sqlite.org/
+.. _SQLite: https://www.sqlite.org/
.. _cx_Oracle: http://cx-oracle.sourceforge.net/
.. _Oracle: http://www.oracle.com/
@@ -179,7 +179,7 @@ This is the recommended way to install Django.
.. _pip: https://pip.pypa.io/
.. _virtualenv: http://www.virtualenv.org/
-.. _virtualenvwrapper: http://virtualenvwrapper.readthedocs.org/en/latest/
+.. _virtualenvwrapper: https://virtualenvwrapper.readthedocs.org/en/latest/
.. _standalone pip installer: https://pip.pypa.io/en/latest/installing.html#install-pip
Installing a distribution-specific package
diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt
index dfe19c0a37..bac69d785a 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://pythonhosted.org/six/
+.. _six: https://pythonhosted.org/six/
This document is primarily targeted at authors of pluggable applications
who want to support both Python 2 and 3. It also describes guidelines that
diff --git a/docs/topics/security.txt b/docs/topics/security.txt
index 99f16078d0..1f2f0f199e 100644
--- a/docs/topics/security.txt
+++ b/docs/topics/security.txt
@@ -272,4 +272,4 @@ security protection of the Web server, operating system and other components.
* It is a good idea to limit the accessibility of your caching system and
database using a firewall.
-.. _LimitRequestBody: http://httpd.apache.org/docs/2.4/mod/core.html#limitrequestbody
+.. _LimitRequestBody: https://httpd.apache.org/docs/2.4/mod/core.html#limitrequestbody
diff --git a/docs/topics/signing.txt b/docs/topics/signing.txt
index 18d963c41b..a6971f219f 100644
--- a/docs/topics/signing.txt
+++ b/docs/topics/signing.txt
@@ -76,7 +76,7 @@ generate signatures. You can use a different secret by passing it to the
Returns a signer which uses ``key`` to generate signatures and ``sep`` to
separate values. ``sep`` cannot be in the `URL safe base64 alphabet
- <http://tools.ietf.org/html/rfc4648#section-5>`_. This alphabet contains
+ <https://tools.ietf.org/html/rfc4648#section-5>`_. This alphabet contains
alphanumeric characters, hyphens, and underscores.
Using the salt argument
diff --git a/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle b/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle
index c0edad721d..e66c71d63e 100644
--- a/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle
+++ b/docs/topics/testing/_images/django_unittest_classes_hierarchy.graffle
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ActiveLayerIndex</key>
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 97bc136a61..11e53a409b 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -73,7 +73,7 @@ Note a few important things about how the test client works:
This is incorrect::
- >>> c.get('http://www.example.com/login/')
+ >>> c.get('https://www.example.com/login/')
The test client is not capable of retrieving Web pages that are not
powered by your Django project. If you need to retrieve other Web pages,
@@ -940,7 +940,7 @@ out the `full reference`_ for more details.
.. _Selenium: http://seleniumhq.org/
.. _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/
+.. _Firefox: https://www.mozilla.com/firefox/
.. note::
@@ -973,7 +973,7 @@ out the `full reference`_ for more details.
use cases. Please refer to the `Selenium FAQ`_ and
`Selenium documentation`_ for more information.
- .. _Selenium FAQ: http://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions#Q:_WebDriver_fails_to_find_elements_/_Does_not_block_on_page_loa
+ .. _Selenium FAQ: https://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions#Q:_WebDriver_fails_to_find_elements_/_Does_not_block_on_page_loa
.. _Selenium documentation: http://seleniumhq.org/docs/04_webdriver_advanced.html#explicit-waits
Test cases features