Re: [Web-SIG] Async API for Python

2008-09-10 Thread Manlio Perillo
Jerry Spicklemire ha scritto: Sorry, if this turns up twice ... Phillip J. Eby wrote, on Tue Jul 29 03:21:18 CEST 2008: "There is no async API that's part of WSGI itself, and it's unlikely there will ever be one unless there ends up being an async API for Python as well." http://mail.python.or

Re: [Web-SIG] problem with wsgiref.util.request_uri and decoded uri

2008-09-10 Thread Andrew Clover
Manlio Perillo wrote: On the other hand, if the WSGI gateway *do* decode the uri, I can no more handle '/' in uri. Correct. CGI requires that '%2F' is decoded, and hence indistinguishable from '/' when it gets to the application. And WSGI inherits CGI's flaws for compatibility. request_ur

Re: [Web-SIG] Keg - A python web framework

2008-09-10 Thread Dirk Holtwick
Hi, maybe you'd like to have a look at just another Python framework that I'm writing ;) It seems that the goals you describe fit mine too. The project home is here: http://code.google.com/p/pyxer/ You get the best impression of what it is all about if you check out the SVN repository and have

[Web-SIG] a new implementation of multipart/form-data parser

2008-09-10 Thread Manlio Perillo
Hi all. For my WSGI framework I have implemented a multipart/form-data parser. http://hg.mperillo.ath.cx/wsgix/diff/70aacc4a8301/wsgix/parse.py The code has been adapted from cgi.parse_multidata. I think that the function is more robust of FieldStorage, since you can set a max size for field d

Re: [Web-SIG] wsgi.org server

2008-09-10 Thread Noah Gift
On Wed, Sep 10, 2008 at 8:54 AM, Stephan Diehl <[EMAIL PROTECTED]> wrote: > Hi, > > I've just upgraded the wsgi.org server to moin 1.7.2 and a mod_wsgi adapter. > Please tell me, if there's any problem. > Has somebody a good idea for a 'wsgi' or 'wsgi powered' logo? I think something with tentacle

[Web-SIG] wsgi.org server

2008-09-10 Thread Stephan Diehl
Hi, I've just upgraded the wsgi.org server to moin 1.7.2 and a mod_wsgi adapter. Please tell me, if there's any problem. Has somebody a good idea for a 'wsgi' or 'wsgi powered' logo? I'd really like to make the look a bit nicer, but my own design skills are not that good... any ideas welcome.

[Web-SIG] Async API for Python

2008-09-10 Thread Jerry Spicklemire
Sorry, if this turns up twice ... Phillip J. Eby wrote, on Tue Jul 29 03:21:18 CEST 2008: "There is no async API that's part of WSGI itself, and it's unlikely there will ever be one unless there ends up being an async API for Python as well." http://mail.python.org/pipermail/web-sig/2008-July/00

[Web-SIG] Keg - A python web framework

2008-09-10 Thread eghansah
Hi, I've been working on a python web framework which I think might be of interest to you. Details may be found at http://code.google.com/p/keg/wiki/Concept. All suggestions or comments will be greatly appreciated. Thank you. ___ Web-SIG mailing list