thirdparty/google_appengine/lib/django/examples/hello/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Thu, 26 Mar 2009 12:19:33 +0000
changeset 2014 e6d297dcf7aa
parent 109 620f9b141567
permissions -rwxr-xr-x
Add missing utf decode in html cleaner in soc.logic.cleaning module. This should fix all the 500 errors that we got. Remove extra blank line in soc.views.model.document. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

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