On Nov 23, 9:47 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:

> I just want to call a html file and display it,but I'don't know how to
> do! foe example:

GAE serves dynamic (.py) and static (e.g. .html) files separately. You
need to specify which is which in your app.yaml file with a new static
handler.

For example:

- url: /(.*\.(gif|png|jpg))
  static_files: static/\1
  upload: static/(.*\.(gif|png|jpg))


The full details are here:
http://code.google.com/appengine/docs/configuringanapp.html

--Jonathan
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to