thirdparty/google_appengine/lib/django/examples/urls.py
author Mario Ferraro <fadinlight@gmail.com>
Tue, 25 Aug 2009 15:55:26 +0100
changeset 2799 0fe7767592d0
parent 109 620f9b141567
permissions -rwxr-xr-x
JSLint added to verify Javascript code quality against guidelines.

from django.conf.urls.defaults import *

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