view website/issues/detectors/messagesummary.py @ 4899:d28a648678e7

Update website to display 1.5 as the release version The roundup website is still displaying the current stable version as 1.4.x though 1.5.x has been out for a while now.
author John Kristensen <john@jerrykan.com>
date Wed, 18 Jun 2014 13:31:46 +1000
parents 6e3e4f24c753
children 0942fe89e82e
line wrap: on
line source

from roundup.mailgw import parseContent

def summarygenerator(db, cl, nodeid, newvalues):
    ''' If the message doesn't have a summary, make one for it.
    '''
    if newvalues.has_key('summary') or not newvalues.has_key('content'):
        return

    summary, content = parseContent(newvalues['content'], config=db.config)
    newvalues['summary'] = summary


def init(db):
    # fire before changes are made
    db.msg.audit('create', summarygenerator)

# vim: set filetype=python ts=4 sw=4 et si
#SHA: 538f90cb7f4eb63f77eca252b87afbe037d29c48

Roundup Issue Tracker: http://roundup-tracker.org/