bgneal@81: """
bgneal@81: URLs for the forums application.
bgneal@81: """
bgneal@81: from django.conf.urls.defaults import *
bgneal@81: 
bgneal@81: urlpatterns = patterns('forums.views',
bgneal@81:     url(r'^$', 'index', name='forums-index'),
bgneal@83:     url(r'^new-topic-success/(?P<tid>\d+)$', 'new_topic_thanks', name='forums-new_topic_thanks'),
bgneal@82:     url(r'^topic/(?P<id>\d+)/$', 'topic_index', name='forums-topic_index'),
bgneal@85:     url(r'^forum/(?P<slug>[\w\d-]+)/$', 'forum_index', name='forums-forum_index'),
bgneal@85:     url(r'^forum/(?P<slug>[\w\d-]+)/new-topic/$', 'new_topic', name='forums-new_topic'),
bgneal@91:     url(r'^post/(\d+)/$', 'goto_post', name='forums-goto_post'),
bgneal@89:     url(r'^quick-reply/$', 'quick_reply_ajax', name='forums-quick_reply'),
bgneal@81: )
bgneal@83: