On Feb 9, 2008 2:29 PM, Marty Alchin <[EMAIL PROTECTED]> wrote:

>
> On 2/9/08, Brandon Taylor <[EMAIL PROTECTED]> wrote:
> > Any way, here is my current urls.py document:
> >
> > from django.conf.urls.defaults import *
> > from django.conf import settings
> > from btaylor_design.views import home
> >
> > urlpatterns = patterns('',
> >     (r'', home),
> > )
>
> Don't bother reading any further than this. Your problem begins before
> you even get into static file serving. Your regular expression here is
> empty, which means it will *always* match *everything* regardless of
> what else you specify after the fact.
>
> If, as I suspect, this is supposed to just serve requests to the
> domain's root, you'll want to change it to the following:
>
>    (r'^$', home),
>
> That will make sure it matches *just* the root, rather than matching
> everything in sight. You see, Django was hitting this and serving it
> up, without even looking for any other url patterns. In fact, I'll
> wager that if you fire up
> http://localhost:8000/site_media/my_image.jpg in your browser, you'll
> see the exact same thing as http://localhost:8000/.
>

Which also explains this:

[09/Feb/2008 11:58:42] "GET / HTTP/1.1" 200 39
[09/Feb/2008 11:58:42] "GET /site_media/my_image.jpg HTTP/1.1" 200 39

namely that the request for / and the jpg both returned 39 bytes.  That
looked a bit odd to me but I hadn't gotten a chance to look in any detail at
your config.  It makes perfect sense if the requests are begin served by the
same view.

Beside the point now, but one way to see if your static.serve setup is point
at what you expect is to include 'show_indexes': True in the dict supplied
in the urlpattern spec.  That way you can bring up a directory listing view
in your browser of exactly what files the static server will be serving up,
and double check that the associated urls you see in your browser window are
what you are supplying in your templates.

Karen

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