summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/django/contrib/auth/urls.py
diff options
context:
space:
mode:
authorcoderick142017-05-17 15:40:18 +0530
committercoderick142017-05-17 15:41:00 +0530
commita1e0a5502f04da68b6a9ca8508dda3f9d7e1d055 (patch)
tree20181e6b1936f50ad48d8e35720d64a37566f558 /lib/python2.7/site-packages/django/contrib/auth/urls.py
parent6f4a84c1e58ff4d54aab94cbee26e995328b05b8 (diff)
downloadSBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.gz
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.bz2
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.zip
Upgrade to Django 1.11
- Database integration yet to be tested
Diffstat (limited to 'lib/python2.7/site-packages/django/contrib/auth/urls.py')
-rw-r--r--lib/python2.7/site-packages/django/contrib/auth/urls.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/python2.7/site-packages/django/contrib/auth/urls.py b/lib/python2.7/site-packages/django/contrib/auth/urls.py
deleted file mode 100644
index 801d133..0000000
--- a/lib/python2.7/site-packages/django/contrib/auth/urls.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# The views used below are normally mapped in django.contrib.admin.urls.py
-# This URLs file is used to provide a reliable view deployment for test purposes.
-# It is also provided as a convenience to those who want to deploy these URLs
-# elsewhere.
-
-from django.conf.urls import patterns, url
-
-urlpatterns = patterns('',
- url(r'^login/$', 'django.contrib.auth.views.login', name='login'),
- url(r'^logout/$', 'django.contrib.auth.views.logout', name='logout'),
- url(r'^password_change/$', 'django.contrib.auth.views.password_change', name='password_change'),
- url(r'^password_change/done/$', 'django.contrib.auth.views.password_change_done', name='password_change_done'),
- url(r'^password_reset/$', 'django.contrib.auth.views.password_reset', name='password_reset'),
- url(r'^password_reset/done/$', 'django.contrib.auth.views.password_reset_done', name='password_reset_done'),
- # Support old style base36 password reset links; remove in Django 1.7
- url(r'^reset/(?P<uidb36>[0-9A-Za-z]{1,13})-(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
- 'django.contrib.auth.views.password_reset_confirm_uidb36'),
- url(r'^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
- 'django.contrib.auth.views.password_reset_confirm',
- name='password_reset_confirm'),
- url(r'^reset/done/$', 'django.contrib.auth.views.password_reset_complete', name='password_reset_complete'),
-)