thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 26 Aug 2009 18:31:19 +0200
changeset 2811 c8901482dc9c
parent 109 620f9b141567
permissions -rwxr-xr-x
Added timeline_logic keyword argument to Program logic. This will allow us to track which Timeline logic belongs to which each Program.

from django.conf.urls.defaults import *

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