Mercurial > p > roundup > code
view website/issues/detectors/no_texthtml.py @ 7373:5e9b0ff1c695
Extend fluid fonts and record location.
I needed smaller fonts (footnotes) and couldn't find the original
site I got it from. So I grabbed them from utopia which is a
diferent location than I got the original from.
Parameters used:
param start end
screen 320 1280
width
Font 16px 18px
Size
Type 1.25 1.33 (Major third scale, perfect fourth scale)
Scale
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 18 May 2023 21:10:56 -0400 |
| 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)
