Saturday, February 26, 2011

Re: serving static files

Are you sure you have that urlpattern in your project's urls.py rather than an app's urls.py?


Regards,
Andre

On Sat, Feb 26, 2011 at 8:14 AM, <s.apostolico@gmail.com> wrote:
it should work, but it's not clear why you want that. (This regex also
match "notvalidsite_media/image.jpg")

What did you get ?

Stefano

2011/2/26 snippetmaker <ayesa593@student.liu.se>:
> I admit that I am not so sure about how regular expressions work, I
> need to spend some time on these.
>
> I was trying to follow http://docs.djangoproject.com/en/1.2/howto/static-files/
>
> I did everything that the page said to no avail, in the end I changed
>
> (r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
>        {'document_root': '/path/to/media'}),
>
>
> to
>
> (r'site_media/(?P<path>.*)$', 'django.views.static.serve',
>        {'document_root': '/path/to/media'}),
>
> i mean i removed starting ^ in hope that the regular expression will
> ignore if something is extra in the start and it worked.
>
> Can somebody explain to point to somewhere that explains?
>
> --
> 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 django-users+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
>
>

--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.


--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment