mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-05 13:14:46 +02:00

Part of this change is temporary for django-registration 1.0; later versions probably won't require the workaround URLs. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
# layerindex-web - URLs
|
|
#
|
|
# Based on the Django project template
|
|
#
|
|
# Copyright (c) Django Software Foundation and individual contributors.
|
|
# All rights reserved.
|
|
|
|
from django.conf.urls import patterns, include, url
|
|
from django.views.generic import RedirectView
|
|
from django.contrib.auth import views as auth_views
|
|
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^layerindex/', include('layerindex.urls')),
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
|
|
# override the default auth urls since django-registration 1.0 isn't Django 1.6 compatible
|
|
url(r'^password/change/$',
|
|
auth_views.password_change,
|
|
name='password_change'),
|
|
url(r'^password/change/done/$',
|
|
auth_views.password_change_done,
|
|
name='password_change_done'),
|
|
url(r'^password/reset/$',
|
|
auth_views.password_reset,
|
|
name='password_reset'),
|
|
url(r'^password/reset/done/$',
|
|
auth_views.password_reset_done,
|
|
name='password_reset_done'),
|
|
url(r'^password/reset/complete/$',
|
|
auth_views.password_reset_complete,
|
|
name='password_reset_complete'),
|
|
url(r'^password/reset/confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$',
|
|
auth_views.password_reset_confirm,
|
|
name='auth_password_reset_confirm'),
|
|
|
|
url(r'^accounts/', include('registration.backends.default.urls')),
|
|
url(r'^captcha/', include('captcha.urls')),
|
|
url(r'.*', RedirectView.as_view(url='/layerindex/', permanent=False)),
|
|
)
|
|
|