annotate gpp/ygroup/search_indexes.py @ 467:b910cc1460c8

Add the ability to conditionally add model instances to the search index on update. This is not perfect, as some instances should be deleted from the index if they are updated such that they should not be in the index anymore. Will think about and address that later.
author Brian Neal <bgneal@gmail.com>
date Sun, 24 Jul 2011 18:12:20 +0000
parents 79240675b903
children 3b30286adba5
rev   line source
bgneal@323 1 """
bgneal@323 2 Haystack search index for the Yahoo Group archives application.
bgneal@323 3
bgneal@323 4 """
bgneal@323 5 from haystack.indexes import *
bgneal@323 6 from haystack import site
bgneal@467 7 from custom_search import CondQueuedSearchIndex
bgneal@323 8
bgneal@323 9 from ygroup.models import Post
bgneal@323 10
bgneal@323 11
bgneal@467 12 class PostIndex(CondQueuedSearchIndex):
bgneal@323 13 text = CharField(document=True, use_template=True)
bgneal@323 14 pub_date = DateTimeField(model_attr='creation_date')
bgneal@323 15
bgneal@323 16 def get_updated_field(self):
bgneal@323 17 return 'creation_date'
bgneal@323 18
bgneal@323 19
bgneal@323 20 site.register(Post, PostIndex)