Re: When does controllers/template/view get called?

2007-01-26 Thread Max Ischenko
Hi, On Jan 26, 6:02 am, Skip Montanaro [EMAIL PROTECTED] wrote: I modified controllers/template/view to def view(self, url): raise TypeError, url print sys.stderr, url return render_response(/%s.myt % url) If I visit (for

Re: When does controllers/template/view get called?

2007-01-26 Thread Skip Montanaro
Works just fine here. May be it's the version of Python interpreter (2.6)? What if you remove raise statement? The raise statement was only my last attempt to get something to work. Note also the print and the unprotected call to render_response(). If I define view() as suggested in its