]> git.ipfire.org Git - thirdparty/tornado.git/log
thirdparty/tornado.git
15 years agoFix for raising an exception;
unknown [Wed, 24 Mar 2010 15:14:03 +0000 (10:14 -0500)] 
Fix for raising an exception;
Fix for waking loop;
Added test

15 years agoMerge branch 'master' of git://github.com/facebook/tornado
unknown [Wed, 24 Mar 2010 13:25:23 +0000 (08:25 -0500)] 
Merge branch 'master' of git://github.com/facebook/tornado

15 years agoUse per-module loggers instead of the root logger.
Brandon Bickford [Mon, 15 Mar 2010 21:48:17 +0000 (14:48 -0700)] 
Use per-module loggers instead of the root logger.

15 years agoAdd __slots__ to ioloop._Timeout to reduce memory overhead when there are
Ben Darnell [Wed, 24 Mar 2010 00:31:14 +0000 (17:31 -0700)] 
Add __slots__ to ioloop._Timeout to reduce memory overhead when there are
many pending timeouts.

15 years agoImplementing suggested changes
unknown [Tue, 23 Mar 2010 14:29:46 +0000 (09:29 -0500)] 
Implementing suggested changes

15 years agoMerge remote branch 'upstream/master'
unknown [Tue, 23 Mar 2010 14:24:34 +0000 (09:24 -0500)] 
Merge remote branch 'upstream/master'

15 years agoDon't put wsgi response headers in a dictionary to support repeated
Ben Darnell [Mon, 22 Mar 2010 23:35:05 +0000 (16:35 -0700)] 
Don't put wsgi response headers in a dictionary to support repeated
headers with the same value (mainly important for Set-Cookie)

15 years agoDon't set the etag header if the handler already did it.
Ben Darnell [Sat, 20 Mar 2010 19:20:42 +0000 (12:20 -0700)] 
Don't set the etag header if the handler already did it.

15 years agoAdd a callback to handle headers in httpclient as they come in, so
Ben Darnell [Fri, 19 Mar 2010 18:20:56 +0000 (11:20 -0700)] 
Add a callback to handle headers in httpclient as they come in, so
they will be available for data handled by streaming_callback.

15 years agoAdd a close method to AsyncHTTPClient.
Ben Darnell [Thu, 18 Mar 2010 20:27:49 +0000 (13:27 -0700)] 
Add a close method to AsyncHTTPClient.

15 years agoadd a template_loader application setting for using custom template loaders. a slight...
Dolapo Falola [Thu, 18 Mar 2010 01:44:16 +0000 (18:44 -0700)] 
add a template_loader application setting for using custom template loaders. a slight refactoring of TemplateLoader's load method to expose some internals. also, add a reset method to the loader that's called in debug mode to flush the template cache.

15 years agoSupport named groups in url pattern regexes. Note that either all or none
Ben Darnell [Thu, 18 Mar 2010 01:51:37 +0000 (18:51 -0700)] 
Support named groups in url pattern regexes.  Note that either all or none
of the groups to be passed to the handler must be named.

15 years agoAllow more than two consecutive curlies to appear in templates (and use
Ben Darnell [Thu, 18 Mar 2010 01:48:32 +0000 (18:48 -0700)] 
Allow more than two consecutive curlies to appear in templates (and use
the innermost).  This was previously a syntax error in the generated python.

15 years agoCombine repeated headers with the same name into a single comma-separated string
Ben Darnell [Thu, 18 Mar 2010 01:29:03 +0000 (18:29 -0700)] 
Combine repeated headers with the same name into a single comma-separated string
http://www.w3.org/Protocols/HTTP/1.0/spec.html#Message-Headers

15 years agoReplace all tabs with spaces.
Ben Darnell [Wed, 17 Mar 2010 21:59:17 +0000 (14:59 -0700)] 
Replace all tabs with spaces.

15 years agoupdated the gitignore to include files generated on installation
Fabricio Zuardi [Sun, 14 Mar 2010 03:08:26 +0000 (00:08 -0300)] 
updated the gitignore to include files generated on installation

15 years agowin32 needs to open the files as binary
unknown [Wed, 10 Mar 2010 21:40:36 +0000 (15:40 -0600)] 
win32 needs to open the files as binary

15 years agoTrying to better re-use code
unknown [Wed, 10 Mar 2010 21:39:50 +0000 (15:39 -0600)] 
Trying to better re-use code

15 years agoMerge remote branch 'upstream/master'
unknown [Wed, 10 Mar 2010 21:37:58 +0000 (15:37 -0600)] 
Merge remote branch 'upstream/master'

15 years agoFix bug with IOLoop's 'waker' pipe which rendered it ineffective on linux
Ben Darnell [Tue, 9 Mar 2010 17:17:23 +0000 (09:17 -0800)] 
Fix bug with IOLoop's 'waker' pipe which rendered it ineffective on linux
and mac (where pipes are unidirectional) and caused high cpu usage
on solaris (where pipes are bidirectional).  Thanks to Jari Ahonen for
finding the bug.

15 years agoIn finish(), test if chunk is None rather than using truthiness to decide
Ben Darnell [Sun, 7 Mar 2010 20:47:52 +0000 (12:47 -0800)] 
In finish(), test if chunk is None rather than using truthiness to decide
whether to call write().

This fixes a discrepancy between finish() and write() when outputting json.
Now both write({}) and finish({}) will output an empty json object.

15 years agoSet the close-on-exec flag on file descriptors used by IOLoop (epoll/kqueue
Ben Darnell [Thu, 4 Mar 2010 20:30:26 +0000 (12:30 -0800)] 
Set the close-on-exec flag on file descriptors used by IOLoop (epoll/kqueue
and pipe) so that long-lived autoreloading processes don't leak file
descriptors.

15 years agoUse a WeakKeyDictionary instead of a regular dictionary to associate
Ben Darnell [Thu, 4 Mar 2010 19:52:18 +0000 (11:52 -0800)] 
Use a WeakKeyDictionary instead of a regular dictionary to associate
IOLoop and AsyncHTTPClients.  This prevents leaks of memory and file
descriptors when one process (in my case a unit test runner) create
many IOLoop/AsyncHTTPClient pairs.

15 years agoAllow subclasses of IOLoop to override the default logging of
Ben Darnell [Thu, 4 Mar 2010 03:14:45 +0000 (19:14 -0800)] 
Allow subclasses of IOLoop to override the default logging of
uncaught exceptions in callbacks.

15 years agoEnsure that self.io_loop is set in HTTPServer.start(), so that HTTPServer.stop
Ben Darnell [Thu, 4 Mar 2010 01:22:48 +0000 (17:22 -0800)] 
Ensure that self.io_loop is set in HTTPServer.start(), so that HTTPServer.stop
can clean up correctly.

15 years agoRevamp logging configuration.
Ben Darnell [Tue, 2 Mar 2010 02:55:38 +0000 (18:55 -0800)] 
Revamp logging configuration.

* If --logging=none, tornado will not touch the python logging config.
* Colored output is optional.  If curses is not available or stderr is not
  a tty, non-colorized output will be used.
* Log output to stderr can be suppressed with --log_to_stderr=false
* Logs can be written to a file (non-colorized) with --log_file_prefix.
  Logs will be rotated, which can be controlled with --log_file_max_size
  and --log_file_num_backups.
* By default, logs go to a file if --log_file_prefix is set and to stderr
  if it is not.  To log to both stderr and a file, --log_to_stderr must
  be set to true explicitly.

15 years agoCall the close() method on the wsgi response object if it exists.
Ben Darnell [Sat, 27 Feb 2010 00:36:21 +0000 (16:36 -0800)] 
Call the close() method on the wsgi response object if it exists.
This is required by the WSGI spec, and cherrypy leaks memory without it.

15 years agoAdd SERVER_PROTOCOL variable to wsgi environment. This turns out to be
Ben Darnell [Fri, 26 Feb 2010 22:08:09 +0000 (14:08 -0800)] 
Add SERVER_PROTOCOL variable to wsgi environment.  This turns out to be
necessary for using cherrypy in a tornado WSGIContainer.

15 years agoAdd exc_info parameter to start_response() in WSGIContainer.
Ben Weaver [Fri, 26 Feb 2010 18:11:27 +0000 (13:11 -0500)] 
Add exc_info parameter to start_response() in WSGIContainer.

15 years agoWork around an odd error I occasionally see in autoreload (which causes
Ben Darnell [Thu, 25 Feb 2010 23:49:08 +0000 (15:49 -0800)] 
Work around an odd error I occasionally see in autoreload (which causes
autoreload to loop endlessly without restarting the process)

15 years agoAdd a workaround for a bug in os.execv when used on Mac OS X versions
Ben Darnell [Thu, 25 Feb 2010 00:37:11 +0000 (16:37 -0800)] 
Add a workaround for a bug in os.execv when used on Mac OS X versions
prior to 10.6 when there are multiple threads in the process.

15 years agoAlways reraise KeyboardInterrupt and SystemExit whenever IOLoop tries to
Ben Darnell [Wed, 24 Feb 2010 23:18:39 +0000 (15:18 -0800)] 
Always reraise KeyboardInterrupt and SystemExit whenever IOLoop tries to
swallow exceptions.

15 years agoFix ioloop._KQueue to work correctly when listening for both read and write.
Ben Darnell [Tue, 16 Feb 2010 20:47:32 +0000 (12:47 -0800)] 
Fix ioloop._KQueue to work correctly when listening for both read and write.

kqueue.control must be called separately for each type of filter, not just
once with the filters or'd together.

Fixes http://github.com/facebook/tornado/issues/issue/59/
Change adapted from
http://github.com/weaver/tornado/commit/97e528cf6b92bbb590579864962e2d51c22202e0

15 years agoSupport passing in cookie value directly in cases where you have to parse the value...
Bret Taylor [Fri, 5 Feb 2010 18:24:57 +0000 (10:24 -0800)] 
Support passing in cookie value directly in cases where you have to parse the value from other sources (e.g., from the URL for Flash requests). Also fix documentation error for Facebook Connect.

15 years agoDon't set content-length in StaticFileHandler unless we're actually
Ben Darnell [Thu, 4 Feb 2010 21:18:43 +0000 (13:18 -0800)] 
Don't set content-length in StaticFileHandler unless we're actually
sending the content.  Some browsers get confused by this (e.g. the
version of webkit embedded in fluid, but not the version used in chrome).

15 years agoAdd backwards compatability for secure cookie reading
Bret Taylor [Thu, 4 Feb 2010 08:02:09 +0000 (00:02 -0800)] 
Add backwards compatability for secure cookie reading

15 years agoSimplify JavaScript path ordering patch
Bret Taylor [Thu, 4 Feb 2010 07:51:20 +0000 (23:51 -0800)] 
Simplify JavaScript path ordering patch

15 years agoImport setuptools if it's available.
Ben Darnell [Wed, 3 Feb 2010 23:49:05 +0000 (15:49 -0800)] 
Import setuptools if it's available.

15 years agoMaking sure StaticFileHandlers get first, if not, a catch all handler would break...
Elias Torres [Wed, 3 Feb 2010 23:02:11 +0000 (18:02 -0500)] 
Making sure StaticFileHandlers get first, if not, a catch all handler would break the static handlers.

15 years agoInclude cookie name in signature so that a value signed for use in one
Ben Darnell [Wed, 3 Feb 2010 20:18:44 +0000 (12:18 -0800)] 
Include cookie name in signature so that a value signed for use in one
cookie can't be used in another.  Note that this invalidates all existing
signed cookies.

15 years agousing os specific path seperator
unknown [Wed, 3 Feb 2010 20:17:28 +0000 (14:17 -0600)] 
using os specific path seperator

15 years agoFix for maintaining script inclusion order
Elias Torres [Thu, 12 Nov 2009 22:27:11 +0000 (17:27 -0500)] 
Fix for maintaining script inclusion order

15 years agoAdded the ability to stop an HTTPServer. Mostly for unittesting.
Elias Torres [Thu, 26 Nov 2009 05:30:58 +0000 (00:30 -0500)] 
Added the ability to stop an HTTPServer. Mostly for unittesting.

15 years agoStop parsing arguments after --
Ben Darnell [Wed, 3 Feb 2010 20:06:43 +0000 (12:06 -0800)] 
Stop parsing arguments after --

15 years agoFix EINTR exception handling for non-english locales.
Ben Darnell [Wed, 3 Feb 2010 20:05:03 +0000 (12:05 -0800)] 
Fix EINTR exception handling for non-english locales.

15 years agoSet headers earlier in StaticFileHandler, so we return the correct
Ben Darnell [Wed, 3 Feb 2010 19:56:57 +0000 (11:56 -0800)] 
Set headers earlier in StaticFileHandler, so we return the correct
content-type with 304 results (instead of always returning text/html)

15 years agoAdd static_url_prefix setting to allow serving of static files somewhere
Ben Darnell [Wed, 3 Feb 2010 19:49:32 +0000 (11:49 -0800)] 
Add static_url_prefix setting to allow serving of static files somewhere
other than /static/

15 years agoAdded support for running Tornado on win32
unknown [Wed, 3 Feb 2010 16:03:01 +0000 (10:03 -0600)] 
Added support for running Tornado on win32

15 years agoAdd a hook to allow applications to modify the curl objects directly.
Ben Darnell [Fri, 29 Jan 2010 00:44:20 +0000 (16:44 -0800)] 
Add a hook to allow applications to modify the curl objects directly.

15 years agoMerge branch 'master' of git://github.com/bdarnell/tornado
Casey Muller [Thu, 28 Jan 2010 08:28:22 +0000 (00:28 -0800)] 
Merge branch 'master' of git://github.com/bdarnell/tornado

15 years agoallow connect and request timeouts of zero
Casey Muller [Thu, 28 Jan 2010 07:46:12 +0000 (23:46 -0800)] 
allow connect and request timeouts of zero

15 years agouse self.headers for cases where no headers were passed in
Casey Muller [Thu, 28 Jan 2010 07:35:17 +0000 (23:35 -0800)] 
use self.headers for cases where no headers were passed in

15 years agoMake parse_command_line initialize logging even when there are non-option
Ben Darnell [Fri, 22 Jan 2010 21:09:51 +0000 (13:09 -0800)] 
Make parse_command_line initialize logging even when there are non-option
arguments.

15 years agoMerge branch 'master' of git://github.com/facebook/tornado
Ben Darnell [Fri, 22 Jan 2010 21:08:33 +0000 (13:08 -0800)] 
Merge branch 'master' of git://github.com/facebook/tornado

15 years agoAdd HTML 5 WebSocket support (see http://bret.appspot.com/entry/web-sockets-in-tornado)
Bret Taylor [Mon, 18 Jan 2010 19:39:39 +0000 (11:39 -0800)] 
Add HTML 5 WebSocket support (see http://bret.appspot.com/entry/web-sockets-in-tornado)

15 years agoFix httpclient / epoll interaction errors, per http://groups.google.com/group/python...
Bret Taylor [Mon, 18 Jan 2010 05:12:24 +0000 (21:12 -0800)] 
Fix httpclient / epoll interaction errors, per http://groups.google.com/group/python-tornado/browse_thread/thread/276059a076593266. Thanks everyone for the patch and discussion.

15 years agoCatch both IOError and OSError in another place.
Ben Darnell [Sat, 16 Jan 2010 04:27:42 +0000 (20:27 -0800)] 
Catch both IOError and OSError in another place.

15 years agoCatch IOError in addition to OSError in IOLoop.remove_handler
Ben Darnell [Sat, 16 Jan 2010 02:42:00 +0000 (18:42 -0800)] 
Catch IOError in addition to OSError in IOLoop.remove_handler
(friendfeed's epoll module throws OSError, while the one in the standard
library throws IOError)

15 years agofb demo fix
Benjamin Golub [Thu, 14 Jan 2010 11:07:58 +0000 (06:07 -0500)] 
fb demo fix

15 years agoFix new connection close handler for WSGI handlers
Bret Taylor [Mon, 11 Jan 2010 22:17:27 +0000 (14:17 -0800)] 
Fix new connection close handler for WSGI handlers

15 years agoAdd reverse_url to RequestHandler class as well
Bret Taylor [Mon, 11 Jan 2010 19:53:21 +0000 (11:53 -0800)] 
Add reverse_url to RequestHandler class as well

15 years agoMerge remote branch 'bdarnell/master'
Bret Taylor [Mon, 11 Jan 2010 19:02:23 +0000 (11:02 -0800)] 
Merge remote branch 'bdarnell/master'

15 years agoUse time indepdent compare for secure cookie.
Gary Burd [Mon, 11 Jan 2010 18:31:41 +0000 (10:31 -0800)] 
Use time indepdent compare for secure cookie.

15 years agoAdd a method to RequestHandler that can be used to detect when the connection
Ben Darnell [Fri, 8 Jan 2010 03:06:11 +0000 (19:06 -0800)] 
Add a method to RequestHandler that can be used to detect when the connection
has been closed by the client.

This has always been supported via
self.request.connection.stream.set_close_callback, but putting it in
RequestHandler directly is more discoverable and less fragile.

15 years agoAdd a kqueue-based implementation of IOLoop for BSD/Mac systems.
Ben Darnell [Fri, 8 Jan 2010 02:53:47 +0000 (18:53 -0800)] 
Add a kqueue-based implementation of IOLoop for BSD/Mac systems.

The main reason for this is to be able to detect when a connection has
been closed on the other side.
(http://github.com/facebook/tornado/issues/#issue/37)

This has been supported with epoll but not select, and it turned out to be
easier to add kqueue support than to figure out how to detect and handle
this case with select.

This change has not been tested in a production environment, but I have tested
it on my mac (10.6) and everything appears to work, and
IOStream.set_close_callback now works as expected.

15 years agoDon't try to write to a stream that was closed out from under us.
Ben Darnell [Tue, 29 Dec 2009 01:55:00 +0000 (17:55 -0800)] 
Don't try to write to a stream that was closed out from under us.
This should get rid of all the "exception after headers written" spam
in our logs.

15 years agoAdd httpclient support for the delete method.
Ben Darnell [Tue, 29 Dec 2009 01:27:05 +0000 (17:27 -0800)] 
Add httpclient support for the delete method.

15 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.

15 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().

15 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

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

15 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.

15 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

15 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

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

15 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

15 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

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

15 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

15 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.

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

15 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

15 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.

15 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

15 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

15 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)

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

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

15 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

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

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

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

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

15 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

15 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

15 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

15 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

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

15 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

15 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