]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
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
2010-11-19  Ben DarnellDon't assume 'boundary' is last field in Content-Type...
2010-11-18  Ben DarnellMerge remote branch 'vijayp/master'
2010-11-18  vijaypSet proxy to '' if no proxy is explicitly set in the...
2010-11-17  Ben DarnellAdd debug logging for queuing in simple_httpclient.
2010-11-17  Ben DarnellAdd address parameter to Application.listen to match...
2010-11-16  Ben DarnellFixes for python 2.5
2010-11-16  Ben DarnellAdd convenience method Application.listen(port) so...
2010-11-16  Ben DarnellImplement max_clients limitation and queueing for Simpl...
2010-11-16  Ben DarnellPort pseudo-singleton magic from AsyncHTTPClient to...
2010-11-14  Ben DarnellAdd timeout support to simple_httpclient
2010-11-14  Ben DarnellImprove docs for IOLoop.add/remove_timeout()
2010-11-09  Ben DarnellFix typo in docs
2010-11-08  Ben DarnellAdd Amharic to tornado.locale's list of languages.
2010-11-08  Ben DarnellFix mangled language names in tornado.locale for Chines...
2010-11-08  Ben DarnellSupport X-Forwarded-Proto in addition to X-Scheme
2010-11-08  Ben DarnellSupport websockets over https.
2010-11-08  Ben DarnellSupport "from x import y" in templates, not just "import x"
2010-11-06  Ben DarnellFix typo from commit 2b44fac
2010-11-05  Ben DarnellCapture StackContext explicitly in HTTPConnection to...
2010-11-04  Ben DarnellCheck for a closed connection in _add_io_state.
2010-11-04  Paul Buchheitfix linkify regex plus add unit test
2010-10-28  Ben DarnellDon't manually set Content-Length in StaticFileHandler.
2010-10-27  Ben DarnellMerge remote branch 'szeim/master'
2010-10-27  Ben DarnellMerge remote branch 'fiam/master'
2010-10-27  Imre SZEBENYISSLIOStream._do_ssl_handshake SSL error check 159/head
2010-10-27  Imre SZEBENYIFixed IOStream._handle_events (try/except block)
2010-10-26  Alberto García... Make exception handling in AsyncHTTPClient more customi... 158/head
2010-10-21  Ben DarnellAdd gzip support to SimpleAsyncHTTPClient
2010-10-21  Ben DarnellSupport minor HTTP request attributes in SimpleAsyncHTT...
2010-10-21  Ben DarnellAdd basic auth support to SimpleAsyncHTTPClient
2010-10-21  Ben DarnellUse AsyncHTTPTestCase.fetch instead of overriding it...
2010-10-21  Ben DarnellReindent to 4 spaces
2010-10-19  Ben DarnellAttempt to fix StaticFileHandler when os.path.sep ...
2010-10-19  Ben DarnellMerge remote branch 'mdg/default_filename'
2010-10-19  Ben DarnellAdd test case for encoding of request parameters and...
2010-10-19  Ben DarnellAdd a convenience method for synchronous fetches in...
2010-10-19  Ben DarnellAdd test suite to tarball releases.
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...
next