]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2011-05-15  Ben DarnellAdd keepalive support to benchmark, add other command...
2011-05-15  Ben DarnellFix a StackContext leak introduced by the delayed IOStr...
2011-05-15  Ben DarnellConvert http request bodies to utf8 earlier so content...
2011-05-15  Ben DarnellSmall speedups
2011-05-15  Ben DarnellFreeze the iostream write buffer when send() returns 0.
2011-05-15  Ben DarnellFix handling of closed connections with epoll. This...
2011-05-15  Ben DarnellTolerate servers that don't include reason text in...
2011-05-15  Ben DarnellAutomatically run 2to3 when installing on python 3
2011-05-15  Ben DarnellMerge branch 'python3'
2011-05-14  Ben DarnellSlightly faster utf8 function
2011-05-14  Ben DarnellFix deprecation warnings in python 3
2011-05-14  Ben Darnelltypes.NoneType no longer exists in python 3
2011-05-14  Ben DarnellMerge branch 'master' into python3
2011-05-06  bdarnellMerge pull request #258 from kmike/master
2011-05-04  Mikhail KorobovBetter error handling for exceptions in on_message... 258/head
2011-05-02  Ben DarnellSpeed up a common case in iostream._merge_prefix
2011-05-02  Ben DarnellMemoize HTTPHeaders._normalize_name
2011-05-02  Ben DarnellStackContext speedups: special-case some common situations,
2011-05-01  Ben DarnellFix for python2.5: heapq used to use __le__ instead...
2011-05-01  Ben DarnellMake a recently-added test pass in python3
2011-05-01  Ben DarnellMerge branch 'master' into python3
2011-05-01  Ben DarnellChange IOLoop._timeouts from a sorted list to a heapq.
2011-05-01  Ben DarnellRun all IOStream callbacks via IOLoop.add_callback.
2011-05-01  Ben DarnellDocument the ability to modify XSRF protection by overr...
2011-05-01  Ben DarnellSupport https for UIModule javascript_files and css_files.
2011-05-01  bdarnellMerge pull request #253 from mcella/patch-1.
2011-04-28  Michele CellaRequestHandler.get_argument should raise an HTTP 400... 253/head
2011-04-25  Ben DarnellBetter check for missing messages in facebook demo
2011-04-25  Ben DarnellCheck to see if actions field is present in facebook...
2011-04-25  Ben DarnellAdd **kwargs to WebSocketHandler.__init__
2011-04-25  Ben DarnellInfer option types from the default when possible.
2011-04-25  Ben DarnellIgnore hidden directories (e.g. .svn) in load_gettext_t...
2011-04-16  Ben DarnellFix broken link
2011-04-16  Ben Darnellstr.encode('base64') != base64.b64encode()
2011-04-16  Ben DarnellConvert WSGI content-length variable to an int at the...
2011-04-16  Ben DarnellMake template constructor accept unicode strings
2011-03-31  Ben DarnellMove another curl hack (disabling Pragma: no-cache...
2011-03-31  Ben DarnellAdd appengine config for /favicon.ico
2011-03-30  Peter Bengtssonadding favicon.ico for website 240/head
2011-03-28  Neil RahillyDisable Expect header in curl_httpclient.py without... 239/head
2011-03-28  Neil RahillyFix Expect header bug in curl_httpclient.py. 237/head
2011-03-28  Ben DarnellAdd support for username/password in url for simple_htt...
2011-03-25  Ben DarnellDocument the fact that CSV files should not have spaces...
2011-03-15  Ben DarnellMove curl Expect: header hack from httpclient.py to...
2011-03-14  Brian BeachMake AsyncTestCase call tearDown in super class. 232/head
2011-03-07  Ben DarnellUpdate docstrings for get_user_locale and get_error_html.
2011-03-03  Ben DarnellUpdate facebook demo to use the graph api instead of...
2011-03-03  Ben DarnellMerge commit 'v1.2.1'
2011-03-03  Ben DarnellSet version number to 1.2.1 branch1.2 v1.2.1
2011-03-03  Ben DarnellIn FacebookGraphMixin, explicitly request required...
2011-03-01  Ben DarnellPython3 decodes sys.argv for us, so only decode when...
2011-02-25  Ben DarnellOpen static files in binary mode in static_url.
2011-02-25  Ben Darnell_request_summary should return a string, not bytes
2011-02-25  Ben DarnellMake escape.json_decode accept either unicode or (utf8...
2011-02-25  Ben DarnellConvert cookie value to bytes in get_secure_cookie
2011-02-25  Ben DarnellConvert some byte strings to unicode.
2011-02-24  Ben DarnellUse our own copy of contextlib.nested (which no longer...
2011-02-24  Ben DarnellUse the appropriate version of ''.join() in _merge_prefix
2011-02-24  Ben DarnellMake time_independent_equals work with python3 byte...
2011-02-24  Ben DarnellOn python3, use BytesIO instead of StringIO
2011-02-24  Ben DarnellMark many of our internal string literals as byte literals.
2011-02-24  Ben DarnellGet rid of web.py's redundant utf8 function
2011-02-24  Ben DarnellIgnore auto2to3 cache files
2011-02-24  Ben DarnellTest improvement: order-independent comparison, better...
2011-02-24  Ben DarnellPython3 fixes in IOLoop
2011-02-24  Ben DarnellFix references to str() type for python3
2011-02-24  Ben DarnellFix encoding issues in options.py for python3.
2011-02-23  Ben DarnellMake SimpleAsyncHTTPClient the default.
2011-02-23  Ben DarnellAdd a new method to configure AsyncHTTPClient.
2011-02-23  Ben DarnellAdd a utility function to import an object by name.
2011-02-23  Ben DarnellMove AsyncHTTPClient creation logic to httpclient.py.
2011-02-23  Ben DarnellOPTIONS should not require an XSRF token.
2011-02-22  Ben DarnellCheck for EOF in the kqueue-based IOLoop to avoid incor...
2011-02-22  Ben DarnellRead a fixed number of bytes for wsgi input, since...
2011-02-22  Ben DarnellMove USE_SIMPLE_HTTPCLIENT environment check out of...
2011-02-22  Ben DarnellImplement synchronous HTTPClient in terms of AsyncHTTPC...
2011-02-22  Ben DarnellFix imports
2011-02-22  Ben DarnellMove request and response classes to httpclient.py
2011-02-22  Ben DarnellMake tornado.escape.utf8 None-safe and use it in curl_h...
2011-02-22  Ben DarnellRename httpclient to curl_httpclient
2011-02-22  Ben DarnellRevert "Declare dependencies in setup.py for automatic...
2011-02-20  Ben DarnellUpdate version number to 1.2 v1.2.0
2011-02-20  Ben DarnellDocument the fact that tornado can be installed with...
2011-02-20  Ben DarnellCheck that the default certificates file exists in...
2011-02-20  Ben DarnellDeclare dependencies in setup.py for automatic installa...
2011-02-19  Ben DarnellAdd ca-certificates.crt as a data file in setup.py
2011-02-19  Ben DarnellTrack SSL handshake state separately from calling _add_...
2011-02-19  Ben DarnellClear the Host header when following redirects
2011-02-19  Ben DarnellAdd more debugging options to command-line mode of...
2011-02-19  Ben DarnellCall listen() on low-level socket test.
2011-02-19  Ben DarnellSet both VERIFYPEER and VERIFYHOST according to the...
2011-02-19  Ben DarnellFix a case where callbacks could be called more than...
2011-02-19  Ben DarnellDon't call curl.unsetopt(pycurl.CAINFO) to reset CA...
2011-02-19  Ben DarnellAdd logout link to authdemo for testing purposes.
2011-02-16  Ben DarnellDocument new behavior of XSRF tokens.
2011-02-16  Ben DarnellAdd linkify to the default template namespace.
2011-02-16  Ben DarnellUse SO_REUSEADDR in low-level socket tests.
2011-02-16  Ben DarnellUpdate docs for simple_httpclient.
2011-02-16  Ben DarnellRevert "Undo documentation changes from the introductio...
2011-02-15  Ben DarnellDon't modify the IOStream write buffer if the previous...
next