diff options
| author | Claude Paroz <claude@2xlibre.net> | 2015-08-08 12:02:32 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2015-08-08 12:02:32 +0200 |
| commit | 64982cc2fb13ebc45982c64e25fdb7865e6d2499 (patch) | |
| tree | 06e65f4201fc67665773350457dfa8ee681b22b5 /docs/topics | |
| parent | 18f3d4c1bdb4039b13e0b9445553561651dbfa8f (diff) | |
Updated Wikipedia links to use https
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/auth/passwords.txt | 6 | ||||
| -rw-r--r-- | docs/topics/class-based-views/mixins.txt | 2 | ||||
| -rw-r--r-- | docs/topics/db/optimization.txt | 2 | ||||
| -rw-r--r-- | docs/topics/db/sql.txt | 2 | ||||
| -rw-r--r-- | docs/topics/db/tablespaces.txt | 2 | ||||
| -rw-r--r-- | docs/topics/db/transactions.txt | 2 | ||||
| -rw-r--r-- | docs/topics/http/sessions.txt | 2 | ||||
| -rw-r--r-- | docs/topics/i18n/index.txt | 2 | ||||
| -rw-r--r-- | docs/topics/i18n/timezones.txt | 2 | ||||
| -rw-r--r-- | docs/topics/security.txt | 2 | ||||
| -rw-r--r-- | docs/topics/testing/tools.txt | 2 |
11 files changed, 13 insertions, 13 deletions
diff --git a/docs/topics/auth/passwords.txt b/docs/topics/auth/passwords.txt index 7d230c4a70..b4362ed3aa 100644 --- a/docs/topics/auth/passwords.txt +++ b/docs/topics/auth/passwords.txt @@ -194,10 +194,10 @@ sure never to *remove* entries from this list. If you do, users using unmentioned algorithms won't be able to upgrade. Passwords will be upgraded when changing the PBKDF2 iteration count. -.. _sha1: http://en.wikipedia.org/wiki/SHA1 -.. _pbkdf2: http://en.wikipedia.org/wiki/PBKDF2 +.. _sha1: https://en.wikipedia.org/wiki/SHA1 +.. _pbkdf2: https://en.wikipedia.org/wiki/PBKDF2 .. _nist: http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf -.. _bcrypt: http://en.wikipedia.org/wiki/Bcrypt +.. _bcrypt: https://en.wikipedia.org/wiki/Bcrypt .. _`bcrypt library`: https://pypi.python.org/pypi/bcrypt/ diff --git a/docs/topics/class-based-views/mixins.txt b/docs/topics/class-based-views/mixins.txt index 4bd9251e1d..c8ad7ec335 100644 --- a/docs/topics/class-based-views/mixins.txt +++ b/docs/topics/class-based-views/mixins.txt @@ -421,7 +421,7 @@ that we're heavily invested in `REST`_, so we want to use the same URL for displaying the author as for capturing the message from the user. Let's rewrite our ``AuthorDetailView`` to do that. -.. _REST: http://en.wikipedia.org/wiki/Representational_state_transfer +.. _REST: https://en.wikipedia.org/wiki/Representational_state_transfer We'll keep the ``GET`` handling from :class:`DetailView`, although we'll have to add a :class:`~django.forms.Form` into the context data so we can 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 diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt index f21ca33f7f..36c504ba40 100644 --- a/docs/topics/http/sessions.txt +++ b/docs/topics/http/sessions.txt @@ -166,7 +166,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 -.. _`replay attacks`: http://en.wikipedia.org/wiki/Replay_attack +.. _`replay attacks`: https://en.wikipedia.org/wiki/Replay_attack .. _`speed of your site`: http://yuiblog.com/blog/2007/03/01/performance-research-part-3/ Using sessions in views diff --git a/docs/topics/i18n/index.txt b/docs/topics/i18n/index.txt index 2c25416620..b860b2e7fd 100644 --- a/docs/topics/i18n/index.txt +++ b/docs/topics/i18n/index.txt @@ -50,7 +50,7 @@ More details can be found in the `W3C Web Internationalization FAQ`_, the `Wikip .. _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 -.. _Wikipedia article: http://en.wikipedia.org/wiki/Internationalization_and_localization +.. _Wikipedia article: https://en.wikipedia.org/wiki/Internationalization_and_localization .. warning:: diff --git a/docs/topics/i18n/timezones.txt b/docs/topics/i18n/timezones.txt index 3b7fbff52f..5f1a308876 100644 --- a/docs/topics/i18n/timezones.txt +++ b/docs/topics/i18n/timezones.txt @@ -711,4 +711,4 @@ Usage .. _more examples: http://pytz.sourceforge.net/#example-usage .. _these issues: http://pytz.sourceforge.net/#problems-with-localtime .. _helpers: http://pytz.sourceforge.net/#helpers -.. _tz database: http://en.wikipedia.org/wiki/Tz_database +.. _tz database: https://en.wikipedia.org/wiki/Tz_database diff --git a/docs/topics/security.txt b/docs/topics/security.txt index 3d535bb85e..b080979812 100644 --- a/docs/topics/security.txt +++ b/docs/topics/security.txt @@ -249,7 +249,7 @@ User-uploaded content file extensions for user uploaded files and configure the web server to only serve such files. -.. _same-origin policy: http://en.wikipedia.org/wiki/Same-origin_policy +.. _same-origin policy: https://en.wikipedia.org/wiki/Same-origin_policy .. _additional-security-topics: diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index 1fcb401f20..6a2d7b6ce2 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -849,7 +849,7 @@ least as many as the number of potential parallel processes). For example: Then, during test execution, each new live test server will try every specified port until it finds one that is free and takes it. -.. _continuous integration: http://en.wikipedia.org/wiki/Continuous_integration +.. _continuous integration: https://en.wikipedia.org/wiki/Continuous_integration To demonstrate how to use ``LiveServerTestCase``, let's write a simple Selenium test. First of all, you need to install the `selenium package`_ into your |
