aboutsummaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorDanilo Šegan <danilo@segan.org>2012-08-17 10:37:26 +0200
committerDanilo Šegan <danilo@segan.org>2012-08-17 10:37:26 +0200
commitccf0d4527f366d66fae5d5b4f862759637771a43 (patch)
treee4860ea0c27e06db067fd52a95d1d4bfbe82a4b3 /urls.py
parente3fe56ef9963474e86b175bc2cd62ef7ad587275 (diff)
Move openid URLs to /linaro-openid/ and change options to keep account details updated from LP.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/urls.py b/urls.py
index 593a4a9..6672adf 100644
--- a/urls.py
+++ b/urls.py
@@ -6,13 +6,13 @@ admin.autodiscover()
urlpatterns = patterns('',
- # Uncomment the admin/doc line below to enable admin documentation:
- url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
-
- # Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
- url(r'^openid/', include('django_openid_auth.urls')),
+ # Use "linaro-openid" to allow peaceful coexistence of both
+ # python-apache-openid and django-openid authentication on the
+ # same server. When we get rid of apache openid protection,
+ # we can go back to using just "openid" here.
+ url(r'^linaro-openid/', include('django_openid_auth.urls')),
url(r'^logout/$', 'django.contrib.auth.views.logout'),
# The license page...