diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-01-07 14:28:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-07 14:28:41 +0100 |
| commit | 7c81b28ebcaebbc2e5bbca9a73427d81166ce3dc (patch) | |
| tree | 7f2c5870c682c2cdce61a571049d84ae2f403fe2 /docs/topics | |
| parent | 762bd34c3699875d315d478b3efb090155beb743 (diff) | |
Updated various links in docs to use HTTPS.
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/cache.txt | 4 | ||||
| -rw-r--r-- | docs/topics/db/search.txt | 2 | ||||
| -rw-r--r-- | docs/topics/http/urls.txt | 2 | ||||
| -rw-r--r-- | docs/topics/i18n/index.txt | 2 | ||||
| -rw-r--r-- | docs/topics/i18n/translation.txt | 2 | ||||
| -rw-r--r-- | docs/topics/install.txt | 2 | ||||
| -rw-r--r-- | docs/topics/performance.txt | 10 | ||||
| -rw-r--r-- | docs/topics/serialization.txt | 8 | ||||
| -rw-r--r-- | docs/topics/testing/advanced.txt | 2 | ||||
| -rw-r--r-- | docs/topics/testing/tools.txt | 2 |
10 files changed, 18 insertions, 18 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index 7c72075817..d2cdf793f9 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -68,7 +68,7 @@ to handle high loads at LiveJournal.com and subsequently open-sourced by Danga Interactive. It is used by sites such as Facebook and Wikipedia to reduce database access and dramatically increase site performance. -__ http://memcached.org/ +__ https://memcached.org/ Memcached runs as a daemon and is allotted a specified amount of RAM. All it does is provide a fast interface for adding, retrieving and deleting data in @@ -1248,7 +1248,7 @@ Here are some more examples: The full list of known directives can be found in the `IANA registry`_ (note that not all of them apply to responses). -.. _IANA registry: http://www.iana.org/assignments/http-cache-directives/http-cache-directives.xhtml +.. _IANA registry: https://www.iana.org/assignments/http-cache-directives/http-cache-directives.xhtml If you want to use headers to disable caching altogether, :func:`~django.views.decorators.cache.never_cache` is a view decorator that diff --git a/docs/topics/db/search.txt b/docs/topics/db/search.txt index 3565159ecb..c7e855d4d7 100644 --- a/docs/topics/db/search.txt +++ b/docs/topics/db/search.txt @@ -98,7 +98,7 @@ can then look it up in the database. There are a variety of third-party libraries which are designed to help with this process. .. _Elastic: https://www.elastic.co/ -.. _Solr: http://lucene.apache.org/solr/ +.. _Solr: https://lucene.apache.org/solr/ PostgreSQL support ~~~~~~~~~~~~~~~~~~ diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index a74eb8ce0a..613069327c 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -12,7 +12,7 @@ There's no ``.php`` or ``.cgi`` required, and certainly none of that See `Cool URIs don't change`_, by World Wide Web creator Tim Berners-Lee, for excellent arguments on why URLs should be clean and usable. -.. _Cool URIs don't change: http://www.w3.org/Provider/Style/URI +.. _Cool URIs don't change: https://www.w3.org/Provider/Style/URI Overview ======== diff --git a/docs/topics/i18n/index.txt b/docs/topics/i18n/index.txt index 366ff97bb9..9b169f41e1 100644 --- a/docs/topics/i18n/index.txt +++ b/docs/topics/i18n/index.txt @@ -48,7 +48,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 +.. _W3C Web Internationalization FAQ: https://www.w3.org/International/questions/qa-i18n .. _GNU gettext documentation: https://www.gnu.org/software/gettext/manual/gettext.html#Concepts .. _Wikipedia article: https://en.wikipedia.org/wiki/Internationalization_and_localization diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt index 0c5121b79c..ee4d9e6e9f 100644 --- a/docs/topics/i18n/translation.txt +++ b/docs/topics/i18n/translation.txt @@ -1686,7 +1686,7 @@ This is only needed for people who either want to extract message IDs or compile message files (``.po``). Translation work itself just involves editing existing files of this type, but if you want to create your own message files, or want to test or compile a changed message file, download `a precompiled binary -installer <http://mlocati.github.io/gettext-iconv-windows/>`_. +installer <https://mlocati.github.io/articles/gettext-iconv-windows.html>`_. You may also use ``gettext`` binaries you have obtained elsewhere, so long as the ``xgettext --version`` command works properly. Do not attempt to use Django diff --git a/docs/topics/install.txt b/docs/topics/install.txt index ab6b41a3ee..b2898bf241 100644 --- a/docs/topics/install.txt +++ b/docs/topics/install.txt @@ -59,7 +59,7 @@ very well with `nginx`_. Additionally, Django follows the WSGI spec (:pep:`3333`), which allows it to run on a variety of server platforms. .. _Apache: https://httpd.apache.org/ -.. _nginx: http://nginx.org/ +.. _nginx: https://nginx.org/ .. _mod_wsgi: http://www.modwsgi.org/ .. _database-installation: diff --git a/docs/topics/performance.txt b/docs/topics/performance.txt index 74794415b7..ebc192c0ab 100644 --- a/docs/topics/performance.txt +++ b/docs/topics/performance.txt @@ -410,15 +410,15 @@ performance gains for your application to outweigh the potential risks. With these caveats in mind, you should be aware of: -`PyPy <http://pypy.org/>`_ -~~~~~~~~~~~~~~~~~~~~~~~~~~ +`PyPy <https://pypy.org/>`_ +~~~~~~~~~~~~~~~~~~~~~~~~~~~ -`PyPy <http://pypy.org/>`_ is an implementation of Python in Python itself (the -'standard' Python implementation is in C). PyPy can offer substantial +`PyPy <https://pypy.org/>`_ is an implementation of Python in Python itself +(the 'standard' Python implementation is in C). PyPy can offer substantial performance gains, typically for heavyweight applications. A key aim of the PyPy project is `compatibility -<http://pypy.org/compat.html>`_ with existing Python APIs and libraries. +<https://pypy.org/compat.html>`_ with existing Python APIs and libraries. Django is compatible, but you will need to check the compatibility of other libraries you rely on. diff --git a/docs/topics/serialization.txt b/docs/topics/serialization.txt index 6ab1bdf0bf..58a00bec20 100644 --- a/docs/topics/serialization.txt +++ b/docs/topics/serialization.txt @@ -164,8 +164,8 @@ Identifier Information serializer is only available if PyYAML_ is installed. ========== ============================================================== -.. _json: http://json.org/ -.. _PyYAML: http://www.pyyaml.org/ +.. _json: https://json.org/ +.. _PyYAML: https://www.pyyaml.org/ XML --- @@ -220,7 +220,7 @@ This example links the given user with the permission models with PKs 46 and 47. accepted in the XML 1.0 standard, the serialization will fail with a :exc:`ValueError` exception. Read also the W3C's explanation of `HTML, XHTML, XML and Control Codes - <http://www.w3.org/International/questions/qa-controls>`_. + <https://www.w3.org/International/questions/qa-controls>`_. .. _serialization-formats-json: @@ -300,7 +300,7 @@ The JSON serializer uses ``DjangoJSONEncoder`` for encoding. A subclass of :class:`~decimal.Decimal`, ``Promise`` (``django.utils.functional.lazy()`` objects), :class:`~uuid.UUID` A string representation of the object. -.. _ecma-262: http://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.15 +.. _ecma-262: https://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.15 YAML ---- diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt index f4c875b1c6..026b443b72 100644 --- a/docs/topics/testing/advanced.txt +++ b/docs/topics/testing/advanced.txt @@ -715,5 +715,5 @@ listed here because of the ``source`` flag passed to the previous command. For more options like annotated HTML listings detailing missed lines, see the `coverage.py`_ docs. -.. _coverage.py: http://coverage.readthedocs.io/ +.. _coverage.py: https://coverage.readthedocs.io/ .. _install coverage.py: https://pypi.python.org/pypi/coverage diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index ea80b45479..d349efe7a0 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -161,7 +161,7 @@ Use the ``django.test.Client`` class to make requests. HTTP request from the browser to the server should be passed as ``HTTP_HOST``. - .. _CGI: http://www.w3.org/CGI/ + .. _CGI: https://www.w3.org/CGI/ If you already have the GET arguments in URL-encoded form, you can use that encoding instead of using the data argument. For example, |
