Files
@ 19d93bd709bf
Branch filter:
Location: kallithea/scripts/validate-minimum-dependency-versions
19d93bd709bf
1.6 KiB
text/plain
html: put 'use strict' on separate lines
use.py:
import re
import sys
for fn in sys.argv[1:]:
with open(fn) as f:
s = f.read()
s = re.sub(r'''(<script>)('use strict';)\n( *)''', r'''\1\n\3\2\n\3''', s)
with open(fn, 'w') as f:
f.write(s)
python use.py $(hg loc 'kallithea/templates/**.html')
use.py:
import re
import sys
for fn in sys.argv[1:]:
with open(fn) as f:
s = f.read()
s = re.sub(r'''(<script>)('use strict';)\n( *)''', r'''\1\n\3\2\n\3''', s)
with open(fn, 'w') as f:
f.write(s)
python use.py $(hg loc 'kallithea/templates/**.html')