comparison gpp/ygroup/search_indexes.py @ 469:3b30286adba5

Smarter search index updating for forums. This work is for #227.
author Brian Neal <bgneal@gmail.com>
date Wed, 17 Aug 2011 01:02:08 +0000
parents b910cc1460c8
children
comparison
equal deleted inserted replaced
468:ad4b63fbc584 469:3b30286adba5
2 Haystack search index for the Yahoo Group archives application. 2 Haystack search index for the Yahoo Group archives application.
3 3
4 """ 4 """
5 from haystack.indexes import * 5 from haystack.indexes import *
6 from haystack import site 6 from haystack import site
7 from custom_search import CondQueuedSearchIndex 7 from custom_search.indexes import CondQueuedSearchIndex
8 8
9 from ygroup.models import Post 9 from ygroup.models import Post
10 10
11 11
12 class PostIndex(CondQueuedSearchIndex): 12 class PostIndex(CondQueuedSearchIndex):