Re: Pylons Sprint in Northern California (In May or June)

2008-03-26 Thread Ben Bangert
On Mar 26, 2008, at 8:26 PM, Eric Ongerth wrote: Is there a minimum experience level? Decent Python experience and familiarity with PEP8 should cover it. Cheers, Ben smime.p7s Description: S/MIME cryptographic signature

Re: Pylons Sprint in Northern California (In May or June)

2008-03-26 Thread Eric Ongerth
Ben, Is there a minimum experience level? On Mar 25, 1:52 pm, Ben Bangert <[EMAIL PROTECTED]> wrote: > I'm looking at times to hold a Pylons Sprint, and thought I'd throw 2 > dates out to see what works best for those interested in attending > (and to ensure its not conflicting with some other

Problem with routes sub_domain

2008-03-26 Thread Taras
Hi all, I have some strange problem with routes sub_domain: Following code: url_for(''member", sub_domain="weko") generates http://weko.example.com:5000/ That is exactly what required. But if the controller name begins with a / to turn-off route-memory url_for(''/member", sub_domain="name") ge

Re: Problems with accessing request/session in middleware

2008-03-26 Thread Mike Orr
On Wed, Mar 26, 2008 at 5:30 AM, mickolka <[EMAIL PROTECTED]> wrote: > > I have been thinking about a heresy the past week, that instead of > > improving WSGI maybe we should just leapfrog it to a WebOb-based chain > > of servers, applicaiions, and middleware. Then the protocol could > > just

Re: Problems with accessing request/session in middleware

2008-03-26 Thread mickolka
Mike thanks for great post again, For now I use 1) but maybe will think about webob after my product released. > I have been thinking about a heresy the past week, that instead of > improving WSGI maybe we should just leapfrog it to a WebOb-based chain > of servers, applicaiions, and middleware.