comparison gpp/weblinks/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
children d424b8bae71d
comparison
equal deleted inserted replaced
219:26ee684c2033 220:71fd8454688b
1 """Haystack search index for the weblinks application."""
2 from haystack.indexes import *
3 from haystack import site
4
5 from weblinks.models import Link
6
7
8 class LinkIndex(SearchIndex):
9 text = CharField(document=True, use_template=True)
10 author = CharField(model_attr='user')
11 pub_date = DateTimeField(model_attr='date_added')
12
13 def get_queryset(self):
14 return Link.public_objects.all()
15
16
17 site.register(Link, LinkIndex)