thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sat, 15 Nov 2008 21:46:23 +0000
changeset 483 70f21691b0e1
parent 109 620f9b141567
permissions -rwxr-xr-x
Fix broken User link_name validations. Changes in r1014 still caused some problems so I came out with new idea to compare User accounts (previously called "id"). Patch by: Pawel Solyga

from django.conf.urls.defaults import *

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