]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
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...
2010-07-30  Ben DarnellAdd __future__ import for python2.5 compatibility
2010-07-30  Ben DarnellUpdate test_ioloop to use AsyncTestCase. Rename it...
2010-07-30  Ben DarnellAdd a test framework for IOLoop-based async code
2010-07-30  Ben DarnellMake all internal imports of tornado modules absolute
2010-07-26  Ben DarnellAdd an initialize() method to RequestHandler for use...
2010-07-26  Ben DarnellRemove unused transforms parameter to RequestHandler...
2010-07-23  Ben DarnellIntroduce StackContext, a way to automatically manage...
2010-07-23  Ben DarnellRemove the old AsyncHTTPClient (fdset) and make AsyncHT...
2010-07-22  Ben DarnellSet version number to 1.0 v1.0.0
2010-07-22  Ben DarnellRemove old release tarballs and redirect previous urls...
2010-07-22  Ben DarnellMove download links to github
2010-07-22  Ben DarnellRemove websocket.py. The websocket protocol has changed in
2010-07-22  Ben DarnellUpdate installation instructions.
2010-07-20  Ben DarnellAccept None (i.e. unmatched optional groups) when extra...
2010-07-20  Ben DarnellWhen no json library is found, don't throw an exception...
2010-07-19  Ben DarnellCheck for EINTR in a more flexible way for compatibilit...
2010-07-15  Ben DarnellFix typo in support for multiple ui_method/ui_module...
2010-07-14  Ben DarnellBetter timeout handling in AsyncHTTPClient2. Tornado...
2010-07-14  David NovakovicFix small bug in database set up.
2010-07-13  Robert BuchholzMake iteration over sql fields clearer
2010-07-13  Robert BuchholzRemove unused imports and variables
2010-07-10  Ben DarnellIn AsyncHTTPClient2, disable IPv6 for versions of libcu...
2010-07-09  Ben DarnellUnquote percent escapes in captured groups in the path...
2010-07-09  Ben DarnellRevert "Parse percent escapes in the path component...
2010-07-09  Ben DarnellParse percent escapes in the path component of the...
2010-07-09  Ben DarnellConsolidate the various HTTP header dictionary classes...
2010-07-08  Ben DarnellDisable preforking by default in HTTPServer.start().
2010-06-28  Ben DarnellUTF8-encode more user-supplied strings in httpclient...
2010-06-26  Ben DarnellUpdate the set of active file descriptors immediately...
2010-06-26  Ben DarnellInclude the HTTPResponse object as an attribute of...
2010-06-24  Ben DarnellRemove unused "overwrite" argument to options.parse_con...
2010-06-21  Ben DarnellFix typo in comment
2010-06-20  Ben DarnellAdd a second implementation of AsyncHTTPClient, using...
2010-06-18  Ben DarnellClose wsgi responses correctly - the close method,...
2010-06-10  Ben DarnellIn the libcurl file descriptor limit hack, log to both...
2010-06-08  Ben DarnellCatch and log exceptions from user callbacks in AsyncHT...
2010-06-07  Ben DarnellFix missing import
2010-05-31  Ben DarnellOptionally allow nonstandard http methods to be used...
2010-05-31  Mike LewisChanged it so one can access the StringIO buffer
2010-05-31  Ben DarnellClear the close_callback set on the IOStream by Request...
2010-05-31  Ben DarnellClose the socket on uncaught exceptions from iostream...
2010-05-31  Ben DarnellImprove parsing of multipart/form-data headers.
2010-05-31  Ben DarnellAdded RequestHandler.get_arguments(), which does the...
2010-05-29  Ben DarnellUpdate documentation for WebSocketHandler
2010-05-29  Ben DarnellRevert "websockets: continue listening for messages...
2010-05-25  Ben DarnellAllow StaticFileHandler subclasses to set additional...
2010-05-25  Ben DarnellDon't try to compute max() of an empty sequence (which...
2010-05-25  Ben DarnellAdd a hacky workaround for libcurl's FD_SETSIZE bug...
2010-05-20  Ben DarnellMake it possible to override template_path at the handl...
2010-05-17  Ben DarnellUse a lambda instead of functools.partial for pycurl...
2010-05-10  Ben DarnellMerge remote branch 'dlo/master'
2010-05-10  Ben DarnellTranslate </ to <\/ in json output to avoid issues...
2010-05-10  Ben DarnellSupport additional keyword arguments on cookies (to...
2010-05-04  Dan Loewenherzwebsockets: continue listening for messages after parsi...
2010-05-01  Ben DarnellAllow for missing "expires" field in facebook session...
2010-04-29  Jon PariseCorrecting a grammatical error (attribute -> attributes).
2010-04-26  Evan KlitzkeUIModule.css_files returns CSS files, not Javascript...
2010-04-25  Joseph BowmanUpdating base Twitter url
2010-04-22  Ben DarnellClear itimer signals in autoreload so the combination...
next