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