thirdparty/google_appengine/lib/django/examples/hello/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 26 Oct 2008 00:13:26 +0000
changeset 418 e035f31d131e
parent 109 620f9b141567
permissions -rwxr-xr-x
Always check if a user filled in a user profile Also, if there is no checks defined, still do the general checks.

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