]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Doc and release note updates.
authorBen Darnell <ben@bendarnell.com>
Mon, 11 Jul 2011 00:13:00 +0000 (17:13 -0700)
committerBen Darnell <ben@bendarnell.com>
Mon, 11 Jul 2011 00:13:00 +0000 (17:13 -0700)
website/sphinx/overview.rst
website/sphinx/releases/next.rst

index 19471dc62e5a714210cdb0de7253cafac182921d..8e71d7f878d2d0e0683d108a1be8a824f955e20a 100644 (file)
@@ -1095,13 +1095,3 @@ See the `appengine example application
 <https://github.com/facebook/tornado/tree/master/demos/appengine>`_ for a
 full-featured AppEngine app built on Tornado.
 
-Caveats and support
-~~~~~~~~~~~~~~~~~~~
-
-Because FriendFeed and other large users of Tornado run `behind
-nginx <#running-tornado-in-production>`_ or Apache proxies, Tornado's
-HTTP server currently does not attempt to handle multi-line headers and
-some types of malformed input.
-
-You can discuss Tornado and report bugs on `the Tornado developer
-mailing list <http://groups.google.com/group/python-tornado>`_.
index cb6883a2ecf1488e7b1a1224dc25c8bd48c8d706..de163e13f8880de335519e5d1ea1fe835f1a1ea3 100644 (file)
@@ -48,6 +48,12 @@ New features
 * To facilitate some advanced multi-process scenarios, ``HTTPServer`` has a
   new method ``add_sockets``, and socket-opening code is available separately
   as `tornado.netutil.bind_sockets`.
+* Windows support has been improved.  Windows is still not an officially
+  supported platform, but the test suite now passes.
+* `~tornado.iostream.IOStream` performance has been improved, especially for
+  small synchronous requests.
+* `~tornado.httpserver.HTTPServer` can now be run on a unix socket as well
+  as TCP.
 
 
 Bug fixes
@@ -60,3 +66,11 @@ Bug fixes
   a Content-Length header
 * `tornado.iostream.IOStream` should now always call the close callback
   instead of the connect callback on a connection error.
+* The ``allow_nonstandard_methods`` flag on HTTP client requests now
+  permits methods other than ``POST`` and ``PUT`` to contain bodies.
+* `tornado.locale.load_translations` now accepts any properly-formatted
+  locale name, not just those in the predefined ``LOCALE_NAMES`` list.
+* Uploading files whose names contain special characters will now work.
+* Cookie values containing special characters are now properly quoted
+  and unquoted.
+* Multi-line headers are now supported.