thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Mon, 18 May 2009 19:34:19 +0200
changeset 2326 16c1b1412b0d
parent 109 620f9b141567
permissions -rwxr-xr-x
Add htmlsanitizer folder to build script.

from django.conf.urls.defaults import *

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