From e41463076a83a7d959a707b72071bfd9149c64ee Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 10 Jul 2011 17:13:00 -0700 Subject: [PATCH] Doc and release note updates. --- website/sphinx/overview.rst | 10 ---------- website/sphinx/releases/next.rst | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/website/sphinx/overview.rst b/website/sphinx/overview.rst index 19471dc62e..8e71d7f878 100644 --- a/website/sphinx/overview.rst +++ b/website/sphinx/overview.rst @@ -1095,13 +1095,3 @@ See the `appengine example application `_ 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 `_. diff --git a/website/sphinx/releases/next.rst b/website/sphinx/releases/next.rst index cb6883a2ec..de163e13f8 100644 --- a/website/sphinx/releases/next.rst +++ b/website/sphinx/releases/next.rst @@ -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.