Mercurial > public > sg101
annotate gpp/bio/search_indexes.py @ 470:d9b6c4ec1977
For #227; rework last commit slightly (r508). Adapt the desired forums signal signature to the queued_search API instead of the other way around.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 17 Aug 2011 01:29:27 +0000 |
parents | 3b30286adba5 |
children | d83296cac940 |
rev | line source |
---|---|
bgneal@223 | 1 """Haystack search index for the bio application.""" |
bgneal@223 | 2 from haystack.indexes import * |
bgneal@223 | 3 from haystack import site |
bgneal@469 | 4 from custom_search.indexes import CondQueuedSearchIndex |
bgneal@223 | 5 |
bgneal@223 | 6 from bio.models import UserProfile |
bgneal@223 | 7 |
bgneal@223 | 8 |
bgneal@467 | 9 class UserProfileIndex(CondQueuedSearchIndex): |
bgneal@223 | 10 text = CharField(document=True, use_template=True) |
bgneal@223 | 11 author = CharField(model_attr='user') |
bgneal@223 | 12 |
bgneal@223 | 13 def get_queryset(self): |
bgneal@223 | 14 return UserProfile.objects.filter(user__is_active=True) |
bgneal@223 | 15 |
bgneal@277 | 16 def get_updated_field(self): |
bgneal@277 | 17 return 'update_date' |
bgneal@277 | 18 |
bgneal@467 | 19 def can_index(self, instance): |
bgneal@467 | 20 return instance.user.is_active |
bgneal@467 | 21 |
bgneal@223 | 22 |
bgneal@223 | 23 site.register(UserProfile, UserProfileIndex) |