diff weblinks/search_indexes.py @ 677:858ce870c854

For #47, create custom search index for models with is_public.
author Brian Neal <bgneal@gmail.com>
date Wed, 14 Aug 2013 13:56:43 -0500
parents ee87ea74d46b
children ad53d929281a
line wrap: on
line diff
--- a/weblinks/search_indexes.py	Sat Aug 03 22:14:04 2013 -0500
+++ b/weblinks/search_indexes.py	Wed Aug 14 13:56:43 2013 -0500
@@ -1,12 +1,12 @@
 """Haystack search index for the weblinks application."""
-from haystack.indexes import *
+from haystack.indexes import CharField, DateTimeField
 from haystack import site
-from custom_search.indexes import CondQueuedSearchIndex
+from custom_search.indexes import PublicQueuedSearchIndex
 
 from weblinks.models import Link
 
 
-class LinkIndex(CondQueuedSearchIndex):
+class LinkIndex(PublicQueuedSearchIndex):
     text = CharField(document=True, use_template=True)
     author = CharField(model_attr='user')
     pub_date = DateTimeField(model_attr='date_added')
@@ -17,7 +17,4 @@
     def get_updated_field(self):
         return 'update_date'
 
-    def can_index(self, instance):
-        return instance.is_public
-
 site.register(Link, LinkIndex)