annotate gpp/shoutbox/urls.py @ 9:b3b11edf91d8

News: removed the lxml stuff. Based on Jacob Kaplan-Moss suggestion, use html5lib to clean html. Added that functionality in a new core.html module.
author Brian Neal <bgneal@gmail.com>
date Sun, 12 Apr 2009 02:03:03 +0000
parents dbd703f7d63a
children 777451a98f9d
rev   line source
gremmie@1 1 """
gremmie@1 2 Urls for the Shoutbox application.
gremmie@1 3 """
gremmie@1 4
gremmie@1 5 from django.conf.urls.defaults import *
gremmie@1 6
gremmie@1 7 urlpatterns = patterns('shoutbox.views',
gremmie@1 8 url(r'^delete/$', 'delete', name='shoutbox-delete'),
gremmie@1 9 url(r'^edit/$', 'edit', name='shoutbox-edit'),
gremmie@1 10 url(r'^shout/$', 'shout', name='shoutbox-shout'),
gremmie@1 11 url(r'^text/$', 'text', name='shoutbox-text'),
gremmie@1 12 url(r'^view/(?P<page>\d+)/$', 'view', name='shoutbox-view'),
gremmie@1 13 )