changeset 109 | 620f9b141567 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thirdparty/google_appengine/lib/django/examples/urls.py Tue Aug 26 21:49:54 2008 +0000 @@ -0,0 +1,6 @@ +from django.conf.urls.defaults import * + +urlpatterns = patterns('', + (r'^$', 'examples.views.index'), + (r'^hello/', include('examples.hello.urls')), +)