Mercurial > public > sg101
comparison gpp/news/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 | 71fd8454688b |
children | 79240675b903 |
comparison
equal
deleted
inserted
replaced
276:8a46843c258f | 277:d424b8bae71d |
---|---|
7 class StoryIndex(SearchIndex): | 7 class StoryIndex(SearchIndex): |
8 text = CharField(document=True, use_template=True) | 8 text = CharField(document=True, use_template=True) |
9 author = CharField(model_attr='submitter') | 9 author = CharField(model_attr='submitter') |
10 pub_date = DateTimeField(model_attr='date_submitted') | 10 pub_date = DateTimeField(model_attr='date_submitted') |
11 | 11 |
12 def get_updated_field(self): | |
13 return 'update_date' | |
14 | |
12 | 15 |
13 site.register(Story, StoryIndex) | 16 site.register(Story, StoryIndex) |