summaryrefslogtreecommitdiff
path: root/docs/topics/db
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-08-08 12:02:32 +0200
committerClaude Paroz <claude@2xlibre.net>2015-08-08 12:02:32 +0200
commit64982cc2fb13ebc45982c64e25fdb7865e6d2499 (patch)
tree06e65f4201fc67665773350457dfa8ee681b22b5 /docs/topics/db
parent18f3d4c1bdb4039b13e0b9445553561651dbfa8f (diff)
Updated Wikipedia links to use https
Diffstat (limited to 'docs/topics/db')
-rw-r--r--docs/topics/db/optimization.txt2
-rw-r--r--docs/topics/db/sql.txt2
-rw-r--r--docs/topics/db/tablespaces.txt2
-rw-r--r--docs/topics/db/transactions.txt2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/topics/db/optimization.txt b/docs/topics/db/optimization.txt
index 52238bd714..f8e031657c 100644
--- a/docs/topics/db/optimization.txt
+++ b/docs/topics/db/optimization.txt
@@ -48,7 +48,7 @@ Use standard DB optimization techniques
database-dependent topic that will depend on your particular application.
The overhead of maintaining an index may outweigh any gains in query speed.
-.. _Indexes: http://en.wikipedia.org/wiki/Database_index
+.. _Indexes: https://en.wikipedia.org/wiki/Database_index
* Appropriate use of field types.
diff --git a/docs/topics/db/sql.txt b/docs/topics/db/sql.txt
index 0b39bcda4d..3008bac9b5 100644
--- a/docs/topics/db/sql.txt
+++ b/docs/topics/db/sql.txt
@@ -225,7 +225,7 @@ argument.
fall victim to SQL injection. As long as you remember to always use the
``params`` argument you'll be protected.
-__ http://en.wikipedia.org/wiki/SQL_injection
+__ https://en.wikipedia.org/wiki/SQL_injection
.. _executing-custom-sql:
diff --git a/docs/topics/db/tablespaces.txt b/docs/topics/db/tablespaces.txt
index 115887f512..8c60fd568e 100644
--- a/docs/topics/db/tablespaces.txt
+++ b/docs/topics/db/tablespaces.txt
@@ -5,7 +5,7 @@ Tablespaces
A common paradigm for optimizing performance in database systems is the use of
`tablespaces`_ to organize disk layout.
-.. _`tablespaces`: http://en.wikipedia.org/wiki/Tablespace
+.. _`tablespaces`: https://en.wikipedia.org/wiki/Tablespace
.. warning::
Django does not create the tablespaces for you. Please refer to your
diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt
index b507b3ff67..69baf79d02 100644
--- a/docs/topics/db/transactions.txt
+++ b/docs/topics/db/transactions.txt
@@ -366,7 +366,7 @@ and the :func:`atomic` (or :setting:`ATOMIC_REQUESTS
autocommit is disabled and you are not within an atomic block will result in an
error.
-.. _two-phase commit: http://en.wikipedia.org/wiki/Two-phase_commit_protocol
+.. _two-phase commit: https://en.wikipedia.org/wiki/Two-phase_commit_protocol
.. _psycopg Two-Phase Commit protocol support: http://initd.org/psycopg/docs/usage.html#tpc
.. _optional Two-Phase Commit Extensions in the Python DB-API specification: https://www.python.org/dev/peps/pep-0249/#optional-two-phase-commit-extensions