thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 28 Feb 2009 12:10:19 +0000
changeset 1554 163c879d1ffe
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed a brown paper bag bug in _checkHasActiveRoleFor Also updated sponsor to not pass redundant arguments.

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'^$', 'examples.views.index'),
    (r'^hello/', include('examples.hello.urls')),
)