mirror of
https://github.com/django/django.git
synced 2025-10-15 09:49:21 +00:00
Thanks to olau@iola.dk, Suor for the report Backport of r11623 from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11624 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
481 B
Python
14 lines
481 B
Python
from django.conf.urls.defaults import *
|
|
|
|
import views
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^request_attrs/$', views.request_processor),
|
|
(r'^auth_processor_no_attr_access/$', views.auth_processor_no_attr_access),
|
|
(r'^auth_processor_attr_access/$', views.auth_processor_attr_access),
|
|
(r'^auth_processor_user/$', views.auth_processor_user),
|
|
(r'^auth_processor_perms/$', views.auth_processor_perms),
|
|
(r'^auth_processor_messages/$', views.auth_processor_messages),
|
|
)
|