diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/weblinks/search_indexes.py	Sun Jun 06 20:06:15 2010 +0000
@@ -0,0 +1,17 @@
+"""Haystack search index for the weblinks application."""
+from haystack.indexes import *
+from haystack import site
+
+from weblinks.models import Link
+
+
+class LinkIndex(SearchIndex):
+    text = CharField(document=True, use_template=True)
+    author = CharField(model_attr='user')
+    pub_date = DateTimeField(model_attr='date_added')
+
+    def get_queryset(self):
+        return Link.public_objects.all()
+
+
+site.register(Link, LinkIndex)