Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.


i have a big problem with images for my project with python (appspots.com).

How to configure the app.yaml for images? My Images are in the directory /css/images/xy.png

The log say:

INFO 2012-04-22 17:29:42,601 dev_appserver.py:2884] "GET /css/images/ui-bg_glass_75_e6e6e6_1x400.png HTTP/1.1" 404 -

My app.yaml (only handlers):

- url: /js
  static_dir: js

- url: /css/main.css 
  static_files: css/main.css
  upload: css/main.css 

- url: /css/jquery-ui-1.8.19.custom.css 
  static_files: css/jquery-ui-1.8.19.custom.css
  upload: css/jquery-ui-1.8.19.custom.css 

- url: .*
  script: main.py

- url: /css/images/.*
  static_dir: css/images

I hope that you can help me :)

share|improve this question

1 Answer

up vote 5 down vote accepted

The problem is that you have .* before /css/images./* and that pattern matches everything. Rearrange it like this:

- url: /js
  static_dir: js

- url: /css/main.css 
  static_files: css/main.css
  upload: css/main.css 

- url: /css/jquery-ui-1.8.19.custom.css 
  static_files: css/jquery-ui-1.8.19.custom.css
  upload: css/jquery-ui-1.8.19.custom.css 

- url: /css/images
  static_dir: css/images

- url: .*
  script: main.py

EDIT: Try removing the /.* from the end of the pattern, as illustrated above.

share|improve this answer
Does not work // INFO 2012-04-22 18:09:54,801 dev_appserver.py:2884] "GET /css/images/ui-icons_888888_256x240.png HTTP/1.1" 404 - // Here the "new" app.yaml: pastebin.com/sr2GeLyC | And here the Log from console: pastebin.com/zr9RVAGS – StClaus Apr 22 '12 at 18:14
THANKS! It works! :) – StClaus Apr 22 '12 at 18:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.