view gpp/forums/search_indexes.py @ 404:41411066b16d

Fixing #199; redid the downloads so the user has more control about how to save the file.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Mar 2011 23:21:17 +0000
parents 79240675b903
children b1f939b1fb01
line wrap: on
line source
"""Haystack search index for the weblinks application."""
from haystack.indexes import *
from haystack import site
from queued_search.indexes import QueuedSearchIndex

from forums.models import Forum, Post


class PostIndex(QueuedSearchIndex):
    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_forums())

    def get_updated_field(self):
        return 'update_date'


site.register(Post, PostIndex)