mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +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
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('',
|
|
# test_client modeltest urls
|
|
(r'^test_client/', include('modeltests.test_client.urls')),
|
|
(r'^test_client_regress/', include('regressiontests.test_client_regress.urls')),
|
|
|
|
# File upload test views
|
|
(r'^file_uploads/', include('regressiontests.file_uploads.urls')),
|
|
|
|
# Always provide the auth system login and logout views
|
|
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
|
|
(r'^accounts/logout/$', 'django.contrib.auth.views.logout'),
|
|
|
|
# test urlconf for {% url %} template tag
|
|
(r'^url_tag/', include('regressiontests.templates.urls')),
|
|
|
|
# django built-in views
|
|
(r'^views/', include('regressiontests.views.urls')),
|
|
|
|
# test urlconf for middleware tests
|
|
(r'^middleware/', include('regressiontests.middleware.urls')),
|
|
|
|
(r'^utils/', include('regressiontests.utils.urls')),
|
|
|
|
# test urlconf for syndication tests
|
|
(r'^syndication/', include('regressiontests.syndication.urls')),
|
|
)
|