summaryrefslogtreecommitdiff
path: root/django/conf
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2006-03-07 02:06:28 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2006-03-07 02:06:28 +0000
commit0ec5a547c949e9b52209717108c4e2ac475238e4 (patch)
tree1c04b2d2a1dc7b361aab2ac69a5e73eb1643d29f /django/conf
parent345463ad8eb9ac0bd06a47a1aab84c00a4c71d71 (diff)
magic-removal: Moved django.views.auth.login.* to django.contrib.auth.views
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2496 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/conf')
-rw-r--r--django/conf/urls/registration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/conf/urls/registration.py b/django/conf/urls/registration.py
index 5a56fe5e05..be875f5e4d 100644
--- a/django/conf/urls/registration.py
+++ b/django/conf/urls/registration.py
@@ -1,9 +1,9 @@
from django.conf.urls.defaults import *
urlpatterns = patterns('',
- (r'^login/$', 'django.views.auth.login.login'),
- (r'^logout/$', 'django.views.auth.login.logout'),
- (r'^login_another/$', 'django.views.auth.login.logout_then_login'),
+ (r'^login/$', 'django.contrib.auth.view.login'),
+ (r'^logout/$', 'django.contrib.auth.views.logout'),
+ (r'^login_another/$', 'django.contrib.auth.views.logout_then_login'),
(r'^register/$', 'ellington.registration.views.registration.signup'),
(r'^register/(?P<challenge_string>\w{32})/$', 'ellington.registration.views.registration.register_form'),