minor improvements
This commit is contained in:
parent
6c3cb5edaf
commit
7692997c82
1 changed files with 7 additions and 8 deletions
|
@ -46,7 +46,7 @@ RE_PATTERNS = {
|
||||||
),
|
),
|
||||||
'css_selector': (
|
'css_selector': (
|
||||||
'^\s*([.#\[:_A-Za-z][^{]*?)\s*'
|
'^\s*([.#\[:_A-Za-z][^{]*?)\s*'
|
||||||
'\s*{([\s\S]*?)\s*}'
|
'\s*{\s*([\s\S]*?)\s*}'
|
||||||
),
|
),
|
||||||
'html_class': 'class=[\'\"]([a-zA-Z0-9-_\s]*)',
|
'html_class': 'class=[\'\"]([a-zA-Z0-9-_\s]*)',
|
||||||
'html_id': 'id=[\'\"]([a-zA-Z0-9-_]*)'
|
'html_id': 'id=[\'\"]([a-zA-Z0-9-_]*)'
|
||||||
|
@ -136,7 +136,6 @@ def get_files(app_name):
|
||||||
while i < len(uniq_html_list):
|
while i < len(uniq_html_list):
|
||||||
template_name = uniq_html_list[i]
|
template_name = uniq_html_list[i]
|
||||||
try:
|
try:
|
||||||
# a dict containing 'html' and 'css' files
|
|
||||||
temp_files = templates_match_pattern(
|
temp_files = templates_match_pattern(
|
||||||
template_name, file_patterns
|
template_name, file_patterns
|
||||||
)
|
)
|
||||||
|
@ -375,12 +374,12 @@ def write_report(all_reports, filename='frontend'):
|
||||||
)
|
)
|
||||||
with open('utils/optimize/op_frontend.json', 'w') as f:
|
with open('utils/optimize/op_frontend.json', 'w') as f:
|
||||||
json.dump(all_reports, f, indent=4)
|
json.dump(all_reports, f, indent=4)
|
||||||
with open(output_file, 'w', newline='') as f:
|
# with open(output_file, 'w', newline='') as f:
|
||||||
f.write(
|
# f.write(
|
||||||
template.loader.render_to_string(
|
# template.loader.render_to_string(
|
||||||
'utils/report.html', {'all_reports': all_reports}
|
# 'utils/report.html', {'all_reports': all_reports}
|
||||||
)
|
# )
|
||||||
)
|
# )
|
||||||
# w = csv.writer(f)
|
# w = csv.writer(f)
|
||||||
# print(zip_longest(*results))
|
# print(zip_longest(*results))
|
||||||
# for r in zip_longest(*results):
|
# for r in zip_longest(*results):
|
||||||
|
|
Loading…
Reference in a new issue