| # |
| # Copyright (c) 2013 Big Switch Networks, Inc. |
| # |
| # Licensed under the Eclipse Public License, Version 1.0 (the |
| # "License"); you may not use this file except in compliance with the |
| # License. You may obtain a copy of the License at |
| # |
| # http://www.eclipse.org/legal/epl-v10.html |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| # implied. See the License for the specific language governing |
| # permissions and limitations under the License. |
| # |
| |
| from django.conf.urls.defaults import patterns |
| from django.contrib.auth.urls import urlpatterns |
| from django.contrib.auth.views import password_reset |
| from django.contrib.auth.decorators import login_required |
| from django.http import HttpResponse |
| from django.template import Template, RequestContext |
| |
| def remote_user_auth_view(request): |
| "Dummy view for remote user tests" |
| t = Template("Username is {{ user }}.") |
| c = RequestContext(request, {}) |
| return HttpResponse(t.render(c)) |
| |
| # special urls for auth test cases |
| urlpatterns = urlpatterns + patterns('', |
| (r'^logout/custom_query/$', 'django.contrib.auth.views.logout', dict(redirect_field_name='follow')), |
| (r'^logout/next_page/$', 'django.contrib.auth.views.logout', dict(next_page='/somewhere/')), |
| (r'^remote_user/$', remote_user_auth_view), |
| (r'^password_reset_from_email/$', 'django.contrib.auth.views.password_reset', dict(from_email='staffmember@example.com')), |
| (r'^login_required/$', login_required(password_reset)), |
| (r'^login_required_login_url/$', login_required(password_reset, login_url='/somewhere/')), |
| ) |
| |