Mercurial > public > sg101
view custom_search/indexes.py @ 635:b2a8559f29c4
Added a link to the 2012 mp3 compilation on archive.org.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 24 Dec 2012 12:02:10 -0600 |
parents | ee87ea74d46b |
children | 858ce870c854 |
line wrap: on
line source
""" This module contains custom search indexes to tailor the Haystack search application to our needs. """ from queued_search.indexes import QueuedSearchIndex class CondQueuedSearchIndex(QueuedSearchIndex): """ This customized version of QueuedSearchIndex conditionally enqueues items to be indexed by calling the can_index() method. """ def can_index(self, instance): """ The default is to index all instances. Override this method to customize the behavior. This will be called on all update operations. """ return True def enqueue(self, action, instance): """ This method enqueues the instance only if the can_index() method returns True. """ if (action == 'update' and self.can_index(instance) or action == 'delete'): super(CondQueuedSearchIndex, self).enqueue(action, instance)