mirror of
https://github.com/django/django.git
synced 2025-01-24 00:59:20 +00:00
d725cc9734
A description of the new features can be found in the new [http://www.djangoproject.com/documentation/upload_handing/ upload handling documentation]; the executive summary is that Django will now happily handle uploads of large files without issues. This changes the representation of uploaded files from dictionaries to bona fide objects; see BackwardsIncompatibleChanges for details. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7814 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
364 B
Python
11 lines
364 B
Python
from django.conf.urls.defaults import *
|
|
import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^upload/$', views.file_upload_view),
|
|
(r'^verify/$', views.file_upload_view_verify),
|
|
(r'^echo/$', views.file_upload_echo),
|
|
(r'^quota/$', views.file_upload_quota),
|
|
(r'^quota/broken/$', views.file_upload_quota_broken),
|
|
)
|