annotate podcast/search_indexes.py @ 917:0365fdbb4d78

Fix app conflict with messages. Django's messages app label conflicts with our messages app. We can't easily rename our label as that will make us rename database tables. Since our app came first we'll just customize Django messages label. For Django 1.7.7 upgrade.
author Brian Neal <bgneal@gmail.com>
date Mon, 06 Apr 2015 20:02:25 -0500
parents ad53d929281a
children cf9918328c64
rev   line source
bgneal@224 1 """Haystack search index for the news application."""
bgneal@753 2 from haystack import indexes
bgneal@392 3
bgneal@224 4 from podcast.models import Item
bgneal@224 5
bgneal@224 6
bgneal@753 7 class ItemIndex(indexes.SearchIndex, indexes.Indexable):
bgneal@753 8 text = indexes.CharField(document=True, use_template=True)
bgneal@753 9 author = indexes.CharField(model_attr='author')
bgneal@753 10 pub_date = indexes.DateTimeField(model_attr='pubdate')
bgneal@753 11
bgneal@753 12 def get_model(self):
bgneal@753 13 return Item
bgneal@224 14
bgneal@277 15 def get_updated_field(self):
bgneal@277 16 return 'update_date'