Mercurial > public > sg101
view gpp/messages/utils.py @ 555:c094c43ec99f
Reinstalled my fork of elsewhere with pip install -e so that the repo URL is
remembered (otherwise it looks like I got it off PyPi). Updated the
requirements.txt file.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Jan 2012 22:44:45 -0600 |
parents | 538a1bd2f1f4 |
children | 4b9970ad0edb |
line wrap: on
line source
""" This file contains various helper utility functions for the messages application. """ from django.utils.text import wrap def reply_subject(subject): """ Builds a subject line for a reply. If the subject already starts with Re: then return the subject. Otherwise, prepend Re: to the subject and return it. """ if subject.startswith('Re: '): return subject return 'Re: ' + subject def quote_message(who, date, message): """ Builds a message reply by quoting the existing message in a typical email-like fashion. The quoting is compatible with Markdown. """ header = '> On %s, %s wrote:\n>\n' % (date.strftime('%a, %b %d %Y, %I:%M %p'), who) lines = wrap(message, 55).split('\n') for i, line in enumerate(lines): lines[i] = '> ' + line return header + '\n'.join(lines) + '\n\n'