thirdparty/google_appengine/lib/django/examples/hello/urls.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Sun, 10 May 2009 02:38:57 +0200
changeset 2306 6545e6e184bb
parent 109 620f9b141567
permissions -rwxr-xr-x
Add .gitignore to .hgignore We're all ignoring one another, pretending the other doesn't exist at all, how rude!

from django.conf.urls.defaults import *

urlpatterns = patterns('examples.hello.views',
    (r'^html/$', 'hello_html'),
    (r'^text/$', 'hello_text'),
    (r'^write/$', 'hello_write'),
    (r'^metadata/$', 'metadata'),
    (r'^getdata/$', 'get_data'),
    (r'^postdata/$', 'post_data'),
)