annotate gpp/shoutbox/urls.py @ 188:d293b423bdaf
Adding support for the django debug toolbar.
author |
Brian Neal <bgneal@gmail.com> |
date |
Wed, 31 Mar 2010 01:58:20 +0000 |
parents |
777451a98f9d |
children |
7ddd60164245 |
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'),
|
bgneal@13
|
10 url(r'^flag/$', 'flag', name='shoutbox-flag'),
|
gremmie@1
|
11 url(r'^shout/$', 'shout', name='shoutbox-shout'),
|
gremmie@1
|
12 url(r'^text/$', 'text', name='shoutbox-text'),
|
bgneal@13
|
13 url(r'^view/(\d+)/$', 'view_shout', name='shoutbox-view'),
|
bgneal@13
|
14 url(r'^view/history/(?P<page>\d+)/$', 'view_history', name='shoutbox-history'),
|
gremmie@1
|
15 )
|
bgneal@13
|
16
|
bgneal@13
|
17 # vim: ts=4 sw=4
|