view website/issues/detectors/messagesummary.py @ 6507:bc95f7431efb

Remove miscommited issue directory; AboutPage fix; aria for drag/drop Removed issues/extensions, should not have been committed. Was deployed testing directory for website/issues. Added missing list() for dict keys in AboutPage. Added aria-labeledby to drag and drop textarea to improve accessibility.
author John Rouillard <rouilj@ieee.org>
date Fri, 08 Oct 2021 00:35:09 -0400
parents 0942fe89e82e
children
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 'summary' in newvalues or 'content' not in newvalues:
        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/