summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2007-02-27 00:15:11 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2007-02-27 00:15:11 +0000
commit21860fe23ae4b7923c5c92f75a79f272cc6ab103 (patch)
tree1411494b4904c014acbb6625caf3572627ba32f8
parent8930f3d02771d9852ee46a0a561ef9ce3636f719 (diff)
Removed two vestigal URLconfs that refer to Ellington or to non-existant views.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4632 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/urls/admin_password_reset.py6
-rw-r--r--django/conf/urls/registration.py19
2 files changed, 0 insertions, 25 deletions
diff --git a/django/conf/urls/admin_password_reset.py b/django/conf/urls/admin_password_reset.py
deleted file mode 100644
index afa078205a..0000000000
--- a/django/conf/urls/admin_password_reset.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from django.conf.urls.defaults import *
-
-urlpatterns = patterns('django.views',
- (r'^$', 'registration.passwords.password_reset', {'is_admin_site' : True}),
- (r'^done/$', 'registration.passwords.password_reset_done'),
-)
diff --git a/django/conf/urls/registration.py b/django/conf/urls/registration.py
deleted file mode 100644
index 9b41e434f9..0000000000
--- a/django/conf/urls/registration.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from django.conf.urls.defaults import *
-
-urlpatterns = patterns('',
- (r'^login/$', 'django.contrib.auth.views.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'),
-
- (r'^profile/$', 'ellington.registration.views.profile.profile'),
- (r'^profile/welcome/$', 'ellington.registration.views.profile.profile_welcome'),
- (r'^profile/edit/$', 'ellington.registration.views.profile.edit_profile'),
-
- (r'^password_reset/$', 'django.contrib.auth.views.password_reset'),
- (r'^password_reset/done/$', 'django.contrib.auth.views.password_reset_done'),
- (r'^password_change/$', 'django.contrib.auth.views.password_change'),
- (r'^password_change/done/$', 'django.contrib.auth.views.password_change_done'),
-)