comparison gpp/shoutbox/urls.py @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 777451a98f9d
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 """
2 Urls for the Shoutbox application.
3 """
4
5 from django.conf.urls.defaults import *
6
7 urlpatterns = patterns('shoutbox.views',
8 url(r'^delete/$', 'delete', name='shoutbox-delete'),
9 url(r'^edit/$', 'edit', name='shoutbox-edit'),
10 url(r'^shout/$', 'shout', name='shoutbox-shout'),
11 url(r'^text/$', 'text', name='shoutbox-text'),
12 url(r'^view/(?P<page>\d+)/$', 'view', name='shoutbox-view'),
13 )