thirdparty/google_appengine/lib/django/examples/hello/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 05 Sep 2009 15:56:19 +0200
changeset 2863 150b42dac7c4
parent 109 620f9b141567
permissions -rwxr-xr-x
Enable local memcache api in interactive console

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'),
)