Mercurial > public > sg101
annotate gpp/messages/utils.py @ 467:b910cc1460c8
Add the ability to conditionally add model instances to the search index on update. This is not perfect, as some instances should be deleted from the index if they are updated such that they should not be in the index anymore. Will think about and address that later.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 24 Jul 2011 18:12:20 +0000 |
parents | 538a1bd2f1f4 |
children | 4b9970ad0edb |
rev | line source |
---|---|
gremmie@1 | 1 """ |
gremmie@1 | 2 This file contains various helper utility functions for the messages |
gremmie@1 | 3 application. |
gremmie@1 | 4 """ |
gremmie@1 | 5 |
gremmie@1 | 6 from django.utils.text import wrap |
gremmie@1 | 7 |
gremmie@1 | 8 |
gremmie@1 | 9 def reply_subject(subject): |
gremmie@1 | 10 """ |
gremmie@1 | 11 Builds a subject line for a reply. |
gremmie@1 | 12 If the subject already starts with Re: then return the subject. |
gremmie@1 | 13 Otherwise, prepend Re: to the subject and return it. |
gremmie@1 | 14 """ |
gremmie@1 | 15 if subject.startswith('Re: '): |
gremmie@1 | 16 return subject |
gremmie@1 | 17 return 'Re: ' + subject |
gremmie@1 | 18 |
gremmie@1 | 19 |
gremmie@1 | 20 def quote_message(who, date, message): |
gremmie@1 | 21 """ |
gremmie@1 | 22 Builds a message reply by quoting the existing message in a |
gremmie@1 | 23 typical email-like fashion. The quoting is compatible with Markdown. |
gremmie@1 | 24 """ |
gremmie@1 | 25 header = '> On %s, %s wrote:\n>\n' % (date.strftime('%a, %b %d %Y, %I:%M %p'), who) |
gremmie@1 | 26 lines = wrap(message, 55).split('\n') |
gremmie@1 | 27 for i, line in enumerate(lines): |
gremmie@1 | 28 lines[i] = '> ' + line |
bgneal@417 | 29 return header + '\n'.join(lines) + '\n\n' |