On 01/02/10 14:48, Eugene Wee wrote:
This works very well for admin media, uploaded files, and static files
referenced from within templates (as I pass MEDIA_URL to the
templates),

Just in case: note 'django.core.context_processors.media' exists to do that for you.

but for static files referenced by other static files,
e.g., stylesheets that refer to images, I end up having to manually
change say, /static/images/image.png to /images/image.png.


Um. You can use relative paths in css url(), so if you keep the css in the same location relative to your images on both servers the path change shouldn't be a problem for that case.

In [/static]/css/screen.css:

url('../images/image.png')

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to