]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2014-05-06  schlamarFixed tests on Windows. 1045/head
2014-05-06  Ben DarnellMerge branch 'branch3.2'
2014-05-06  Ben DarnellGive credit to Joost Pol for reporting the security...
2014-05-06  Ben DarnellSet version number to 3.2.1 v3.2.1
2014-05-06  Ben Darnellv3.2.1 release notes
2014-05-06  Ben DarnellDocument the cookie versioning interface.
2014-05-06  Ben DarnellAdd a v2 secure cookie format.
2014-05-06  Ben DarnellAdd versioning parameters to secure_cookie/signed_value...
2014-05-06  Ben DarnellMerge branch 'stable' into branch3.2
2014-05-06  Matthew BrettAdd SystemError to errors from compilation
2014-05-03  Ben DarnellRelax this timing-sensitive test
2014-05-03  Abhishek Kumar... Update overview.rst with typos in nginx conf.
2014-04-28  Ben DarnellDocument @authenticated's behavior around query parameters.
2014-04-28  Ben DarnellMerge pull request #1017 from SuminAndrew/curl-dns...
2014-04-28  Ben DarnellRemove ca-certificates bundle and instead depend on...
2014-04-27  Ben DarnellMerge pull request #1021 from bdarnell/http_refactor
2014-04-27  Ben DarnellFix unix socket test on linux. 1021/head
2014-04-27  Ben DarnellRemove the has_body flag from write_headers.
2014-04-27  Ben DarnellTest and document the legacy HTTPRequest.write interface.
2014-04-27  Ben DarnellMake HTTP1Connection and WSGIConnection subclasses...
2014-04-27  Ben DarnellRemove unused protocol field from HTTP1ConnectionParams
2014-04-27  Ben DarnellDocument all the new HTTP stuff
2014-04-27  Ben DarnellMerge branch 'master' into http_refactor
2014-04-27  Ben DarnellUpdate docs for changes in 3.3.
2014-04-26  Ben DarnellCatch up on next-release notes.
2014-04-26  Ben DarnellReturn Futures from RequestHandler.flush and HTTP1Conne...
2014-04-26  Ben DarnellAdd client-side support for Expect: 100-continue.
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-16  Ben DarnellMerge pull request #1037 from toanant/patch-1
2014-04-16  Abhishek Kumar... Update overview.rst with typos in nginx conf. 1037/head
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-13  bdarnellMerge pull request #1034 from kouki-dan/work
2014-04-09  Kouki SaitoDelete description for cookie capacity 1034/head
2014-04-09  bdarnellMerge pull request #1030 from matthew-brett/fix-osx...
2014-04-09  bdarnellMerge pull request #1029 from daftshady/master
2014-04-08  Matthew BrettAdd SystemError to errors from compilation 1030/head
2014-04-08  daftshadyfixed broken reference link 1029/head
2014-04-08  bdarnellFix typo
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-31  bdarnellMerge pull request #1023 from zakkie/feature/fix-testcase
2014-03-30  Akihiro Yamazakicorrect testcases 1023/head
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-28  Akihiro Yamazakiuse "with self.assertRaises" pattern
2014-03-27  Akihiro Yamazakiput assertion outside of the exception handler
2014-03-26  bdarnellMerge pull request #1022 from shinriyo/master
2014-03-26  shinriyotab to space 1022/head
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-24  bdarnellMerge pull request #1020 from dhcmrlchtdj/fix-template-doc
2014-03-23  Andrey Suminsuggest to use libcurl with async dns resolver in httpc... 1017/head
2014-03-23  huangxiaokaiFix a mistake in template document. 1020/head
2014-03-22  Ben DarnellIntroduce a fast path for coroutines that run to comple...
2014-03-22  bdarnellMerge pull request #1019 from minrk/clear_instance
2014-03-21  MinRKadd IOLoop.clear_instance 1019/head
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-15  Ben DarnellUpdate links for comments about json list output.
2014-03-15  Ben DarnellRefactor unittest/unittest2 imports to fix issues with...
2014-03-13  Ben DarnellImprove simple_httpclient ssl configuration to pass...
2014-03-13  Ben DarnellFix command-line tornado.httpclient on python 3.
2014-03-11  bdarnellMerge pull request #1012 from dlutxx/br310
2014-03-11  bdarnellMerge pull request #1008 from yaccz/fix/1007
2014-03-10  xuxiangremove useless code of BaseIOStream 1012/head
2014-03-08  yactwisted can be installed without twisted.names fixes... 1008/head
2014-03-03  bdarnellMerge pull request #996 from cardoe/exception-fix
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...
next