mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
a2d8acbacd
This might fix #12037, but I cannot reproduce that bug. Refs #12037 git-svn-id: http://code.djangoproject.com/svn/django/trunk@11625 bcc190cf-cafb-0310-a4f2-bffc1f526a37
15 lines
544 B
Python
15 lines
544 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),
|
|
url(r'^userpage/(.+)/$', views.userpage, name="userpage"),
|
|
)
|