thirdparty/google_appengine/lib/django/tests/regressiontests/templates/urls.py
author Augie Fackler <durin42@gmail.com>
Thu, 12 Mar 2009 14:16:55 +0000
changeset 1808 f6ec0f486247
parent 109 620f9b141567
permissions -rwxr-xr-x
build.sh: bail if run in the wrong directory. Patch by: Augie Fackler

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),
)