> 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).

I thought that way because I couldn't find any other reason why the
path won't work, especially because this is in Django. I've always
believed what you said before this problem arose, but you are still
correct though.

> Please get Firebug (a Firefox extension) and observe the network
> traffic caused by your JS and by directly loading the image.

FireFox is crashing because of some specific problems I've yet to fix,
that's why I'm using IE. Putty is giving me enough traffic. Right now
everytime I toggle the checkbox it shows the path "/images/
schematics/..."

Here's all the relevant code:
<!-- TEMPLATE -->
      function show_img(suf, val) {
        img = document.getElementById('image_' + val);
        img.src = '/images/schematics/SKU' + suf + '.jpg';
      }

<!-- URLConf -->
(r'^images/schematics/(?P<path>.*)/$', 'django.views.static.serve',
{'document_root': '/www/htdocs/gfs_chefrevival/images/schematics'}),

I've tried the url with both the "/$" and "$", none works.

<!-- PUTTY TRAFFIC -->
[25/Jun/2007 02:02:49] "GET /images/schematics/SKUrc.jpg HTTP/1.1" 304
0

If u guys have any great ideas I'll gladly scrap this up and implement
yours. THanks.


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to