]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Convert readthedocs link for their .org -> .io migration for hosted projects 1731/head
authorAdam Chainz <adam@adamj.eu>
Sun, 29 May 2016 14:04:33 +0000 (15:04 +0100)
committerAdam Chainz <adam@adamj.eu>
Sun, 29 May 2016 14:04:33 +0000 (15:04 +0100)
As per their email ‘Changes to project subdomains’:

> Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard.

Test Plan: Manually visited all the links I’ve modified.

docs/guide/coroutines.rst
docs/releases/v4.2.0.rst
tox.ini

index 9c5745dc50eb34f391d0f2c76bd2d03ce9322093..2fefcb4b9d47358c9bb11d448773a099ade43789 100644 (file)
@@ -242,7 +242,7 @@ Looping is tricky with coroutines since there is no way in Python
 to ``yield`` on every iteration of a ``for`` or ``while`` loop and
 capture the result of the yield.  Instead, you'll need to separate
 the loop condition from accessing the results, as in this example
-from `Motor <http://motor.readthedocs.org/en/stable/>`_::
+from `Motor <https://motor.readthedocs.io/en/stable/>`_::
 
     import motor
     db = motor.MotorClient().test
index 10f475c0a4fd121f9290b33ec7310b1326844d65..d94843796b1f886cdfb5a4a88c83dba8e89a4349 100644 (file)
@@ -23,7 +23,7 @@ New modules: `tornado.locks` and `tornado.queues`
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 These modules provide classes for coordinating coroutines, merged from
-`Toro <http://toro.readthedocs.org>`_.
+`Toro <https://toro.readthedocs.io>`_.
 
 To port your code from Toro's queues to Tornado 4.2, import `.Queue`,
 `.PriorityQueue`, or `.LifoQueue` from `tornado.queues` instead of from
diff --git a/tox.ini b/tox.ini
index 6f74a745430f3860374461863afe19cfa2903916..6f8ba76708a3e2f67c901500e7446e3fad5584fe 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,4 +1,4 @@
-# Tox (http://tox.readthedocs.org) is a tool for running tests
+# Tox (https://tox.readthedocs.io) is a tool for running tests
 # in multiple virtualenvs.  This configuration file will run the tornado
 # test suite on all supported python versions.  To use it, "pip install tox"
 # and then run "tox" from this directory.