view forums/urls.py @ 943:cf9918328c64

Haystack tweaks for Django 1.7.7. I had to upgrade to Haystack 2.3.1 to get it to work with Django 1.7.7. I also had to update the Xapian backend. But I ran into problems. On my laptop anyway (Ubuntu 14.0.4), xapian gets mad when search terms are greater than 245 chars (or something) when indexing. So I created a custom field that would simply omit terms greater than 64 chars and used this field everywhere I previously used a CharField. Secondly, the custom search form was broken now. Something changed in the Xapian backend and exact searches stopped working. Fortunately the auto_query (which I was using originally and broke during an upgrade) started working again. So I cut the search form back over to doing an auto_query. I kept the form the same (3 fields) because I didn't want to change the form and I think it's better that way.
author Brian Neal <bgneal@gmail.com>
date Wed, 13 May 2015 20:25:07 -0500
parents ee87ea74d46b
children 5ba2508939f7
line wrap: on
line source
"""
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'),
)