thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 07 Dec 2008 15:01:31 +0000
changeset 698 a953f0676699
parent 109 620f9b141567
permissions -rwxr-xr-x
Added a public redirect Also some minor cleanups in the redirects code. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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