> I could not find any instructions on how to use settings.py with the > plain GAE. However, I came accross one of your older posts here: > > http://groups.google.com/group/google-appengine/browse_thread/thread/... > > In fact, that is exactly what I need! The idea of declaring a > BaseHandler is just brilliant for dealing with Error 500, while the > catch-all approach deals well with 404.
Built-in Django 0.96 and the webapp framework (which you call plain GAE) are completely different beasts. The templates trick works only for Django and there's no settings.py in webapp. If you are using the latter, you can indeed use the base handler to catch 500 errors and a catch-all handler to deal with 404. Cheers, Alex --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
