thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Tue, 02 Dec 2008 22:03:46 +0000
changeset 651 ef6e22d463cb
parent 109 620f9b141567
permissions -rwxr-xr-x
Remove the logic parameter from getListContent Now that params always has a 'logic' attribute, we can use that instead of requiring that it is passed as argument. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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