Mercurial > p > roundup > code
view website/issues/detectors/messagesummary.py @ 5341:9af22cfa3a2b
local_replace: improve self-test.
* Add automatic counting of failed self-tests.
* Use print() statement as preparation for python3 move.
This can be done now that we require Python 2.7.
| author | Bernhard Reiter <bernhard@intevation.de> |
|---|---|
| date | Wed, 27 Jun 2018 15:52:22 +0200 |
| 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
