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@13: url(r'^view/history/(?P\d+)/$', 'view_history', name='shoutbox-history'), gremmie@1: ) bgneal@13: bgneal@13: # vim: ts=4 sw=4