thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 08 Apr 2009 22:20:53 +0000
changeset 2131 1d27ec29f1c7
parent 109 620f9b141567
permissions -rwxr-xr-x
Add a temporary hack to allow filtering on org.key().name() Patch by: Kai Blin

from django.conf.urls.defaults import *

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