Pylons 0.9.7 on production.ini and email notification

2009-07-02 Thread Tomasz Narloch
I have working pylons on mod_wsgi In production.ini I have: [DEFAULT] debug = true # Uncomment and replace with the address which should receive any error reports email_to = my_em...@server smtp_server = localhost error_email_from = er...@server ... this is working on mod_wsgi only when I have

Pylons Book: NotImplementedError: Action 'view' is not implemented

2009-07-02 Thread phipster
Hi, I'm working through the SimpleSite example project in the the online version of the Pylons Book. At the end of the Changing the Routing section of Chapter 14, when as instructed I browse http://localhost:5000/ expecting to see the same result as browsing http://localhost:5000/page/view/6,

Re: Pylons Book: NotImplementedError: Action 'view' is not implemented

2009-07-02 Thread phipster
OK, figured it out after diffing my code against the samples from the book site (http://www.apress.com/book/downloadfile/4218) - I had typed result['controller'] = 'nav' instead of result['controller'] = 'page' in the final clause of the try block in the parse() function in routing.py. Kinda