Mercurial > p > roundup > code
view website/issues/detectors/no_texthtml.py @ 7092:1836e0ef7751
Add new security.txt
Add to index, remove security.txt from exclude list in website. Add
:orphan: to security-history.txt since it is only linked from
upgrading.txt.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 02 Dec 2022 22:30:12 -0500 |
| parents | 0942fe89e82e |
| children |
line wrap: on
line source
def audit_html_files(db, cl, nodeid, newvalues): if 'type' in newvalues and newvalues['type'] == 'text/html': newvalues['type'] = 'text/plain' def init(db): db.file.audit('set', audit_html_files) db.file.audit('create', audit_html_files)
