thirdparty/google_appengine/lib/django/tests/regressiontests/templates/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 25 Jan 2009 00:02:41 +0000
changeset 972 43018f61b481
parent 109 620f9b141567
permissions -rwxr-xr-x
Remove the request and arg parameter from the checkAccess call They are obsolete with the introduction of kwargs (args was never needed in the first place). Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *
from regressiontests.templates import views

urlpatterns = patterns('',

    # Test urls for testing reverse lookups
    (r'^$', views.index),
    (r'^client/(\d+)/$', views.client),
    (r'^client/(\d+)/(?P<action>[^/]+)/$', views.client_action),
)