An issue I think I have with that is that I am trying to implement a RESTful
style interface and I need to pass parameters from the url to the classes. I
don't know how to do that from app.yaml. Also I am trying to keep everything
in main for performance reasons. But nice to know it is available! I guess I
should sit down and read all the docs at some point!
# in main.py
application = webapp.WSGIApplication([
('/Foo', Foo),
(r'/Blah/(.*)/Bar/(.*)/Drop', DropRequest),
], debug=True)
On Tue, Sep 23, 2008 at 11:32 AM, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> You might consider instead using the app.yaml configuration login: required
> for URLs that require login. See our docs:
> http://code.google.com/appengine/docs/configuringanapp.html
>
> -Marzia
>
>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---