Mercurial > public > sg101
diff gpp/news/models.py @ 220:71fd8454688b
For #51, added weblinks to search. Decided against using the search index to store prerendered results. My fear is this could get too unweildy once we add forums.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Jun 2010 20:06:15 +0000 |
parents | 6dbb8faef085 |
children | 405468b8e3b9 |
line wrap: on
line diff
--- a/gpp/news/models.py Sat Jun 05 20:46:52 2010 +0000 +++ b/gpp/news/models.py Sun Jun 06 20:06:15 2010 +0000 @@ -75,3 +75,9 @@ now = datetime.datetime.now() delta = now - self.date_submitted return self.allow_comments and delta.days < 30 + + def search_title(self): + return self.title + + def search_summary(self): + return u"\n".join((self.short_text, self.long_text))