]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2010-10-16  Matthew Grahammake StaticFileHandler support default filename 151/head 155/head
2010-10-13  Ben DarnellSupport websockets over HTTP proxies.
2010-10-13  Ben DarnellWindows compatibility for non-blocking IOStream.connect.
2010-10-13  Ben DarnellRefactor async connect logic from SimpleAsyncHTTPClient...
2010-10-12  Ben DarnellReindent example in docstring, which apparently trips... 149/head
2010-10-12  Ben DarnellMake Locale.format_date() behave sanely with dates...
2010-10-12  Ben DarnellRun all IOStream callbacks inside a NullContext so...
2010-10-11  Ben DarnellMake USE_SIMPLE_HTTPCLIENT work without pycurl installed.
2010-10-11  Ben DarnellAdd initial version of non-curl-based AsyncHTTPClient.
2010-10-11  Ben DarnellLimit the amount of data sent to socket.send at a time...
2010-10-08  Ben DarnellMove Links section from index.html to the wiki.
2010-10-08  Ben DarnellFix StackContext in IOStream. IOStream._handle_events...
2010-09-30  Paul Buchheitadd a linkify() function for converting text to html...
2010-09-29  Ben DarnellHandle IOStream.read_bytes(0) gracefully.
2010-09-29  Ben DarnellMake AsyncTestCase.stop() prefer _arg over **kwargs...
2010-09-28  Ben DarnellRemove references to async_callback from documentation
2010-09-27  Ben DarnellIn the select()-based IOLoop, always listen for reads...
2010-09-27  Ben DarnellClose the IOStream when the remote connection is closed.
2010-09-27  Ben DarnellFactor port-selection logic out of AsyncHTTPTestCase...
2010-09-24  Ben DarnellMake StackContext more usable in libraries by reducing...
2010-09-23  Ben DarnellUpdate installation instructions in README.
2010-09-21  Ben DarnellFix default_host redirect.
2010-09-18  Ben DarnellFix improperly-renamed variable in set_blocking_signal_...
2010-09-17  Ben DarnellMake xhtml_escape available in the template namespace...
2010-09-17  Ben DarnellMove cookie-signing code from set_secure_cookie to...
2010-09-17  Ben DarnellDocument the entire template namespace
2010-09-17  Ben DarnellGeneralize IOLoop.set_blocking_log_threshold by allowin...
2010-09-16  Ben DarnellRefactor IOStream reading logic to fix problems with...
2010-09-14  Szabó AntalFixed another two win32_support import
2010-09-14  Szabó AntalFixed win32_support import
2010-09-14  Szabó AntalAdded binary flag to _waker_reader and _waker_writer
2010-09-14  Szabó AntalReplaced map() in web.py with for loop
2010-09-14  Szabó AntalChanged e[0] to e.args[0]
2010-09-14  Ben DarnellUpdate docs to mention requirement of pycurl 7.18.2.
2010-09-13  Ben DarnellMerge remote branch 'fiam/master'
2010-09-13  Alberto García... When forking multiple processes, properly initialize... 138/head
2010-09-13  Alberto García... Avoid raising a KeyError when there's no session expira...
2010-09-13  Ben DarnellFix calls to getattr (which, unlike dict.get, does...
2010-09-09  Ben DarnellAdd download url to setup.py for pypi
2010-09-08  Ben DarnellCheck self._running before rescheduling a PeriodicCallb...
2010-09-08  Ben DarnellBump version number to 1.1 v1.1.0
2010-09-08  Ben DarnellDisable SSL test on versions of libcurl with blocking...
2010-09-07  Ben DarnellDisable SSL test on python 2.5
2010-09-07  Ben DarnellUse the older name for threading.activeCount for compat...
2010-09-07  Ben DarnellFix error in comment
2010-09-06  Ben DarnellFix typo in websocket.py
2010-09-06  Ben DarnellRemove superfluous lambdas in tornado.escape.
2010-09-05  Ben DarnellDocument why RequestHandler.write does not convert...
2010-09-04  Ben DarnellAdd more documentation for request.files.
2010-09-04  Joe Bowmanauth.py updates for OAuth 1.0a and 2.0.
2010-09-01  Ben DarnellRemove the statement that tornado has only been tested...
2010-09-01  Ben DarnellRemove __del__ method from HTTPResponse. Closing cStri...
2010-08-30  Ben DarnellUpdate class docstring for HTTPServer.
2010-08-26  Aaron Raddonadding support for http method OPTIONS used by firefox...
2010-08-26  Ben DarnellFix reference to slice.indices.
2010-08-26  Ben DarnellDocument the limitations of multi-process mode.
2010-08-26  Ben DarnellDocument the fact that add_handlers should only be...
2010-08-26  Ben DarnellSet pycurl.NOSIGNAL when multiple threads are detected.
2010-08-26  Ben DarnellSet PeriodicCallback._running to True in start instead...
2010-08-25  Ben DarnellAdd a tornado.version variable, and use it anywhere...
2010-08-25  Ben DarnellCheck in Jacob Kristhammar's updated websocket implemen...
2010-08-25  Ben DarnellAdd more documentation of overridable methods in Reques...
2010-08-25  Ben DarnellMove AuthRedirectTest from httpserver_test to web_test...
2010-08-25  Ben DarnellAdd a test for HTTPServer's SSL support
2010-08-25  Ben DarnellDon't swallow SSL errors - always reraise or return
2010-08-19  Ben DarnellMake the SSL handshake non-blocking.
2010-08-19  Ben DarnellMerge remote branch 'tomhsx/proxy-support'
2010-08-19  Ben DarnellAdd HTTPServer(..., xheaders=True) to the web documenta...
2010-08-19  Ben DarnellAdd a links section to the website
2010-08-16  tomhsxAdded proxy support to httpclient
2010-08-16  Ben DarnellSuppress tornado's default logging setup if there is...
2010-08-16  Ben DarnellIn LogTrapTestCase, leave everything alone rather than...
2010-08-16  Ben DarnellInitialize member variables in AsyncTestCase.__init__...
2010-08-13  Ben DarnellFix another link to 1.0.1
2010-08-13  Ben DarnellCheck in symlink to tornado package in website directory
2010-08-13  Ben DarnellUpdate links to 1.0.1 release
2010-08-13  Ben DarnellTest case for secure cookie change
2010-08-13  Ben DarnellCheck for far-future timestamps in secure cookies.
2010-08-13  Ben DarnellAdd future import to fix tests on 2.5
2010-08-11  Ben DarnellAdd a mention of on_connection_close to the html docs...
2010-08-10  Ben DarnellRemove the ability to pre-bind parameters in stack_cont...
2010-08-10  Ben DarnellReindent everything to 4 spaces.
2010-08-10  Ben DarnellStackContext should not re-wrap previously-wrapped...
2010-08-09  Ben DarnellBe less picky about line endings in headers in httpclient.
2010-08-09  Ben DarnellAdd a simple main function to httpclient.py for manual...
2010-08-09  Ben DarnellThe periodic call to multi_socket_all needs to be follo...
2010-08-06  Ben DarnellRecord more detailed timing information from AsyncHTTPC...
2010-08-06  Ben DarnellWhen login_url is absolute, use an absolute url for...
2010-08-05  Ben DarnellUse the right IOLoop in AsyncHTTPClient's PeriodicCallback
2010-08-05  Ben DarnellUse POST instead of GET for OpenID check_authentication.
2010-08-05  Ben DarnellSuppress libcurl's magic "Expect: 100-continue" behavior.
2010-08-05  Ben DarnellAdd a brute-force workaround for the class of libcurl...
2010-08-04  Ben DarnellFix a typo in docstring
2010-08-04  Ben DarnellParse form bodies on PUT as well as POST.
2010-08-03  Ben DarnellWork around the "MySQL server has gone away" issue...
2010-08-03  Ben DarnellUse the more portable multiprocessing.cpu_count() to...
2010-07-31  Ben DarnellAdd a workaround for missing multi.socket_action on...
2010-07-30  Ben DarnellOnly catch pycurl.error, not all Exceptions around...
2010-07-30  Ben DarnellDocstring updates
2010-07-30  Ben DarnellFix a StackContext-related bug that was causing excepti...
next