On 6/24/07, robo <[EMAIL PROTECTED]> wrote: > (r'^images/schematics/(?P<path>.*)$', 'django.views.static.serve', > {'document_root': '/www/htdocs/gfs_chefrevival/images/schematics'}), ...
I think you want a trailing slash after path: r'^images/schematics/(?P<path>.*)/$' > I also suspect that this doesn't work because javascript tries to get > the image from a static path (instead of a human clicking on a path > link and therefore triggering the URL capture). I don't mean to offend you, but I think you've misunderstood how the web works. There's really no difference in the HTTP request of a human clicking a link and the HTTP request caused by an image tag (or javascript image.src assignment). Please get Firebug (a Firefox extension) and observe the network traffic caused by your JS and by directly loading the image. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---