thirdparty/google_appengine/lib/django/examples/hello/urls.py
author Madhusudan C.S. <madhusudancs@gmail.com>
Mon, 25 May 2009 02:33:26 +0200
changeset 2338 e57a6d9eea4b
parent 109 620f9b141567
permissions -rwxr-xr-x
Added GHOP Task model. Reviewed by: Lennard de Rijk

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