thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 21 Jan 2009 20:25:07 +0000
changeset 886 f5847f24c56e
parent 109 620f9b141567
permissions -rwxr-xr-x
Added clean_existing_user_not_equal_to_current to clean the backup Administrator field in an application. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

from django.conf.urls.defaults import *

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