thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 05 Jul 2009 12:57:09 +0200
changeset 2546 df7e4291c23c
parent 109 620f9b141567
permissions -rwxr-xr-x
Ensure that accessViolations for Survey menu items get captured. (Also ensure that you think before committing something you broke yourself :()

from django.conf.urls.defaults import *

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