]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2014-04-26  Ben DarnellCall the superclass's on_connection_close in this test.
2014-04-26  Ben DarnellAdd on_close to HTTPServerConnectionDelegate.
2014-04-26  Ben DarnellAdd on_connection_close to the HTTPMessageDelegate...
2014-04-21  Ben DarnellHelp out the CPython GC by clearing some references...
2014-04-21  Ben DarnellMove HTTP/1.0 Connection: keep-alive behavior to http1c...
2014-04-21  Ben DarnellMove address manipulation from HTTP1Connection to HTTPS...
2014-04-20  Ben DarnellClean up and comment http1connection internals.
2014-04-20  Ben DarnellMake HTTP1Connection single-use-only.
2014-04-20  Ben DarnellSynchronize chunk size between HTTP1Connection and...
2014-04-20  Ben DarnellRemove HTTPServer.__init__'s **kwargs.
2014-04-20  Ben DarnellAdd max_body_size and body_timeout limits to http1conne...
2014-04-20  Ben DarnellOptimize gen.with_timeout for tornado futures.
2014-04-20  Ben DarnellTimeout micro-optimizations.
2014-04-19  Ben DarnellUse add_callback_from_signal in benchmark.py's sigchld...
2014-04-19  Ben DarnellDon't log errors about content-length mismatch when...
2014-04-19  Ben DarnellAdd a max_bytes to one remaining read_until in http1con...
2014-04-19  Ben DarnellRead less aggressively in IOStream.
2014-04-14  Ben DarnellAdd a `streaming` option to _run_read_callback and...
2014-04-14  Ben DarnellFix IOStream.reading when Futures are used.
2014-04-06  Ben DarnellAdd timeouts for idle keepalive connections in HTTPServer.
2014-04-06  Ben DarnellAdd a configurable header size limit to HTTPServer...
2014-04-06  Ben DarnellAdd max_bytes parameter to read_until and read_until_regex.
2014-04-06  Ben DarnellGuard against framing errors when applications manually...
2014-03-29  Ben DarnellImplement flow control for streaming RequestHandlers.
2014-03-29  Ben DarnellAdd a chunk_size limitation to HTTP1Connection.
2014-03-29  Ben DarnellAdd a 'partial' flag to IOStream.read_bytes.
2014-03-29  Ben DarnellAdd body_producer argument to httpclient.HTTPRequest.
2014-03-29  Ben DarnellAdd option to disable the Resolver tests with an enviro...
2014-03-24  Ben DarnellWhen a streaming-body request finishes early, stop...
2014-03-24  Ben DarnellIntroduce streaming request body support for RequestHan...
2014-03-22  Ben DarnellIntroduce a fast path for coroutines that run to comple...
2014-03-17  Ben DarnellSimplify RequestHandler._execute by making it a coroutine.
2014-03-17  Ben DarnellStop overriding _execute in WebSocketHandler; use get...
2014-03-16  Ben DarnellAdd chunk and callback arguments to write_headers.
2014-03-16  Ben DarnellMake Application an HTTPServerConnectionDelegate.
2014-03-16  Ben DarnellHTTPServer: Support requests that are received in multi...
2014-03-16  Ben DarnellAllow gzip to be used with WSGIApplication.
2014-03-16  Ben DarnellMove chunked-response generation into http1connection.
2014-03-16  Ben DarnellPass start_line to headers_received as a tuple instead...
2014-03-16  Ben DarnellUnify WSGI support with the HTTPConnection abstraction.
2014-03-16  Ben DarnellMove outgoing HTTP header generation to HTTP1Connection.
2014-03-03  Ben DarnellAdd a test for HTTPServer's recently-acquired support...
2014-03-03  Ben DarnellAdd support for gzipped request bodies to HTTPServer.
2014-03-03  Ben DarnellMove gzip decompression from simple_httpclient to http1...
2014-03-03  Ben DarnellSome cleanup and renamings.
2014-03-02  Ben DarnellUse HTTP1Connection in SimpleAsyncHTTPClient.
2014-02-24  Ben DarnellMove HTTPServerRequest-specific logic from http1connect...
2014-02-23  Ben DarnellRefactor HTTP1Connection to use coroutines.
2014-02-23  Ben DarnellFix doc references to HTTPRequest.
2014-02-23  Ben DarnellFix close_callback handling when the Future read interf...
2014-02-23  Ben DarnellMove some logic from HTTPRequest to HTTP1Connection.
2014-02-23  Ben DarnellHTTP refactoring part 1: move shareable parts out of...
2014-02-23  Ben DarnellFix bit-rotted app engine tests.
2014-02-23  Ben DarnellAdd a warning label to WSGIContainer.
2014-02-22  Ben DarnellDisable port-allocation test on mac to avoid annoying...
2014-02-22  bdarnellMerge pull request #977 from schlamar/fix-port-allocation
2014-02-21  schlamarFixed automatic port allocation in bind_sockets. 977/head
2014-02-19  Ben DarnellCatch up on next-release notes.
2014-02-19  Ben DarnellDocument the fact that tornado.options configures loggi...
2014-02-18  Ben DarnellAdd python 3.4 tests to tox
2014-02-17  Ben DarnellAdd support for the websocket close status code and...
2014-02-17  Ben DarnellCompress all text/* content types, not just a whitelist.
2014-02-17  Ben DarnellAdd a py26-trollius test case and fix a bug with timede...
2014-02-17  Ben DarnellAdd a fast path to stack_context when there are no...
2014-02-17  Ben DarnellRemove _iostream_return_future from write and connect...
2014-02-17  Ben DarnellBring Future support for IOStream read operations into...
2014-02-17  Ben DarnellMicrooptimizations for coroutines
2014-02-17  Ben DarnellFold TracebackFuture into Future.
2014-01-27  Ben Darnellgen: Defer creation of stack context until a YieldPoint...
2014-01-27  Ben DarnellDetect stack context inconsistency in gen.Runner.
2014-01-26  Ben Darnellgen.Runner now communicates back to the decorator via...
2014-01-26  Ben DarnellConsolidate implementations of gen.engine and gen.corou...
2014-01-26  Ben DarnellPivot tornado.gen to use Futures natively.
2014-01-26  Ben Darnelltornado.concurrent.Future is now always thread-unsafe.
2014-01-26  Ben DarnellAdd a benchmark for coroutine processing.
2014-01-25  Ben DarnellImprove the stack traces given for timeouts with @gen_test.
2014-01-25  Ben DarnellRaise an error if IOLoop.start() is called while it...
2014-01-25  Ben DarnellAdd support in AsyncTestCase for detecting undecorated...
2014-01-25  bdarnellMerge pull request #979 from mike4999/simple_fix
2014-01-24  Michael AtamboThis is a fix to check the argument to RequestHandler... 979/head
2014-01-20  Ben DarnellReturn a Future from IOStream methods.
2014-01-20  bdarnellMerge pull request #976 from daftshady/master
2014-01-20  Ben DarnellPin sphinx version to 1.2 in tests.
2014-01-20  daftshadyremoved unnecessary else statements 976/head
2014-01-20  Ben DarnellRemove some unused imports (found by pyflakes)
2014-01-19  Ben DarnellAdd tornado.test.__main__ so the tests can be run with...
2014-01-19  Ben DarnellRemove some vestigial references to 2to3.
2014-01-18  Ben DarnellFix a typo that snuck into the autoreload docs.
2014-01-18  Ben DarnellMake tornado.netutil.add_accept_handler pass a fileobj...
2014-01-18  Ben DarnellPass the correct file object to IOLoop handler functions.
2014-01-18  Ben DarnellDocument file descriptor change and start new release...
2014-01-18  Ben DarnellAllow and encourage the use of file objects instead...
2014-01-18  Ben DarnellAdd pycares to the -full tox configs and remove custom...
2014-01-17  Ben DarnellRequire the extension to be built in tox -full runs.
2014-01-17  Ben DarnellMerge branch 'branch3.2'
2014-01-17  Ben DarnellDon't require the extension to be present when building...
2014-01-17  Ben DarnellReinstate the 'cd maint' in .travis.yml.
2014-01-17  Ben DarnellAdd better debugging for ImportErrors resulting from...
2014-01-17  Ben DarnellAdd a new TORNADO_EXTENSION environment variable for...
2014-01-16  bdarnellMerge pull request #973 from cgohlke/patch-1
next