]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Point all links to the 'demos' directory to the stable branch instead of master.
authorBen Darnell <ben@bendarnell.com>
Sat, 17 May 2014 14:19:17 +0000 (10:19 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 17 May 2014 14:19:17 +0000 (10:19 -0400)
README.rst
docs/index.rst
docs/overview.rst
tornado/wsgi.py

index 680f15f241f9be94b390da3e30ac4ba625893850..8bf08cef129e04af8d34679ae663e5233ee851f3 100644 (file)
@@ -49,7 +49,7 @@ Here is a simple "Hello, world" example web app for Tornado::
 
 This example does not use any of Tornado's asynchronous features; for
 that see this `simple chat room
-<https://github.com/tornadoweb/tornado/tree/master/demos/chat>`_.
+<https://github.com/tornadoweb/tornado/tree/stable/demos/chat>`_.
 
 Installation
 ------------
index c122c7f85f76928e0617383b65a38d36fc788f6e..3f638157843441bc0ad21b56dc99e9473f460245 100644 (file)
@@ -59,7 +59,7 @@ Here is a simple "Hello, world" example web app for Tornado::
 
 This example does not use any of Tornado's asynchronous features; for
 that see this `simple chat room
-<https://github.com/tornadoweb/tornado/tree/master/demos/chat>`_.
+<https://github.com/tornadoweb/tornado/tree/stable/demos/chat>`_.
 
 Installation
 ------------
index f54c4e6e97702012f7373c78780f4930f2279ec1..413c4189e73965ae843bf781eb055b879b79b88f 100644 (file)
@@ -482,7 +482,7 @@ and the user is not logged in, the server will send a ``403`` response.
 
 Tornado comes with built-in support for third-party authentication
 schemes like Google OAuth. See the `tornado.auth`
-for more details. Check out the `Tornado Blog example application <https://github.com/tornadoweb/tornado/tree/master/demos/blog>`_ for a
+for more details. Check out the `Tornado Blog example application <https://github.com/tornadoweb/tornado/tree/stable/demos/blog>`_ for a
 complete example that uses authentication (and stores user data in a
 MySQL database).
 
@@ -904,7 +904,7 @@ and the response is finally flushed to the client with the call to
 
 For a more advanced asynchronous example, take a look at the `chat
 example application
-<https://github.com/tornadoweb/tornado/tree/master/demos/chat>`_, which
+<https://github.com/tornadoweb/tornado/tree/stable/demos/chat>`_, which
 implements an AJAX chat room using `long polling
 <http://en.wikipedia.org/wiki/Push_technology#Long_polling>`_.  Users
 of long polling may want to override ``on_connection_close()`` to
@@ -1137,5 +1137,5 @@ AppEngine <http://code.google.com/appengine/>`_ application:
         wsgiref.handlers.CGIHandler().run(application)
 
 See the `appengine example application
-<https://github.com/tornadoweb/tornado/tree/master/demos/appengine>`_ for a
+<https://github.com/tornadoweb/tornado/tree/stable/demos/appengine>`_ for a
 full-featured AppEngine app built on Tornado.
index 0aed6a59da01f1b0ae3f79847cfacea675bb92a3..a42b5b0bae52c3236afc96005400ad9b9a325dea 100644 (file)
@@ -166,7 +166,7 @@ class WSGIAdapter(object):
             server.serve_forever()
 
     See the `appengine demo
-    <https://github.com/tornadoweb/tornado/tree/master/demos/appengine>`_
+    <https://github.com/tornadoweb/tornado/tree/stable/demos/appengine>`_
     for an example of using this module to run a Tornado app on Google
     App Engine.