Re: Pylon with Apache

2007-04-29 Thread Wichert Akkerman
There is also another way of integrating with apache: http://www.rkblog.rk.edu.pl/w/p/mod_wsgi/ Wichert. Previously Graham Dumpleton wrote: On Apr 28, 6:40 am, Cliff Wells [EMAIL PROTECTED] wrote: On Fri, 2007-04-27 at 07:36 -0600, Orr, Steve wrote: What are the

Re: Pylon with Apache

2007-04-29 Thread Cliff Wells
On Sun, 2007-04-29 at 11:21 +0200, Wichert Akkerman wrote: There is also another way of integrating with apache: http://www.rkblog.rk.edu.pl/w/p/mod_wsgi/ When I saw this module, I thought oh, cool and actually (briefly) considered trying to port it to Nginx, but came back to the arguments I

Dave Kuhlman Pylons docs

2007-04-29 Thread voltron
The Pylons docs from Dave Kuhlman are excellent! These really cleared up my slightly hazy view of Pylons. In fact, almost all of the questions which I had lined up to ask, and those I have asked are discussed very clearly in it. Would the Pylons Dev consider adding a link from the Pylons page or

extending BaseController

2007-04-29 Thread Antipin Aleksei
Hi I don't understand why simple inheritance does not work: base.py class BaseController(WSGIController): def __call__(self, environ, start_response): # Insert any code to be run per request here. The Routes match # is under environ['pylons.routes_dict'] should you want to

Re: extending BaseController

2007-04-29 Thread Ben Bangert
On Apr 29, 2007, at 8:32 AM, Antipin Aleksei wrote: Here I get error *type 'exceptions.AttributeError': type object 'BaseController' has no attribute 'user'* In BaseController I tried user = classmethod(user), in IndexController - self.user(), self.user(self), BaseController.user(),