Re: Iteration in Mako templates

2007-05-16 Thread skip . montanaro
dan To be fair, I'd say they are both nuts. Hmmm... I wonder if they are friends? ;-) -- Skip Montanaro - [EMAIL PROTECTED] - http://www.webfast.com/~skip/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: New document -- first Pylons site how-to

2007-02-17 Thread skip . montanaro
Dave This document does not answer questions about how to structure a Dave Pylons application because I don't know how to do that. Maybe you Dave can instruct me on application structure. I'd also be interested in a what-goes-where-and-why tutorial. Mike I started putting

Re: help with google maps + pylons app

2007-02-17 Thread skip . montanaro
sqad Nevermind, figured it out... and the solution was ...? Skip --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To

Re: New document -- first Pylons site how-to

2007-02-14 Thread skip . montanaro
Dave This document does not answer questions about how to structure a Dave Pylons application because I don't know how to do that. Maybe you Dave can instruct me on application structure. I'd also be interested in a what-goes-where-and-why tutorial. -- Skip Montanaro - [EMAIL

Re: Myghty - Mako?

2007-01-27 Thread skip . montanaro
Aside from changing .myt to .mak do I need to do anything else? Is there a Mako replacement for myghty.exception? Max I should configure Mako as a supported template engine. Oh, yeah, been there, done that, checked out both of those pages as well. I was specifically curious

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

When does controllers/template/view get called?

2007-01-25 Thread Skip Montanaro
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 example) http://localhost:5001/nonexistent I don't see anything like a TypeError. Instead,