Re: Problems with serving static files

2011-02-24 Thread Tom Evans
On Thu, Feb 24, 2011 at 1:39 AM, Roy Smith wrote: > I'm running r15624, OSX-10.6.5, Python-2.6.1 > > In my top-level urls.py, I have: > >    # Serve static > files >    (r'^static/(?P.*)$', >     'django.views.static.serve', >     {'document_root': '/Users/roy/dev/try.django/mysite/static', >    

Problems with serving static files

2011-02-23 Thread Roy Smith
I'm running r15624, OSX-10.6.5, Python-2.6.1 In my top-level urls.py, I have: # Serve static files (r'^static/(?P.*)$', 'django.views.static.serve', {'document_root': '/Users/roy/dev/try.django/mysite/static', 'show_indexes': True}), If I go to http://localhost:8000/stati