thirdparty/google_appengine/lib/django/tests/urls.py
author Todd Larsen <tlarsen@google.com>
Wed, 01 Oct 2008 05:10:41 +0000
changeset 233 42733f531ebf
parent 109 620f9b141567
permissions -rwxr-xr-x
Add missing all() __doc__ string comments: "Args:" and "Returns:" sections.

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    # test_client modeltest urls
    (r'^test_client/', include('modeltests.test_client.urls')),

    # Always provide the auth system login and logout views
    (r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
    (r'^accounts/logout/$', 'django.contrib.auth.views.logout'),

    # test urlconf for {% url %} template tag
    (r'^url_tag/', include('regressiontests.templates.urls')),
)