comparison gpp/shoutbox/urls.py @ 243:7ddd60164245

For #93: remove the page number from the URL. This commit fixes the shoutbox and member list. It also contains a change to downloads to add pagination to the new, popular, and highest rated views.
author Brian Neal <bgneal@gmail.com>
date Thu, 16 Sep 2010 01:06:43 +0000
parents 777451a98f9d
children ddd69a8e07c7
comparison
equal deleted inserted replaced
242:7e8d2dda99e3 243:7ddd60164245
9 url(r'^edit/$', 'edit', name='shoutbox-edit'), 9 url(r'^edit/$', 'edit', name='shoutbox-edit'),
10 url(r'^flag/$', 'flag', name='shoutbox-flag'), 10 url(r'^flag/$', 'flag', name='shoutbox-flag'),
11 url(r'^shout/$', 'shout', name='shoutbox-shout'), 11 url(r'^shout/$', 'shout', name='shoutbox-shout'),
12 url(r'^text/$', 'text', name='shoutbox-text'), 12 url(r'^text/$', 'text', name='shoutbox-text'),
13 url(r'^view/(\d+)/$', 'view_shout', name='shoutbox-view'), 13 url(r'^view/(\d+)/$', 'view_shout', name='shoutbox-view'),
14 url(r'^view/history/(?P<page>\d+)/$', 'view_history', name='shoutbox-history'), 14 url(r'^view/history/$', 'view_history', name='shoutbox-history'),
15 ) 15 )
16
17 # vim: ts=4 sw=4