annotate ygroup/search_indexes.py @ 821:71db8076dc3d

Bandmap WIP: geocoding integrated with add form. Add form works. Before submitting the form, client side JS makes a geocode request to Google and populates hidden lat/lon fields with the result. Successfully created a model instance on the server side. Still need to update admin dashboard, admin approval, and give out badges for adding bands to the map. Once that is done, then work on displaying the map with filtering.
author Brian Neal <bgneal@gmail.com>
date Tue, 23 Sep 2014 20:40:31 -0500
parents ad53d929281a
children cf9918328c64
rev   line source
bgneal@323 1 """
bgneal@323 2 Haystack search index for the Yahoo Group archives application.
bgneal@323 3
bgneal@323 4 """
bgneal@753 5 from haystack import indexes
bgneal@323 6
bgneal@323 7 from ygroup.models import Post
bgneal@323 8
bgneal@323 9
bgneal@753 10 class PostIndex(indexes.SearchIndex, indexes.Indexable):
bgneal@753 11 text = indexes.CharField(document=True, use_template=True)
bgneal@753 12 pub_date = indexes.DateTimeField(model_attr='creation_date')
bgneal@753 13
bgneal@753 14 def get_model(self):
bgneal@753 15 return Post
bgneal@323 16
bgneal@323 17 def get_updated_field(self):
bgneal@323 18 return 'creation_date'
bgneal@323 19