thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 08 Jan 2009 21:23:33 +0000
changeset 787 63d7f170b63c
parent 109 620f9b141567
permissions -rwxr-xr-x
Fix login link Without the leading slash the link does not work on appspot. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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