Mercurial > public > sg101
comparison gpp/forums/urls.py @ 115:0ce0104c7df3
Forums: split topic.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 22 Oct 2009 02:57:18 +0000 |
parents | d97ceb95ce02 |
children | cf9f9d4c4d54 |
comparison
equal
deleted
inserted
replaced
114:535d02d1c017 | 115:0ce0104c7df3 |
---|---|
15 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'), | 15 url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'), |
16 url(r'^mod/forum/(?P<slug>[\w\d-]+)/$', 'mod_forum', name='forums-mod_forum'), | 16 url(r'^mod/forum/(?P<slug>[\w\d-]+)/$', 'mod_forum', name='forums-mod_forum'), |
17 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'), | 17 url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'), |
18 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'), | 18 url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'), |
19 url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'), | 19 url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'), |
20 url(r'^mod/topic/split/(\d+)/$', 'mod_topic_split', name='forums-mod_topic_split'), | |
20 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), | 21 url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), |
21 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), | 22 url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), |
22 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), | 23 url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), |
23 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), | 24 url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), |
24 ) | 25 ) |