blob: 50bf8a2d7ff6a7327ebd0b6b8ac7ef1b75609924 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
from pelican import signals
import multiprocessing
import htmlmin
import os
import re
import logging
logger = logging.getLogger(__name__)
def run(pelican):
if logging.getLevelName(logger.getEffectiveLevel()) == "DEBUG":
return # don't minify content if pelican is in debug mode
options = pelican.settings.get('MINIFY', {})
htmlfile = re.compile(r'.html?$')
pool = multiprocessing.Pool()
for base, dirs, files in os.walk(pelican.settings['OUTPUT_PATH']):
for f in files:
# filter only html files
if not htmlfile.search(f):
continue
# add full html path to wooker pool
filepath = os.path.join(base, f)
pool.apply_async(worker, (filepath, options))
pool.close()
pool.join()
def worker(filepath, options):
rawhtml = open(filepath, encoding='utf-8').read()
with open(filepath, 'w', encoding='utf-8') as f:
try:
logger.debug('Minifying: %s' % filepath)
compressed = htmlmin.minify(rawhtml, **options)
f.write(compressed)
except Exception as e:
logger.critical('Minification failed: {}'.format(e))
finally:
f.close()
def register():
"""
Minify HTML at the end of the processing loop
"""
signals.finalized.connect(run)
|