Re: Basic HTML helpers

2010-01-13 Thread James Gardner
Just in case it is causing confusion it was Jonathan who responded rather than me. We are both J. Gardner but I'll still be posting as James Gardner from ja...@pythonweb.org. Jonathan, perhaps you could change your subscription settings to use your name as the name that gets displayed rather than

Re: Concurrency

2010-01-13 Thread Mike Orr
I don't know, and if anybody does know, they haven't said. But a Pylons request would run inside a tread / greenlet / process / async-thing. So you can make a HTTP server that spawns worker greenlets instead of threads. Maybe PasteHTTPServer can be subclassed for this. Then, if you get it working

Re: Basic HTML helpers

2010-01-13 Thread Mike Orr
Thanks for your feedback, James. On Wed, Jan 13, 2010 at 12:31 PM, jgard...@jonathangardner.net wrote: > On Dec 16 2009, 8:43 pm, Mike Orr wrote: >> A couple proposed helpers, one for doctypes and one to generate a >> complete HTML document.  What do you guys think of the API and >> semantics? >

Re: Concurrency

2010-01-13 Thread jgard...@jonathangardner.net
What about Python greenlets to handle concurrency? http://pypi.python.org/pypi/greenlet Basically, it's Stackless in CPython as a module import. On Dec 16 2009, 4:10 pm, Joan Miller wrote: > I've to starting to play with Go to manage the concurrency and it's > awesome. > > On 16 dic, 23:51, Dam

FastCGI with --reload

2010-01-13 Thread jgard...@jonathangardner.net
I'm curious if anyone has written a FastCGI dispatch script that incorporates the functionality of "paster serve --reload". Would someone be willing to share their code if they have? If not, any pointers would be appreciated. -- You received this message because you are subscribed to the Google G

Re: Basic HTML helpers

2010-01-13 Thread jgard...@jonathangardner.net
On Dec 16 2009, 8:43 pm, Mike Orr wrote: > A couple proposed helpers, one for doctypes and one to generate a > complete HTML document.  What do you guys think of the API and > semantics? > > http://bitbucket.org/bbangert/webhelpers/issue/13/doctype-helper > I like. > http://bitbucket.org/bbanger