Mercurial > public > sg101
view user_photos/urls.py @ 973:6f55c086db1e
Guess file extension based on content-type.
When downloading a file, and no path is supplied to store it, guess the file
extension using mimetypes and the content-type header.
Also supply a unit test for the HotLinkImageForm.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 01 Oct 2015 19:44:45 -0500 |
parents | 4f265f61874b |
children | 5ba2508939f7 |
line wrap: on
line source
"""URLs for the user_photos application.""" from django.conf.urls import patterns, url from django.views.generic import DetailView from user_photos.models import Photo from user_photos.views import GalleryView urlpatterns = patterns('', url(r'^upload/$', 'user_photos.views.upload', name='user_photos-upload'), url(r'^upload-ajax/$', 'user_photos.views.upload_ajax', name='user_photos-upload_ajax'), url(r'^photo/(?P<pk>\d+)/$', DetailView.as_view(model=Photo), name='user_photos-detail'), url(r'^gallery/(?P<username>[\w.@+-]{1,30})/$', GalleryView.as_view(), name='user_photos-gallery'), url(r'^delete/$', 'user_photos.views.delete', name='user_photos-delete'), url(r'^hotlink/$', 'user_photos.views.hotlink_image', name='user_photos-hotlink'), )