]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2010-04-05  Ben DarnellMake options.__getattr__ raise AttributeError instead...
2010-04-02  Ben DarnellEscape double quotes in addition to angle brackets...
2010-04-02  Elias TorresAdding for the ability of ui-modules to add something...
2010-04-02  Ben DarnellMerge remote branch 'mgenti/master'
2010-03-31  Ben DarnellReturn a write method from start_response, as required...
2010-03-30  unknownWhen using the select based IOLoop, select can throw...
2010-03-27  Ben DarnellDon't try to colorize log output on terminals that...
2010-03-26  Ben DarnellMake add_handlers (for multiple hostnames) usable with...
2010-03-25  Ben DarnellAdd a warning about the experimental status of our...
2010-03-25  Ben DarnellBe consistent in platform checks: use os.name == ...
2010-03-25  Ben DarnellMake ioloop test runnable on unix (chmod +x and add...
2010-03-24  unknownFix for raising an exception;
2010-03-24  unknownMerge branch 'master' of git://github.com/facebook...
2010-03-24  Brandon BickfordUse per-module loggers instead of the root logger.
2010-03-24  Ben DarnellAdd __slots__ to ioloop._Timeout to reduce memory overh...
2010-03-23  unknownImplementing suggested changes
2010-03-23  unknownMerge remote branch 'upstream/master'
2010-03-22  Ben DarnellDon't put wsgi response headers in a dictionary to...
2010-03-20  Ben DarnellDon't set the etag header if the handler already did it.
2010-03-19  Ben DarnellAdd a callback to handle headers in httpclient as they...
2010-03-18  Ben DarnellAdd a close method to AsyncHTTPClient.
2010-03-18  Dolapo Falolaadd a template_loader application setting for using...
2010-03-18  Ben DarnellSupport named groups in url pattern regexes. Note...
2010-03-18  Ben DarnellAllow more than two consecutive curlies to appear in...
2010-03-18  Ben DarnellCombine repeated headers with the same name into a...
2010-03-17  Ben DarnellReplace all tabs with spaces.
2010-03-14  Fabricio Zuardiupdated the gitignore to include files generated on...
2010-03-10  unknownwin32 needs to open the files as binary
2010-03-10  unknownTrying to better re-use code
2010-03-10  unknownMerge remote branch 'upstream/master'
2010-03-09  Ben DarnellFix bug with IOLoop's 'waker' pipe which rendered it...
2010-03-07  Ben DarnellIn finish(), test if chunk is None rather than using...
2010-03-04  Ben DarnellSet the close-on-exec flag on file descriptors used...
2010-03-04  Ben DarnellUse a WeakKeyDictionary instead of a regular dictionary...
2010-03-04  Ben DarnellAllow subclasses of IOLoop to override the default...
2010-03-04  Ben DarnellEnsure that self.io_loop is set in HTTPServer.start...
2010-03-02  Ben DarnellRevamp logging configuration.
2010-02-27  Ben DarnellCall the close() method on the wsgi response object...
2010-02-26  Ben DarnellAdd SERVER_PROTOCOL variable to wsgi environment. ...
2010-02-26  Ben WeaverAdd exc_info parameter to start_response() in WSGIConta...
2010-02-25  Ben DarnellWork around an odd error I occasionally see in autorelo...
2010-02-25  Ben DarnellAdd a workaround for a bug in os.execv when used on...
2010-02-24  Ben DarnellAlways reraise KeyboardInterrupt and SystemExit wheneve...
2010-02-16  Ben DarnellFix ioloop._KQueue to work correctly when listening...
2010-02-05  Bret TaylorSupport passing in cookie value directly in cases where...
2010-02-04  Ben DarnellDon't set content-length in StaticFileHandler unless...
2010-02-04  Bret TaylorAdd backwards compatability for secure cookie reading
2010-02-04  Bret TaylorSimplify JavaScript path ordering patch
2010-02-03  Ben DarnellImport setuptools if it's available.
2010-02-03  Elias TorresMaking sure StaticFileHandlers get first, if not, a...
2010-02-03  Ben DarnellInclude cookie name in signature so that a value signed...
2010-02-03  unknownusing os specific path seperator
2010-02-03  Elias TorresFix for maintaining script inclusion order
2010-02-03  Elias TorresAdded the ability to stop an HTTPServer. Mostly for...
2010-02-03  Ben DarnellStop parsing arguments after --
2010-02-03  Ben DarnellFix EINTR exception handling for non-english locales.
2010-02-03  Ben DarnellSet headers earlier in StaticFileHandler, so we return...
2010-02-03  Ben DarnellAdd static_url_prefix setting to allow serving of stati...
2010-02-03  unknownAdded support for running Tornado on win32
2010-01-29  Ben DarnellAdd a hook to allow applications to modify the curl...
2010-01-28  Casey MullerMerge branch 'master' of git://github.com/bdarnell...
2010-01-28  Casey Mullerallow connect and request timeouts of zero
2010-01-28  Casey Mulleruse self.headers for cases where no headers were passed in
2010-01-22  Ben DarnellMake parse_command_line initialize logging even when...
2010-01-22  Ben DarnellMerge branch 'master' of git://github.com/facebook...
2010-01-18  Bret TaylorAdd HTML 5 WebSocket support (see http://bret.appspot...
2010-01-18  Bret TaylorFix httpclient / epoll interaction errors, per http...
2010-01-16  Ben DarnellCatch both IOError and OSError in another place.
2010-01-16  Ben DarnellCatch IOError in addition to OSError in IOLoop.remove_h...
2010-01-14  Benjamin Golubfb demo fix
2010-01-11  Bret TaylorFix new connection close handler for WSGI handlers
2010-01-11  Bret TaylorAdd reverse_url to RequestHandler class as well
2010-01-11  Bret TaylorMerge remote branch 'bdarnell/master'
2010-01-11  Gary BurdUse time indepdent compare for secure cookie.
2010-01-08  Ben DarnellAdd a method to RequestHandler that can be used to...
2010-01-08  Ben DarnellAdd a kqueue-based implementation of IOLoop for BSD...
2009-12-29  Ben DarnellDon't try to write to a stream that was closed out...
2009-12-29  Ben DarnellAdd httpclient support for the delete method.
2009-12-17  Ben DarnellIf IOLoop.stop is called before the loop is running...
2009-12-14  Chris WetherellAdded kwargs to get_error_html in the RequestHandler...
2009-12-10  Ben DarnellUse empty dictionary instead of None as default for...
2009-12-10  Ben DarnellFix missed variable rename
2009-12-10  Ben DarnellAdd Application.reverse_url, which can generate a url...
2009-12-09  Ben DarnellMerge branch 'master' of git://github.com/facebook...
2009-12-09  Bret TaylorAdd basic error checking so you can't add a server...
2009-12-09  Bret TaylorTypo in error message
2009-12-09  Bret TaylorPre-forking implementation so a single Tornado server...
2009-12-08  Bret TaylorAdd gzip Content-Encoding support with 'gzip' applicati...
2009-12-08  Ben DarnellAdd REMOTE_ADDR to WSGIContainer
2009-12-07  Ben DarnellMerge branch 'master' of http://github.com/facebook...
2009-12-07  Ben DarnellMake WSGIContainer._environ public and static, so it...
2009-12-07  Bret TaylorFix transform headers bug
2009-12-06  Bret TaylorIgnore XSRF cookie check when X-Requested-With XMLHttpR...
2009-12-03  Ben DarnellAdd a FallbackHandler class to allow use of other appli...
2009-11-24  Bret TaylorAdd support for Squid proxy headers
2009-10-28  Bret TaylorAsk for more Facebook Connect fields by default
2009-10-06  Bret TaylorInitial support for SSL (thanks to Dan McDougall for...
2009-10-02  Bret TaylorMissing website images
2009-10-02  Bret TaylorFix embedded CSS bug
2009-09-30  Bret TaylorAdd links to FB, Twitter, FF on web site
next