Mercurial > public > sg101
diff forums/urls.py @ 581:ee87ea74d46b
For Django 1.4, rearranged project structure for new manage.py.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 May 2012 17:10:48 -0500 |
parents | gpp/forums/urls.py@ddd69a8e07c7 |
children | 5ba2508939f7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/forums/urls.py Sat May 05 17:10:48 2012 -0500 @@ -0,0 +1,58 @@ +""" +URLs for the forums application. +""" +from django.conf.urls import patterns, url + +urlpatterns = patterns('forums.views.main', + url(r'^$', 'index', name='forums-index'), + url(r'^catchup/$', 'catchup_all', name='forums-catchup_all'), + url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'), + url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'), + url(r'^topic/(?P<id>\d+)/unread/$', 'topic_unread', name='forums-topic_unread'), + url(r'^topic/(?P<id>\d+)/latest/$', 'topic_latest', name='forums-topic_latest'), + url(r'^topic/active/(\d+)/$', 'active_topics', name='forums-active_topics'), + url(r'^delete-post/$', 'delete_post', name='forums-delete_post'), + url(r'^edit/(?P<id>\d+)/$', 'edit_post', name='forums-edit_post'), + url(r'^flag-post/$', 'flag_post', name='forums-flag_post'), + url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'), + url(r'^forum/(?P<slug>[\w\d-]+)/catchup/$', 'forum_catchup', name='forums-catchup'), + url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'), + url(r'^mod/forum/(?P<slug>[\w\d-]+)/$', 'mod_forum', name='forums-mod_forum'), + url(r'^mod/topic/delete/(\d+)/$', 'mod_topic_delete', name='forums-mod_topic_delete'), + url(r'^mod/topic/lock/(\d+)/$', 'mod_topic_lock', name='forums-mod_topic_lock'), + url(r'^mod/topic/move/(\d+)/$', 'mod_topic_move', name='forums-mod_topic_move'), + url(r'^mod/topic/split/(\d+)/$', 'mod_topic_split', name='forums-mod_topic_split'), + url(r'^mod/topic/stick/(\d+)/$', 'mod_topic_stick', name='forums-mod_topic_stick'), + url(r'^my-posts/$', 'my_posts', name='forums-my_posts'), + url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'), + url(r'^post/ip/(\d+)/$', 'post_ip_info', name='forums-post_ip_info'), + url(r'^post/new/(?P<topic_id>\d+)/$', 'new_post', name='forums-new_post'), + url(r'^posts/(?P<username>[\w.@+-]{1,30})/$', 'posts_for_user', name='forums-posts_for_user'), + url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'), + url(r'^unanswered/$', 'unanswered_topics', name='forums-unanswered_topics'), + url(r'^unread/$', 'unread_topics', name='forums-unread_topics'), +) + +urlpatterns += patterns('forums.views.favorites', + url(r'^favorite/(\d+)/$', 'favorite_topic', name='forums-favorite_topic'), + url(r'^favorites/$', 'manage_favorites', name='forums-manage_favorites'), + url(r'^favorites/(\d+)/$', 'favorites_status', name='forums-favorites_status'), + url(r'^unfavorite/(\d+)/$', 'unfavorite_topic', name='forums-unfavorite_topic'), +) + +urlpatterns += patterns('forums.views.subscriptions', + url(r'^subscribe/(\d+)/$', 'subscribe_topic', name='forums-subscribe_topic'), + url(r'^subscriptions/$', 'manage_subscriptions', name='forums-manage_subscriptions'), + url(r'^subscriptions/(\d+)/$', 'subscription_status', name='forums-subscription_status'), + url(r'^unsubscribe/(\d+)/$', 'unsubscribe_topic', name='forums-unsubscribe_topic'), +) + +urlpatterns += patterns('forums.views.spam', + url(r'^spammer/(\d+)/$', 'spammer', name='forums-spammer'), + url(r'^spammer/nailed/(\d+)/$', 'spammer_nailed', name='forums-spammer_nailed'), + url(r'^stranger/(\d+)/$', 'stranger', name='forums-stranger'), +) + +urlpatterns += patterns('forums.views.attachments', + url(r'^fetch_attachments/$', 'fetch_attachments', name='forums-fetch_attachments'), +)