summaryrefslogtreecommitdiff
path: root/examples/hello/urls.py
blob: e57c2b8e8c6fbf51180a62f92195bb925fe6d4e4 (plain)
1
2
3
4
5
6
7
8
9
10
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'),
)