thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 06 Mar 2009 22:32:26 +0000
changeset 1700 599a5ff8f422
parent 109 620f9b141567
permissions -rwxr-xr-x
Clean document references This has the advantage that we can inform the user if a document could not be found. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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