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