From: Ben Darnell Date: Sat, 17 May 2014 14:19:17 +0000 (-0400) Subject: Point all links to the 'demos' directory to the stable branch instead of master. X-Git-Tag: v4.0.0b1~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a542d88abf05431f9ee0455aebd2357cadfb847;p=thirdparty%2Ftornado.git Point all links to the 'demos' directory to the stable branch instead of master. --- diff --git a/README.rst b/README.rst index 680f15f24..8bf08cef1 100644 --- a/README.rst +++ b/README.rst @@ -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 -`_. +`_. Installation ------------ diff --git a/docs/index.rst b/docs/index.rst index c122c7f85..3f6381578 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 -`_. +`_. Installation ------------ diff --git a/docs/overview.rst b/docs/overview.rst index f54c4e6e9..413c4189e 100644 --- a/docs/overview.rst +++ b/docs/overview.rst @@ -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 `_ for a +for more details. Check out the `Tornado Blog example application `_ 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 -`_, which +`_, which implements an AJAX chat room using `long polling `_. Users of long polling may want to override ``on_connection_close()`` to @@ -1137,5 +1137,5 @@ AppEngine `_ application: wsgiref.handlers.CGIHandler().run(application) See the `appengine example application -`_ for a +`_ for a full-featured AppEngine app built on Tornado. diff --git a/tornado/wsgi.py b/tornado/wsgi.py index 0aed6a59d..a42b5b0ba 100644 --- a/tornado/wsgi.py +++ b/tornado/wsgi.py @@ -166,7 +166,7 @@ class WSGIAdapter(object): server.serve_forever() See the `appengine demo - `_ + `_ for an example of using this module to run a Tornado app on Google App Engine.