[google-appengine] Error pages for 404 etc

2009-02-23 Thread Dave Warnock
error(404)? Thanks Dave -- Dave Warnock: http://42.blogs.warnock.me.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com

[google-appengine] Re: Error pages for 404 etc

2009-02-23 Thread Dave Warnock
Thanks for the help. that works. 2009/2/23 Steffen 'stefreak' Neubauer stefr...@stefreak.de: On Mon, 23 Feb 2009 23:25:48 + Dave Warnock dwarn...@gmail.com wrote: How/where do I define my 404 page and get it to be displayed when I declare error(404)? You have to send it as response

[google-appengine] Re: CPU accounting for Datastore writes and pricing feedback

2009-02-17 Thread Dave Warnock
multiple versions of each layer. Obviously key problems are complexity (but clean REST API's should keep that to a minimum) and time lag between capture and report. Just an idea of the top of my head (and you would need to check terms of service would be ok with this). Dave -- Dave Warnock: http

[google-appengine] Re: CPU accounting for Datastore writes and pricing feedback

2009-02-17 Thread Dave Warnock
is not available via memcache it would grab it via api calls to the data store app. Ok slower then than direct bigtable access but just the same principal (except maybe you add a bit more processing between bigtable and memcache to get the data ready for the report). Dave-- Dave Warnock: http://42

[google-appengine] Re: Authorization Tools for App Engine Developers

2008-12-30 Thread Dave Warnock
At $1,000 per application I imagine you are not expecting to sell many copies! -- Dave Warnock: http://42.blogs.warnock.me.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post

[google-appengine] Web app multiple scripts and urls for wsgi

2008-12-23 Thread Dave Warnock
the app.yaml has multiple urls going to different scripts. So far it seems to me that if I have in app.yaml - url: /people/.* script: people.py I am required to have in people.py application = webapp.WSGIApplication([('/people/.*', People)]) Am I correct? Thanks Dave -- Dave Warnock: http

[google-appengine] Re: Web app multiple scripts and urls for wsgi

2008-12-23 Thread Dave Warnock
Many thanks. It would be good to have examples somewhere in the docs of 1 handler in app.yaml being picked up by several wsgi classes (unless it is considered bad practice). Dave PS Sorry for the triplicate message. -- Dave Warnock: http://42.blogs.warnock.me.uk