annotate podcast/search_indexes.py @ 1157:e4f2d6a4b401

Rework S3 connection logic for latest versions of Python 2.7. Had to make these changes for Ubuntu 16.04. Seems backward compatible with production.
author Brian Neal <bgneal@gmail.com>
date Thu, 19 Jan 2017 18:35:53 -0600
parents cf9918328c64
children
rev   line source
bgneal@224 1 """Haystack search index for the news application."""
bgneal@753 2 from haystack import indexes
bgneal@392 3
bgneal@943 4 from custom_search.fields import MaxTermSizeCharField
bgneal@224 5 from podcast.models import Item
bgneal@224 6
bgneal@224 7
bgneal@753 8 class ItemIndex(indexes.SearchIndex, indexes.Indexable):
bgneal@943 9 text = MaxTermSizeCharField(document=True, use_template=True)
bgneal@753 10 author = indexes.CharField(model_attr='author')
bgneal@753 11 pub_date = indexes.DateTimeField(model_attr='pubdate')
bgneal@753 12
bgneal@753 13 def get_model(self):
bgneal@753 14 return Item
bgneal@224 15
bgneal@277 16 def get_updated_field(self):
bgneal@277 17 return 'update_date'