]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
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-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...
2011-02-15  Ben DarnellChange IOStream._read_buffer from cStringIO to a deque.
2011-02-15  Ben DarnellChange IOStream._write_buffer from cStringIO to a deque.
2011-02-15  Ben DarnellAdd utility method for dealing with deques of strings...
2011-02-15  Ben DarnellAdd follow_redirects support to SimpleAsyncHTTPClient.
2011-02-15  Ben DarnellLast part of certificate validation: check that the...
2011-02-15  Ben DarnellAdd ssl.match_hostname function backported from Python...
2011-02-15  Ben DarnellDetect the connection being closed by the server in...
2011-02-15  Ben DarnellMake certificate validation optional with an HTTPReques...
2011-02-15  Ben DarnellPart 1 of certificate validation: Require that the...
2011-02-15  Ben DarnellIn SSLIOStream, delay the connect_callback until the...
2011-02-15  Ben DarnellAdd a set of default SSL CA certificates for use with...
2011-02-14  Ben DarnellAdd a simple mechanism to override DNS lookups in Simpl...
2011-02-12  Ben DarnellMake @removeslash a no-op when applied to a request...
2011-02-12  Jon PariseRemoving the *.png pattern for the 'demos' line. 218/head
2011-02-10  Ben DarnellCheck XSRF tokens on all non-idempotent requests instea...
2011-02-10  Ben DarnellUndo documentation changes from the introduction of...
2011-02-09  Ben DarnellMerge commit 'v1.1.1'
2011-02-09  Ben DarnellTag release 1.1.1 v1.1.1
2011-02-09  Ben DarnellBACKWARDS-INCOMPATIBLE: Fix XSRF security vulnerability.
2011-02-07  Ben DarnellFix error in docstring.
2011-02-07  Ben DarnellAdd a test to verify reasonable behavior when HTTPS...
2011-01-25  Ben DarnellUse request.uri instead of request.path in websocket...
2011-01-25  Ben DarnellUpdate example in XSRF section.
2011-01-21  Ben DarnellMove request logging from RequestHandler to Application.
2011-01-21  Ben DarnellFix commit 377c160 when connection is None.
2011-01-20  Ben DarnellSet HTTPRequest.protocol correctly when using the built...
2011-01-20  Ben DarnellUse kwargs when constructing RedirectHandlers.
2011-01-19  rickard.bottcherAdded missing attribute "stream" in call to getpeercert... 206/head
2011-01-13  Ben DarnellReplace more uses of cStringIO.getvalue() with .tell().
2011-01-13  Ben DarnellMerge remote branch 'didip/master' into merge
2011-01-12  Ben DarnellAdd some comments about thread safety.
2011-01-10  Didip Kerabatreset() only set current position back to 0. What we... 203/head
2011-01-10  Didip KerabatFurther optimization by using tell() and reset()
2011-01-10  Didip Kerabatuse cStringIO on _read_buffer and _write_buffer
2011-01-06  Ben DarnellUse a list instead of a set for IOLoop callbacks. ...
2011-01-03  Ben DarnellUse absolute paths in RequestHandler._static_hashes...
2011-01-03  Ben DarnellLog exceptions with exc_info=True instead of exc_info=e.
2010-12-28  Ben DarnellFix stack trace logging for uncaught RequestHandler...
2010-12-17  Ben DarnellRemove logging for EINTR in IOLoop, since this is not...
2010-12-14  Ben DarnellConstruct ErrorHandler with kwargs instead of positiona...
2010-12-13  Ben DarnellOverride initialize() instead of __init__() in RequestH...
2010-12-13  Jon Parisetornado.httpserver is unused in this scope 193/head
2010-12-11  Ben DarnellAdd a simple HTTP benchmark
2010-12-11  Ben DarnellAvoid unnecessary work in HTTPHeaders._normalize_name.
2010-12-11  Ben DarnellImplement ExceptionStackContext independently of StackC...
2010-12-10  Ben DarnellAvoid use of the @contextlib.contextmanager decorator.
2010-12-03  Ben DarnellMerge remote branch 'slay2k/fb_fix_graph_mixin'
2010-12-01  Ben DarnellFix duplicated remote_ip field in HTTPRequest.__repr__
2010-11-30  Romy MaxwellA few fixes for FacebookGraphMixin 183/head
2010-11-29  Ben DarnellUse request.uri instead of request.path as default...
2010-11-29  Ben DarnellLog malformed HTTP requests more gracefully.
2010-11-29  Ben DarnellTreat HEAD requests the same as GET for e.g. sending...
2010-11-29  Ben DarnellPreserve the order of css_files from UIModules, like...
2010-11-29  Ben DarnellExpose the client's SSL certificate as HTTPRequest...
2010-11-23  Josh StaigerFix bug in multipart/form-data requests. 176/head 177/head
2010-11-20  Josh StaigerUpdate pydoc to mention response.rethrow instead of... 173/head
next