[google-appengine] Re: Automatically adding a static index.html to a URL with app.yaml

2008-09-26 Thread SIE
Adam, Good. We'll be precise and say that the solution to this problem is to have the HTML use relative URLs based at the home directory instead of the current directory. Thanks On Sep 25, 11:23 pm, Adam Fisk <[EMAIL PROTECTED]> wrote: > Just for sanity's sake, both are relative URLs.  It would

[google-appengine] Re: Automatically adding a static index.html to a URL with app.yaml

2008-09-25 Thread SIE
Wooble, Your solution of using an absolute URL instead of a relative one worked. Many thanks! On Sep 25, 3:51 pm, Wooble <[EMAIL PROTECTED]> wrote: > > This isn't a problem with App Engine, that's (expected) behavior by > the web browser caused by a relative URL. > > The solution is to refer

[google-appengine] Re: Automatically adding a static index.html to a URL with app.yaml

2008-09-25 Thread SIE
Marzia, Thanks for your reply. I cut and pasted your handlers into my app.yaml file, but the error persists, and it may be a fundamental problem. If the main directory contains a subdirectory dir with two files index.html styles.css with index.html including styles.css, then with the handlers

[google-appengine] Re: Automatically adding a static index.html to a URL with app.yaml

2008-09-24 Thread SIE
Marzia, Thank you for your reply. I tried the code you suggested, and App Engine still incorrectly searches for styles.css (the file index.html includes) in the home directory instead of in the subdirectory dir. Back to the drawing board. On Sep 24, 9:37 am, "Marzia Niccolai" <[EMAIL PROTECTE

[google-appengine] Automatically adding a static index.html to a URL with app.yaml

2008-09-23 Thread SIE
Dear Group, Suppose that your home directory has a subdirectory dir with two static files index.html styles.css (index.html includes styles.css). You'd like an app.yaml file that will return http://myapp.appspot.com/dir/index.html in response to either of http://myapp.appspot.com/dir/ http:/