[google-appengine] Re: Help: Problem using WSGIApplication to automatically generate error page

2008-11-04 Thread Alexander Kojevnikov
yejun is right, your not_found handler does not have the get() method. Add "get = post" in your class definition or rename "post" to "get". On Nov 5, 11:57 am, Alok <[EMAIL PROTECTED]> wrote: > Here is my app.yaml: > > application: proshortsetf > version: 1 > runtime: python > api_version: 1 > >

[google-appengine] Re: Help: Problem using WSGIApplication to automatically generate error page

2008-11-04 Thread yejun
Put get=poest in your not_found handler. On Nov 4, 7:57 pm, Alok <[EMAIL PROTECTED]> wrote: > Here is my app.yaml: > > application: proshortsetf > version: 1 > runtime: python > api_version: 1 > > handlers: > - url: /blueprint >   static_dir: blueprint > - url: /candlestick >   static_dir: candl

[google-appengine] Re: Help: Problem using WSGIApplication to automatically generate error page

2008-11-04 Thread Alok
Here is my app.yaml: application: proshortsetf version: 1 runtime: python api_version: 1 handlers: - url: /blueprint static_dir: blueprint - url: /candlestick static_dir: candlestick - url: /.* script: main.py I have also posted the main.py code here: http://pastie.textmate.org/private/h

[google-appengine] Re: Help: Problem using WSGIApplication to automatically generate error page

2008-11-04 Thread Alexander Kojevnikov
Your code looks fine to me. Could you paste here your app.yaml file? On Nov 5, 11:20 am, Alok <[EMAIL PROTECTED]> wrote: > I am trying to use webapp.WSGIApplication to automatically map urls > that are not otherwise mapped to a special 'not_found_handler' which > would render a 'Page Not Found' r