Mercurial > public > sg101
view gpp/forums/search_indexes.py @ 492:3c48a555298d
Added a custom tag to display a link to a profile. Refactored the avatar tag to optionally display a profile link around the image. Removed the width and height attributes from the avatar image tag. I think this was causing disk hits whenever those properties were not cached. The avatar tag is now an inclusion tag.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 22 Oct 2011 00:07:50 +0000 |
parents | d9b6c4ec1977 |
children | 387d46abcb95 |
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 get_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 get_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)