mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
26b8122087
This applies to both our own [test] code and documentation examples. Also: * Moved the functions and handlers from `django.conf.urls.defaults` up to `django.conf.urls` deprecating the former module. * Added documentation for `handler403`. * Tweaked the URLs topic document a bit. Thanks to pupeno and cdestigter for their great work contributing patches. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
16 lines
589 B
Python
16 lines
589 B
Python
# coding: utf-8
|
|
from django.conf.urls import patterns
|
|
|
|
import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^middleware_exceptions/view/$', views.normal_view),
|
|
(r'^middleware_exceptions/not_found/$', views.not_found),
|
|
(r'^middleware_exceptions/error/$', views.server_error),
|
|
(r'^middleware_exceptions/null_view/$', views.null_view),
|
|
(r'^middleware_exceptions/permission_denied/$', views.permission_denied),
|
|
|
|
(r'^middleware_exceptions/template_response/$', views.template_response),
|
|
(r'^middleware_exceptions/template_response_error/$', views.template_response_error),
|
|
)
|