[google-appengine] Add image to page with static folder

2014-07-21 Thread David Skinner
"./images/file.jpg" I think you need the dot. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to this

Re: [google-appengine] Add image to page with static folder

2014-07-21 Thread David Skinner
That is where mine are located. On Jul 18, 2014 12:07 AM, "Vinny P" wrote: > On Thu, Jul 17, 2014 at 4:51 AM, Mahyar wrote: > >> i have a problem to use image with static folder path in my page. this is >> my app.yaml >> I have templates, static/images, controllers (has MainHandler.py) folders >

Re: [google-appengine] Add image to page with static folder

2014-07-17 Thread Vinny P
On Thu, Jul 17, 2014 at 4:51 AM, Mahyar wrote: > i have a problem to use image with static folder path in my page. this is > my app.yaml > I have templates, static/images, controllers (has MainHandler.py) folders > and in my root i have main.py and app.yaml files. in my problem is when > page was

[google-appengine] Add image to page with static folder

2014-07-17 Thread Mahyar
i have a problem to use image with static folder path in my page. this is my app.yaml application: something version: 1 runtime: python27 api_version: 1 threadsafe: yes handlers: - url: /images static_dir: static/images - url: /favicon.ico static_files: static/favicon.ico upload: stati