comparison gpp/downloads/search_indexes.py @ 221:8d13baeaa5c1

#51; add downloads to Haystack search.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Jun 2010 20:19:10 +0000
parents
children d424b8bae71d
comparison
equal deleted inserted replaced
220:71fd8454688b 221:8d13baeaa5c1
1 """Haystack search index for the downloads application."""
2 from haystack.indexes import *
3 from haystack import site
4
5 from downloads.models import Download
6
7
8 class DownloadIndex(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 Download.public_objects.all()
15
16
17 site.register(Download, DownloadIndex)