Mercurial > public > sg101
view forums/search_indexes.py @ 631:f36d1a168be7
For issue 27, disable login dialog button during POST.
This seems to prevent multiple logins most of the time. You can
still bang on the enter key and sometimes get more through.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 14 Nov 2012 20:57:05 -0600 |
parents | ee87ea74d46b |
children | ad53d929281a |
line wrap: on
line source
"""Haystack search index for the weblinks application.""" from haystack.indexes import * from haystack import site from custom_search.indexes import CondQueuedSearchIndex from forums.models import Forum, Topic, Post from forums.signals import topic_content_update, post_content_update class TopicIndex(CondQueuedSearchIndex): text = CharField(document=True, use_template=True) author = CharField(model_attr='user') pub_date = DateTimeField(model_attr='creation_date') def index_queryset(self): return Topic.objects.filter(forum__in=Forum.objects.public_forum_ids()) def get_updated_field(self): return 'update_date' def _setup_save(self, model): topic_content_update.connect(self.enqueue_save) def _teardown_save(self, model): topic_content_update.disconnect(self.enqueue_save) def enqueue_save(self, sender, **kwargs): return self.enqueue('update', sender) def can_index(self, instance): return instance.forum.id in Forum.objects.public_forum_ids() class PostIndex(CondQueuedSearchIndex): text = CharField(document=True, use_template=True) author = CharField(model_attr='user') pub_date = DateTimeField(model_attr='creation_date') def index_queryset(self): return Post.objects.filter( topic__forum__in=Forum.objects.public_forum_ids()) def get_updated_field(self): return 'update_date' def _setup_save(self, model): post_content_update.connect(self.enqueue_save) def _teardown_save(self, model): post_content_update.disconnect(self.enqueue_save) def enqueue_save(self, sender, **kwargs): return self.enqueue('update', sender) def can_index(self, instance): return instance.topic.forum.id in Forum.objects.public_forum_ids() site.register(Topic, TopicIndex) site.register(Post, PostIndex)