comparison gpp/forums/urls.py @ 110:c329bfaed4a7

Forums: implemented the move topic feature.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Sep 2009 20:19:45 +0000
parents 07be3e39e639
children e5faf9f0c11a
comparison
equal deleted inserted replaced
109:07be3e39e639 110:c329bfaed4a7
10 url(r'^delete-post/$', 'delete_post', name='forums-delete_post'), 10 url(r'^delete-post/$', 'delete_post', name='forums-delete_post'),
11 url(r'^edit/(?P<id>\d+)/$', 'edit_post', name='forums-edit_post'), 11 url(r'^edit/(?P<id>\d+)/$', 'edit_post', name='forums-edit_post'),
12 url(r'^flag-post/$', 'flag_post', name='forums-flag_post'), 12 url(r'^flag-post/$', 'flag_post', name='forums-flag_post'),
13 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'), 13 url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'),
14 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'), 14 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'),
15 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'),
15 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'), 16 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'),
17 url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'),
16 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), 18 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'),
17 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'),
18 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), 19 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'),
19 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), 20 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'),
20 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), 21 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),
21 ) 22 )
22 23