gremmie@1: """
gremmie@1: Urls for the Shoutbox application.
gremmie@1: """
gremmie@1: 
gremmie@1: from django.conf.urls.defaults import *
gremmie@1: 
gremmie@1: urlpatterns = patterns('shoutbox.views',
gremmie@1:     url(r'^delete/$', 'delete', name='shoutbox-delete'),
gremmie@1:     url(r'^edit/$', 'edit', name='shoutbox-edit'),
bgneal@13:     url(r'^flag/$', 'flag', name='shoutbox-flag'),
gremmie@1:     url(r'^shout/$', 'shout', name='shoutbox-shout'),
gremmie@1:     url(r'^text/$', 'text', name='shoutbox-text'),
bgneal@13:     url(r'^view/(\d+)/$', 'view_shout', name='shoutbox-view'),
bgneal@243:     url(r'^view/history/$', 'view_history', name='shoutbox-history'),
gremmie@1: )