Mercurial > public > sg101
comparison gpp/podcast/search_indexes.py @ 277:d424b8bae71d
Fixing #128 and #129. Add elsewhere weblinks to search content. Add support for haystack's get_update_field() method.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 02 Oct 2010 23:24:39 +0000 |
parents | 76ad86454ce9 |
children | 79240675b903 |
comparison
equal
deleted
inserted
replaced
276:8a46843c258f | 277:d424b8bae71d |
---|---|
7 class ItemIndex(SearchIndex): | 7 class ItemIndex(SearchIndex): |
8 text = CharField(document=True, use_template=True) | 8 text = CharField(document=True, use_template=True) |
9 author = CharField(model_attr='author') | 9 author = CharField(model_attr='author') |
10 pub_date = DateTimeField(model_attr='pubdate') | 10 pub_date = DateTimeField(model_attr='pubdate') |
11 | 11 |
12 def get_updated_field(self): | |
13 return 'update_date' | |
14 | |
12 | 15 |
13 site.register(Item, ItemIndex) | 16 site.register(Item, ItemIndex) |