Mercurial > p > roundup > code
view website/issues/detectors/messagesummary.py @ 6668:4eee1aa1103e
reimplment meta opengraph removed in changeset 6628:2bb6d7baa47d
Re-enable the meta title, description etc. Also hide the : in og tags
using \:. Then postprocess the index.html files to remove the \.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 09 May 2022 22:05:28 -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
