Mercurial > public > sg101
comparison gpp/news/search_indexes.py @ 220:71fd8454688b
For #51, added weblinks to search. Decided against using the search index to store prerendered results. My fear is this could get too unweildy once we add forums.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Jun 2010 20:06:15 +0000 |
parents | 26ee684c2033 |
children | d424b8bae71d |
comparison
equal
deleted
inserted
replaced
219:26ee684c2033 | 220:71fd8454688b |
---|---|
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 title = CharField(use_template=True, indexed=False) | |
13 summary = CharField(use_template=True, indexed=False) | |
14 | |
15 | 12 |
16 site.register(Story, StoryIndex) | 13 site.register(Story, StoryIndex) |