]>
git.ipfire.org Git - thirdparty/tornado.git/log
Tom Arnfeld [Wed, 23 Jul 2014 17:27:03 +0000 (18:27 +0100)]
Fixed a bug with keep-alive chunked requests
If you make a POST request with 'Connection: Keep-Alive' and use chunked body encoding, tornado will not interpret that as a connection that can be kept alive, and will close the connection.
Tom Arnfeld [Wed, 23 Jul 2014 17:26:50 +0000 (18:26 +0100)]
Added a regression test for keep-alive chunked POST
Ben Darnell [Sat, 19 Jul 2014 15:18:24 +0000 (11:18 -0400)]
Add an ubuntu 14.04 vagrant config; drop 12.10.
Ben Darnell [Sat, 19 Jul 2014 15:13:54 +0000 (11:13 -0400)]
Refactor Resolver error tests to mock getaddrinfo.
This appears to be necessary in a vagrant ubuntu/trusty64 VM,
where the resolver takes over 5 seconds before returning an error.
Ben Darnell [Sat, 19 Jul 2014 02:09:43 +0000 (22:09 -0400)]
Merge branch 'branch4.0'
Ben Darnell [Sat, 19 Jul 2014 02:09:11 +0000 (22:09 -0400)]
Merge pull request #1120 from Mouchh/patch-1
Typing error
Cyril Mouchel [Fri, 18 Jul 2014 17:21:35 +0000 (19:21 +0200)]
Typing error
Ben Darnell [Fri, 18 Jul 2014 05:12:52 +0000 (01:12 -0400)]
Disable test_post_307 due to a libcurl bug that manifests with TwistedIOLoop on linux.
Ben Darnell [Fri, 18 Jul 2014 03:33:34 +0000 (23:33 -0400)]
Add missing return statements to call_at and call_later.
Closes #1119.
Ben Darnell [Fri, 18 Jul 2014 03:26:12 +0000 (23:26 -0400)]
Add a default value to a getaddr() call in HTTPServerRequest.
Closes #1118.
Ben Darnell [Fri, 18 Jul 2014 03:17:32 +0000 (23:17 -0400)]
Add test for curl_httpclient ioctl change.
Ben Darnell [Thu, 17 Jul 2014 00:23:42 +0000 (20:23 -0400)]
Fall back to pure-python mode on any exception during the build.
Stop the futile process of trying to enumerate which kinds of exceptions
distutils may throw (the latest potential addition: ValueError).
Closes #1115.
Ben Darnell [Thu, 17 Jul 2014 00:16:38 +0000 (20:16 -0400)]
Merge pull request #1116 from homm/curl-put-redirects
make IOCMD_RESTARTREAD available for PUT requests
homm [Wed, 16 Jul 2014 13:43:12 +0000 (17:43 +0400)]
make IOCMD_RESTARTREAD available for PUT requests
Ben Darnell [Wed, 16 Jul 2014 04:29:27 +0000 (00:29 -0400)]
Read config file in binary mode instead of try/except TypeError.
Ben Darnell [Wed, 16 Jul 2014 04:19:10 +0000 (00:19 -0400)]
Merge pull request #1086 from likang/master
Make options.parse_config_file supporting custom encoding
Ben Darnell [Wed, 16 Jul 2014 04:06:54 +0000 (00:06 -0400)]
Merge pull request #1102 from pekrau/master
Add 'reason' kwarg to send_error.
Ben Darnell [Wed, 16 Jul 2014 02:54:16 +0000 (22:54 -0400)]
Merge pull request #1109 from kmike/bytesio
Removed dead "io.BytesIO vs cStringIO.StringIO" code
Ben Darnell [Wed, 16 Jul 2014 02:47:50 +0000 (22:47 -0400)]
Merge branch 'branch4.0'
Ben Darnell [Wed, 16 Jul 2014 02:47:21 +0000 (22:47 -0400)]
Fix example in docs.
Ben Darnell [Tue, 15 Jul 2014 13:43:32 +0000 (09:43 -0400)]
Bump master branch version number
Ben Darnell [Tue, 15 Jul 2014 12:42:27 +0000 (08:42 -0400)]
Set version number to 4.0
Ben Darnell [Tue, 15 Jul 2014 12:41:54 +0000 (08:41 -0400)]
Move next.rst to 4.0.0.rst
Mikhail Korobov [Tue, 15 Jul 2014 10:50:21 +0000 (16:50 +0600)]
remove dead code
io.BytesIO is available since Python 2.6; Tornado doesn't support Python 2.5, so there won't be ImportError.
Ben Darnell [Tue, 15 Jul 2014 01:18:42 +0000 (21:18 -0400)]
Drop the 3.2-era "upgrade notes" from the homepage.
The need to install dependencies is well-established by now.
Ben Darnell [Tue, 15 Jul 2014 01:14:01 +0000 (21:14 -0400)]
Reorganize top-level doc navigation.
Ben Darnell [Tue, 15 Jul 2014 01:05:33 +0000 (21:05 -0400)]
Flatten doc navigation
sphinx_rtd_theme's sidebar will not go deeper than two levels
in the table of contents, so remove the extra index->documentation
indirection.
Ben Darnell [Mon, 14 Jul 2014 14:05:11 +0000 (10:05 -0400)]
Add a Highlights section to the 4.0 release notes.
Ben Darnell [Sun, 13 Jul 2014 22:19:29 +0000 (18:19 -0400)]
Update gen docs: deemphasize Task, Callback, and Wait.
Ben Darnell [Sun, 13 Jul 2014 03:07:01 +0000 (23:07 -0400)]
Install sphinx_rtd_theme when running sphinx tests.
Ben Darnell [Sun, 13 Jul 2014 02:57:16 +0000 (22:57 -0400)]
Use sphinx_rtd_theme instead of our lightly-customized version of sphinx default.
The main benefit of this change is the responsive layout for phones and
tablets.
Ben Darnell [Sun, 13 Jul 2014 02:40:32 +0000 (22:40 -0400)]
Merge pull request #1107 from ajdavis/patch-3
Properly restore ASYNC_TEST_TIMEOUT after test.
Ben Darnell [Sun, 13 Jul 2014 02:39:31 +0000 (22:39 -0400)]
Merge pull request #1106 from ajdavis/patch-2
Bugfix in asynchronous_fetch example code.
Ben Darnell [Sun, 13 Jul 2014 02:39:15 +0000 (22:39 -0400)]
Merge pull request #1105 from ajdavis/patch-1
Complete the Motor example.
A. Jesse Jiryu Davis [Sat, 12 Jul 2014 18:25:13 +0000 (14:25 -0400)]
Properly restore ASYNC_TEST_TIMEOUT after test.
A. Jesse Jiryu Davis [Fri, 11 Jul 2014 17:05:18 +0000 (13:05 -0400)]
Bugfix in asynchronous_fetch example code.
A. Jesse Jiryu Davis [Fri, 11 Jul 2014 17:03:16 +0000 (13:03 -0400)]
Complete the Motor example.
Ben Darnell [Thu, 10 Jul 2014 18:24:30 +0000 (14:24 -0400)]
Merge pull request #1101 from tioover/master
typo
Per Kraulis [Thu, 10 Jul 2014 13:47:28 +0000 (15:47 +0200)]
Fixes bug disallowing custom-made reason phrase
The send_error method is, I believe, supposed to allow sending an HTTP reason phrase that is not one of the standard ones. This change corrects an apparent bug which made this impossible. With the correction, specifying an 'error' keyword argument to send_error actually sends the specified
reason phrase to the client.
Tengfei Tsui [Thu, 10 Jul 2014 09:15:43 +0000 (17:15 +0800)]
typo
Ben Darnell [Wed, 9 Jul 2014 02:50:05 +0000 (22:50 -0400)]
Set version number to 4.0b3.
Ben Darnell [Wed, 9 Jul 2014 02:49:30 +0000 (22:49 -0400)]
Add XSRF change to the release notes.
Ben Darnell [Wed, 9 Jul 2014 02:27:35 +0000 (22:27 -0400)]
Merge remote-tracking branch 'tictail/branch3.2'
Closes #1097
William Tisäter [Tue, 8 Jul 2014 13:52:25 +0000 (15:52 +0200)]
Catch `binascii.a2b_hex` errors on Python 3
William Tisäter [Tue, 8 Jul 2014 07:07:48 +0000 (09:07 +0200)]
Don't raise when failing to hex decode XSRF v1
William Tisäter [Tue, 8 Jul 2014 07:07:18 +0000 (09:07 +0200)]
Turn short and hex XSRF tests into success tests
William Tisäter [Mon, 7 Jul 2014 21:29:44 +0000 (23:29 +0200)]
Remove length requirement from v1 XSRF tokens
Ben Darnell [Sun, 6 Jul 2014 15:10:09 +0000 (11:10 -0400)]
Fix outdated variable name in docs.
Ben Darnell [Sat, 5 Jul 2014 22:49:36 +0000 (18:49 -0400)]
Add a test for exception in websocket callbacks.
Ben Darnell [Sat, 5 Jul 2014 21:55:44 +0000 (17:55 -0400)]
Rewrite chatdemo to use a coroutine instead of callbacks.
Ben Darnell [Fri, 4 Jul 2014 20:04:09 +0000 (16:04 -0400)]
Merge branch 'guide'
* guide:
Expand and rewrite the guide docs.
Split overview.rst into separate files.
Ben Darnell [Mon, 30 Jun 2014 16:59:58 +0000 (12:59 -0400)]
Expand and rewrite the guide docs.
Ben Darnell [Thu, 3 Jul 2014 02:01:22 +0000 (22:01 -0400)]
Disable twisted tests on pypy on travis-ci since they seem to be flaky.
They were already disabled in tox.ini.
Ben Darnell [Thu, 3 Jul 2014 02:00:14 +0000 (22:00 -0400)]
Add tests for both binary and unicode messages in websockets.
Ben Darnell [Thu, 3 Jul 2014 01:37:19 +0000 (21:37 -0400)]
Merge branch 'master' of github.com:tornadoweb/tornado
Ben Darnell [Thu, 3 Jul 2014 01:37:11 +0000 (21:37 -0400)]
Merge pull request #1091 from xose/patch-1
Fix binary websocket connections
José Martínez [Wed, 2 Jul 2014 21:11:51 +0000 (23:11 +0200)]
Fix binary websocket connections
Ben Darnell [Tue, 1 Jul 2014 12:37:02 +0000 (08:37 -0400)]
Set version number to 4.0b2
Ben Darnell [Tue, 1 Jul 2014 03:28:10 +0000 (23:28 -0400)]
Rename the new-in-4.0 gzip parameter to HTTPServer.
All the gzip-related parameters are now explicit about whether
they compress or decompress and whether they apply to requests or
responses. For all the parameters that existed prior to 4.0
the old names are accepted as well, but for the new ones in 4.0
we don't need to worry about backwards-compatibility.
This is motivated by the potential confusion around the use of
gzip as a parameter to the Application constructor to indicate
compression of responses and to the HTTPServer constructor to
indicate decompression of requests.
Ben Darnell [Sat, 28 Jun 2014 22:40:55 +0000 (15:40 -0700)]
Split overview.rst into separate files.
likang [Thu, 26 Jun 2014 02:41:47 +0000 (10:41 +0800)]
Assume all config files are encoded in UTF-8
Ben Darnell [Thu, 26 Jun 2014 02:00:35 +0000 (19:00 -0700)]
Merge pull request #1084 from ukoethe/master
check for errno.WSA* on 64-bit Windows (fixes #1052)
likang [Wed, 25 Jun 2014 07:31:17 +0000 (15:31 +0800)]
Make options.parse_config_file supporting custom encoding
Ben Darnell [Wed, 25 Jun 2014 01:58:35 +0000 (18:58 -0700)]
Add the start of a new user guide.
Ullrich Koethe [Mon, 23 Jun 2014 12:40:40 +0000 (14:40 +0200)]
check for errno.WSA* on 64-bit Windows (fixes #1052)
Ben Darnell [Sat, 21 Jun 2014 20:02:18 +0000 (16:02 -0400)]
Set version number to 4.0b1
Ben Darnell [Sat, 21 Jun 2014 18:20:15 +0000 (14:20 -0400)]
Update docs for deprecations and removals.
Ben Darnell [Sat, 21 Jun 2014 17:50:56 +0000 (13:50 -0400)]
Drop support for the draft76 version of WebSockets.
Browsers that only support draft76 are now less common than those
that do not support websockets at all, so applications should
use their non-websocket workarounds for these browsers.
Ben Darnell [Sat, 21 Jun 2014 17:37:59 +0000 (13:37 -0400)]
Edit comments to discourage creation of new OutputTransforms.
Ben Darnell [Sat, 21 Jun 2014 18:05:49 +0000 (14:05 -0400)]
Update tests after the removal of get_error_html.
Ben Darnell [Sat, 21 Jun 2014 17:34:03 +0000 (13:34 -0400)]
Increase the test timeout on travis.
Ben Darnell [Sat, 21 Jun 2014 17:32:44 +0000 (13:32 -0400)]
Remove support for the old get_error_html function.
Ben Darnell [Sat, 21 Jun 2014 17:05:57 +0000 (13:05 -0400)]
Remove workarounds for ancient versions of libcurl.
Ben Darnell [Sat, 21 Jun 2014 16:47:40 +0000 (12:47 -0400)]
Add pypy3 to tox.ini.
Ben Darnell [Fri, 20 Jun 2014 04:37:11 +0000 (00:37 -0400)]
Release note updates.
Ben Darnell [Thu, 19 Jun 2014 13:28:45 +0000 (09:28 -0400)]
Add new exception tornado.web.Finish to quietly end a request.
This allows error pages to be generated inline with the main code
instead of in write_error and is friendlier to generating error pages
from library code.
Closes #1064.
Ben Darnell [Wed, 18 Jun 2014 14:29:28 +0000 (10:29 -0400)]
Introduce IOLoop.call_later and call_at.
call_later is a less-verbose alternative to add_timeout with a
timedelta; call_at exists for symmetry. Both are named after
methods on the asyncio event loop, although there are small
variations (we support both args and kwargs while asyncio only supports
args; we use remove_timeout(handle) instead of handle.cancel()).
Closes #1049.
Ben Darnell [Tue, 17 Jun 2014 14:09:15 +0000 (10:09 -0400)]
Fix a leak in AsyncHTTPClient shutdown.
Clients created without force_instance=True were never getting
GC'd because we were using the wrong reference for the async_clients
instance cache.
To guard against future errors, failure to remove an instance
from the cache when we expected to now raises an error instead of
failing silently.
Closes #1079.
Ben Darnell [Mon, 16 Jun 2014 03:49:39 +0000 (23:49 -0400)]
Introduce IOLoop.spawn_callback.
This makes it easier and more discoverable to run a callback without
stack_context.
Closes #867.
Ben Darnell [Mon, 16 Jun 2014 03:39:00 +0000 (23:39 -0400)]
Rename HTTP{In,Out}putException to HTTP{In,Out}putError.
This follows the standard python naming convention for exceptions.
Ben Darnell [Mon, 16 Jun 2014 03:35:02 +0000 (23:35 -0400)]
Relax restrictions on HTTP methods in WebSocketHandler.
Methods like set_status are now disallowed once the websocket handshake
has begun, but may be used before then. This applies to application
overrides of prepare() and to WebSocketHandler.get's internal error
handling.
Closes #1065.
Ben Darnell [Sun, 15 Jun 2014 17:36:10 +0000 (13:36 -0400)]
Document that IOStream.connect blocks on DNS and recommend TCPClient instead.
Closes #861.
Ben Darnell [Sun, 15 Jun 2014 16:39:38 +0000 (12:39 -0400)]
Add clearer message for fetch() on closed AsyncHTTPClient.
Closes #866.
Ben Darnell [Sun, 15 Jun 2014 16:36:28 +0000 (12:36 -0400)]
Document AsyncHTTPClient's defaults argument.
Closes #762.
Ben Darnell [Sun, 15 Jun 2014 16:11:22 +0000 (12:11 -0400)]
Improve callback scheduling.
Collect all timeouts to be run before running any of them; this
prevents starvation when a slow callback reschedules itself.
Call time() again before setting poll_timeout to avoid scheduling
anomalies with slow callbacks.
Closes #947.
Ben Darnell [Sun, 15 Jun 2014 15:52:34 +0000 (11:52 -0400)]
Remove async_callback wrapper functions, which have been obsolete since 1.1.
Closes #283.
Ben Darnell [Sun, 15 Jun 2014 15:33:46 +0000 (11:33 -0400)]
Add ETIMEDOUT to the list of relatively benign unclean-close errnos.
Ben Darnell [Sun, 15 Jun 2014 15:32:11 +0000 (11:32 -0400)]
When a function on the IOLoop returns a Future, log its exception.
Ben Darnell [Sat, 7 Jun 2014 15:22:58 +0000 (11:22 -0400)]
The next version will be 4.0, not 3.3, so update all references to 3.3.
Ben Darnell [Sat, 7 Jun 2014 15:08:52 +0000 (11:08 -0400)]
Broaden catch clause in extension building.
This should allow Tornado to be installed again on OSX with no
compiler available.
Closes #1074.
Ben Darnell [Wed, 4 Jun 2014 04:04:26 +0000 (00:04 -0400)]
Merge branch 'master' of github.com:tornadoweb/tornado
Ben Darnell [Wed, 4 Jun 2014 03:48:51 +0000 (23:48 -0400)]
Merge branch 'branch3.2'
Conflicts:
docs/releases.rst
setup.py
tornado/__init__.py
tornado/websocket.py
Ben Darnell [Wed, 4 Jun 2014 03:30:18 +0000 (23:30 -0400)]
Set version number to 3.2.2
Ben Darnell [Wed, 4 Jun 2014 03:16:00 +0000 (23:16 -0400)]
Docs for xsrf cookie change; 3.2.2 release notes.
Ben Darnell [Tue, 3 Jun 2014 23:49:40 +0000 (19:49 -0400)]
Merge pull request #1069 from drewbrew/master
ioloop.py: use itertools.count() as tiebreaker to preserve FIFO in case of tie
drewbrew [Tue, 3 Jun 2014 18:22:08 +0000 (13:22 -0500)]
ioloop.py: use itertools.count() as tiebreaker to preserve FIFO in case of tie
Current implementation does not function as a FIFO. When adding multiple
timeouts with the same deadline, order is currently consistently mangled in the
event of a garbage collect.
As suggested by Ben Darnell at
https://groups.google.com/forum/#!topic/python-tornado/w8aKm6ZabUQ/discussion,
we need to add a sequence number to the Timeout class to serve as tiebreaker.
This code uses the model suggested by
https://docs.python.org/2/library/heapq.html#priority-queue-implementation-notes,
which uses itertools.count() to serve as our counter.
Ben Darnell [Sun, 1 Jun 2014 22:45:10 +0000 (18:45 -0400)]
Add threadedresolver configuration to tox.ini (it was already in travis)
Ben Darnell [Sun, 1 Jun 2014 22:31:12 +0000 (18:31 -0400)]
Fix another ipv6 test that was flaky on travis due to port conflicts.
Ben Darnell [Sun, 1 Jun 2014 22:14:14 +0000 (18:14 -0400)]
Refine logging in http1connection.py.
Exceptions raised by delegate methods go to app_log; all others to gen_log.
Ben Darnell [Sun, 1 Jun 2014 20:36:52 +0000 (16:36 -0400)]
Remove all use of async_callback in tornado.auth.
This was swallowing exceptions before they could be given to the returned
Future.