]> git.ipfire.org Git - thirdparty/tornado.git/log
thirdparty/tornado.git
16 years agoIf IOLoop.stop is called before the loop is running, make the next
Ben Darnell [Thu, 17 Dec 2009 01:01:37 +0000 (17:01 -0800)] 
If IOLoop.stop is called before the loop is running, make the next
call to IOLoop.start return immediately, so that one call each to start
and stop will result in the loop not running rather than running
infinitely, even if the call to stop happens first.

16 years agoAdded kwargs to get_error_html in the RequestHandler so that downstream actors can...
Chris Wetherell [Mon, 14 Dec 2009 23:21:26 +0000 (15:21 -0800)] 
Added kwargs to get_error_html in the RequestHandler so that downstream actors can render or otherwise use the exception object thrown. This is a backwards-incompatible change for anyone who has overridden get_error_html().

16 years agoUse empty dictionary instead of None as default for kwargs
Ben Darnell [Thu, 10 Dec 2009 01:07:18 +0000 (17:07 -0800)] 
Use empty dictionary instead of None as default for kwargs

16 years agoFix missed variable rename
Ben Darnell [Thu, 10 Dec 2009 00:59:04 +0000 (16:59 -0800)] 
Fix missed variable rename

16 years agoAdd Application.reverse_url, which can generate a url to a handler by name.
Ben Darnell [Thu, 10 Dec 2009 00:44:19 +0000 (16:44 -0800)] 
Add Application.reverse_url, which can generate a url to a handler by name.
This minimizes repetition of url patterns for links and redirects.

Internally, handler mappings are now maintained as a list of URLSpec objects
instead of tuples.  The Application constructor and add_handlers method
will accept either URLSpecs or (pattern, handler, [kwargs]) tuples.

Inspired by similar functionality in django, and based on
http://github.com/apgwoz/tornado/commit/0b57fbcf992647b6674ad9e433bffffac900f83a
by apgwoz.

16 years agoMerge branch 'master' of git://github.com/facebook/tornado
Ben Darnell [Wed, 9 Dec 2009 23:23:08 +0000 (15:23 -0800)] 
Merge branch 'master' of git://github.com/facebook/tornado

16 years agoAdd basic error checking so you can't add a server to the IOLoop twice
Bret Taylor [Wed, 9 Dec 2009 09:48:50 +0000 (01:48 -0800)] 
Add basic error checking so you can't add a server to the IOLoop twice

16 years agoTypo in error message
Bret Taylor [Wed, 9 Dec 2009 09:45:05 +0000 (01:45 -0800)] 
Typo in error message

16 years agoPre-forking implementation so a single Tornado server can utilize all CPU cores
Bret Taylor [Wed, 9 Dec 2009 08:24:03 +0000 (00:24 -0800)] 
Pre-forking implementation so a single Tornado server can utilize all CPU cores

16 years agoAdd gzip Content-Encoding support with 'gzip' application option
Bret Taylor [Tue, 8 Dec 2009 16:56:02 +0000 (08:56 -0800)] 
Add gzip Content-Encoding support with 'gzip' application option

16 years agoAdd REMOTE_ADDR to WSGIContainer
Ben Darnell [Tue, 8 Dec 2009 00:17:19 +0000 (16:17 -0800)] 
Add REMOTE_ADDR to WSGIContainer

16 years agoMerge branch 'master' of http://github.com/facebook/tornado
Ben Darnell [Mon, 7 Dec 2009 23:53:28 +0000 (15:53 -0800)] 
Merge branch 'master' of http://github.com/facebook/tornado

16 years agoMake WSGIContainer._environ public and static, so it can be used to adapt
Ben Darnell [Mon, 7 Dec 2009 23:47:16 +0000 (15:47 -0800)] 
Make WSGIContainer._environ public and static, so it can be used to adapt
tornado requests to WSGI environments without a full WSGIContainer.

16 years agoFix transform headers bug
Bret Taylor [Mon, 7 Dec 2009 09:28:06 +0000 (01:28 -0800)] 
Fix transform headers bug

16 years agoIgnore XSRF cookie check when X-Requested-With XMLHttpRequest header is present
Bret Taylor [Sun, 6 Dec 2009 03:36:50 +0000 (19:36 -0800)] 
Ignore XSRF cookie check when X-Requested-With XMLHttpRequest header is present

16 years agoAdd a FallbackHandler class to allow use of other applications (e.g.
Ben Darnell [Thu, 3 Dec 2009 19:57:52 +0000 (11:57 -0800)] 
Add a FallbackHandler class to allow use of other applications (e.g.
tornado.wsgi.WSGIContainer) from within a tornado.web.Application to facilitate
migration from other web frameworks.

16 years agoAdd support for Squid proxy headers
Bret Taylor [Tue, 24 Nov 2009 18:27:38 +0000 (10:27 -0800)] 
Add support for Squid proxy headers

16 years agoAsk for more Facebook Connect fields by default
Bret Taylor [Wed, 28 Oct 2009 09:00:23 +0000 (02:00 -0700)] 
Ask for more Facebook Connect fields by default

16 years agoInitial support for SSL (thanks to Dan McDougall for suggesting this and code samples)
Bret Taylor [Tue, 6 Oct 2009 07:13:50 +0000 (00:13 -0700)] 
Initial support for SSL (thanks to Dan McDougall for suggesting this and code samples)

16 years agoMissing website images
Bret Taylor [Fri, 2 Oct 2009 03:41:49 +0000 (20:41 -0700)] 
Missing website images

16 years agoFix embedded CSS bug
Bret Taylor [Fri, 2 Oct 2009 03:41:29 +0000 (20:41 -0700)] 
Fix embedded CSS bug

16 years agoAdd links to FB, Twitter, FF on web site
Bret Taylor [Wed, 30 Sep 2009 21:56:36 +0000 (14:56 -0700)] 
Add links to FB, Twitter, FF on web site

16 years agoBug fix
Bret Taylor [Wed, 30 Sep 2009 08:01:00 +0000 (01:01 -0700)] 
Bug fix

16 years agoCSS/JS embeds after files
Bret Taylor [Wed, 30 Sep 2009 07:32:40 +0000 (00:32 -0700)] 
CSS/JS embeds after files

16 years agoadd address param to listen
caseymrm [Wed, 23 Sep 2009 18:46:17 +0000 (11:46 -0700)] 
add address param to listen

16 years agoTypo in PeriodicCallback
Bret Taylor [Mon, 21 Sep 2009 16:38:33 +0000 (09:38 -0700)] 
Typo in PeriodicCallback

16 years agoNew 0.2 distribution from the past week's bug fixes
Bret Taylor [Fri, 18 Sep 2009 02:53:10 +0000 (19:53 -0700)] 
New 0.2 distribution from the past week's bug fixes

16 years agoTurn on auto-reloading when 'debug' setting is given
Bret Taylor [Fri, 18 Sep 2009 02:47:32 +0000 (19:47 -0700)] 
Turn on auto-reloading when 'debug' setting is given

16 years agoBug in locale.py and increase poll time for autoreloader
Bret Taylor [Fri, 18 Sep 2009 00:46:46 +0000 (17:46 -0700)] 
Bug in locale.py and increase poll time for autoreloader

16 years agoadd streaming_callback option to httpclient
paul [Thu, 17 Sep 2009 05:59:42 +0000 (22:59 -0700)] 
add streaming_callback option to httpclient

16 years agoRename auto-reload module
Bret Taylor [Wed, 16 Sep 2009 08:49:58 +0000 (01:49 -0700)] 
Rename auto-reload module

16 years agoExperimental module auto-reloading on modification
Bret Taylor [Wed, 16 Sep 2009 08:29:12 +0000 (01:29 -0700)] 
Experimental module auto-reloading on modification

16 years agoAuto-reconnect on MySQL connection failur
btaylor [Tue, 15 Sep 2009 01:10:06 +0000 (18:10 -0700)] 
Auto-reconnect on MySQL connection failur

16 years agoAdd gitignore file
btaylor [Tue, 15 Sep 2009 00:40:45 +0000 (17:40 -0700)] 
Add gitignore file

16 years agouse correct module
Benjamin Golub [Mon, 14 Sep 2009 19:43:07 +0000 (15:43 -0400)] 
use correct module

16 years agomake logout link work
Casey [Mon, 14 Sep 2009 18:08:27 +0000 (11:08 -0700)] 
make logout link work

16 years agoFix multipart/form-data for WSGIApplication
Bret Taylor [Mon, 14 Sep 2009 16:45:24 +0000 (09:45 -0700)] 
Fix multipart/form-data for WSGIApplication

16 years agoGet rid of unnecessary/inconsistent mixin
Bret Taylor [Mon, 14 Sep 2009 16:37:36 +0000 (09:37 -0700)] 
Get rid of unnecessary/inconsistent mixin

16 years agoAdd addslash and removeslash decorators for, e.g., redirecting '/dir' to '/dir/'
Bret Taylor [Sun, 13 Sep 2009 21:13:55 +0000 (14:13 -0700)] 
Add addslash and removeslash decorators for, e.g., redirecting '/dir' to '/dir/'

16 years agoTwo minor typos
Bret Taylor [Sun, 13 Sep 2009 19:26:16 +0000 (12:26 -0700)] 
Two minor typos

16 years agoAdd initial WSGI container support for running other frameworks on Tornado's HTTP...
Bret Taylor [Sun, 13 Sep 2009 18:19:57 +0000 (11:19 -0700)] 
Add initial WSGI container support for running other frameworks on Tornado's HTTP server

16 years agoDon't reference Exception.message due to deprecation in Python 2.6
Bret Taylor [Sat, 12 Sep 2009 16:25:03 +0000 (09:25 -0700)] 
Don't reference Exception.message due to deprecation in Python 2.6

16 years agodocumentation typos
Casey [Fri, 11 Sep 2009 18:43:08 +0000 (11:43 -0700)] 
documentation typos

16 years agos/Google Code/GitHub
Benjamin Golub [Fri, 11 Sep 2009 11:47:33 +0000 (07:47 -0400)] 
s/Google Code/GitHub

16 years agoMerge branch 'master' of git@github.com:facebook/tornado
Casey [Thu, 10 Sep 2009 21:39:28 +0000 (14:39 -0700)] 
Merge branch 'master' of git@github.com:facebook/tornado

16 years agomake sign out clickable, ignoring automatic redirect for now
Casey [Thu, 10 Sep 2009 21:39:23 +0000 (14:39 -0700)] 
make sign out clickable, ignoring automatic redirect for now

16 years agoMerge branch 'master' of git://github.com/jaybaird/tornado
Bret Taylor [Thu, 10 Sep 2009 21:24:33 +0000 (14:24 -0700)] 
Merge branch 'master' of git://github.com/jaybaird/tornado

16 years agotypo
Casey [Thu, 10 Sep 2009 21:10:23 +0000 (14:10 -0700)] 
typo

16 years agoboth links work, but this one seems canonical
Casey [Thu, 10 Sep 2009 20:41:13 +0000 (13:41 -0700)] 
both links work, but this one seems canonical

16 years agoremove cases where intern is used. This will prevent a DoS via memory starvation...
Jay Baird [Thu, 10 Sep 2009 20:24:39 +0000 (13:24 -0700)] 
remove cases where intern is used. This will prevent a DoS via memory starvation if a lot of requests are sent using random headers

16 years agotypo
Casey [Thu, 10 Sep 2009 19:01:36 +0000 (12:01 -0700)] 
typo

16 years agoAdd python-dev to apt-get command per http://groups.google.com/group/python-tornado...
Bret Taylor [Thu, 10 Sep 2009 18:49:27 +0000 (11:49 -0700)] 
Add python-dev to apt-get command per http://groups.google.com/group/python-tornado/browse_thread/thread/d88de85aa33193a7

16 years agotypo
Casey [Thu, 10 Sep 2009 18:35:29 +0000 (11:35 -0700)] 
typo

16 years agoMerge branch 'master' of github.com:facebook/tornado
Benjamin Golub [Thu, 10 Sep 2009 18:11:56 +0000 (14:11 -0400)] 
Merge branch 'master' of github.com:facebook/tornado

16 years agotypos
Benjamin Golub [Thu, 10 Sep 2009 18:11:39 +0000 (14:11 -0400)] 
typos

16 years agoMerge branch 'master' of git@github.com:facebook/tornado
Casey [Thu, 10 Sep 2009 18:09:28 +0000 (11:09 -0700)] 
Merge branch 'master' of git@github.com:facebook/tornado

16 years agoupdated tarball
Casey [Thu, 10 Sep 2009 18:09:21 +0000 (11:09 -0700)] 
updated tarball

16 years agofix README
Benjamin Golub [Thu, 10 Sep 2009 17:52:26 +0000 (13:52 -0400)] 
fix README

16 years agoescape more
Casey [Thu, 10 Sep 2009 17:47:19 +0000 (10:47 -0700)] 
escape more

16 years agotypo
Casey [Thu, 10 Sep 2009 17:38:08 +0000 (10:38 -0700)] 
typo

16 years agoAnother typo (thanks, Ben)
Bret Taylor [Thu, 10 Sep 2009 17:24:52 +0000 (10:24 -0700)] 
Another typo (thanks, Ben)

16 years agoAdd prerequisites to Tornado docs
Bret Taylor [Thu, 10 Sep 2009 16:29:49 +0000 (09:29 -0700)] 
Add prerequisites to Tornado docs

16 years agoFixed typo (thanks Casey)
Bret Taylor [Thu, 10 Sep 2009 08:16:44 +0000 (01:16 -0700)] 
Fixed typo (thanks Casey)

16 years agoNo favicon for Tornado web site
Bret Taylor [Thu, 10 Sep 2009 07:53:07 +0000 (00:53 -0700)] 
No favicon for Tornado web site

16 years agoMove Tornado project to Github
Bret Taylor [Thu, 10 Sep 2009 07:50:51 +0000 (00:50 -0700)] 
Move Tornado project to Github

16 years agoWrote initial README file
Bret Taylor [Wed, 9 Sep 2009 05:15:18 +0000 (22:15 -0700)] 
Wrote initial README file

16 years agoCreated project
Facebook [Wed, 9 Sep 2009 05:01:24 +0000 (22:01 -0700)] 
Created project