thirdparty/google_appengine/lib/django/examples/urls.py
author Mario Ferraro <fadinlight@gmail.com>
Tue, 25 Aug 2009 15:58:30 +0100
changeset 2800 cd9eed2b787e
parent 109 620f9b141567
permissions -rwxr-xr-x
Made all JS code JSLint compliant.

from django.conf.urls.defaults import *

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