thirdparty/google_appengine/lib/django/tests/regressiontests/templates/urls.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 24 Aug 2009 20:22:45 +0530
changeset 2791 c62f45595b8d
parent 109 620f9b141567
permissions -rwxr-xr-x
Removed reference to GHOPTask and GHOPProgram. In addition changed required=True to False for information property.

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