summaryrefslogtreecommitdiff
path: root/parts/django/tests/regressiontests/context_processors/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'parts/django/tests/regressiontests/context_processors/urls.py')
-rw-r--r--parts/django/tests/regressiontests/context_processors/urls.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/parts/django/tests/regressiontests/context_processors/urls.py b/parts/django/tests/regressiontests/context_processors/urls.py
new file mode 100644
index 0000000..30728c8
--- /dev/null
+++ b/parts/django/tests/regressiontests/context_processors/urls.py
@@ -0,0 +1,14 @@
+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"),
+)