[google-appengine] Re: Difficulty Serving Static Image with static_files handler

2008-12-15 Thread Marzia Niccolai
Hi Dylan, H, this is confusing because it works perfectly for me. I made a simple application: static - photos - folder - image.jpg - folder2 - image.jpg [different image] With this in my app.yaml: - url: /photos/(.*)/(.*\.(gif|jpg)) static_files: static/photos/\1/\2 upload

[google-appengine] Re: Difficulty Serving Static Image with static_files handler

2008-12-15 Thread Dylan Lorimer
Hi Marzia - Thanks for your reply. So unfortunately I don't that the order of the app.yaml entries is the culprit. Here's my app.yaml: handlers: - url: /photos/(.*)/(.*\.(gif|png|jpg)) static_files: static/photos/\1/\2 upload: static/photos/(.*)/(.*\.(gif|png|jpg)) - url: /css static_dir:

[google-appengine] Re: Difficulty Serving Static Image with static_files handler

2008-12-16 Thread dk
I'm having the same problem. The strange thing is that I have other static content that serves up just fine. It seems only the images I tried to add today are not found. Let me know if you come up with anything. -dk On Dec 15, 11:31 pm, Dylan Lorimer wrote: > Hi Marzia - > > Thanks for your r

[google-appengine] Re: Difficulty Serving Static Image with static_files handler

2008-12-16 Thread dk
could case sensitivity be the problem here? On Dec 15, 11:31 pm, Dylan Lorimer wrote: > Hi Marzia - > > Thanks for your reply. So unfortunately I don't that the order of the > app.yaml entries is the culprit. Here's my app.yaml: > > handlers: > - url: /photos/(.*)/(.*\.(gif|png|jpg)) >   static_

[google-appengine] Re: Difficulty Serving Static Image with static_files handler

2008-12-16 Thread Dylan Lorimer
Yes, as embarrassing as it is, case sensitivity was the problem. This stumped me for literally 3 days! Why would it not be an issue on my Mac, but when deployed to App Engine it became an issue? Wait...I'm guessing it's the Mac's filesystem, right? Anyway, it works now... Cheers, dylan On Dec 1

[google-appengine] Re: Difficulty Serving Static Image with static_files handler

2008-12-16 Thread Jesaja Everling
AFAIK, OSX is not case sensitive, while it is case preserving. One more reason to use linux! :P On Tue, Dec 16, 2008 at 7:09 PM, Dylan Lorimer wrote: > > Yes, as embarrassing as it is, case sensitivity was the problem. This > stumped me for literally 3 days! Why would it not be an issue on my >