mirror of https://github.com/zulip/zulip.git
inline_email_css: Configure cssutils on import.
This is necessary for when we later want to call inline_template from elsewhere.
This commit is contained in:
parent
78f3125f0a
commit
b2cf0aaa38
|
@ -26,6 +26,7 @@ def configure_cssutils() -> None:
|
||||||
|
|
||||||
profile.addProfiles([(Profiles.CSS_LEVEL_2, properties[Profiles.CSS_LEVEL_2],
|
profile.addProfiles([(Profiles.CSS_LEVEL_2, properties[Profiles.CSS_LEVEL_2],
|
||||||
macros[Profiles.CSS_LEVEL_2])])
|
macros[Profiles.CSS_LEVEL_2])])
|
||||||
|
configure_cssutils()
|
||||||
|
|
||||||
def inline_template(template_name: str) -> None:
|
def inline_template(template_name: str) -> None:
|
||||||
os.makedirs(COMPILED_EMAIL_TEMPLATES_PATH, exist_ok=True)
|
os.makedirs(COMPILED_EMAIL_TEMPLATES_PATH, exist_ok=True)
|
||||||
|
@ -88,7 +89,6 @@ def get_all_templates_from_directory(directory: str) -> Set[str]:
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
templates_to_inline = get_all_templates_from_directory(EMAIL_TEMPLATES_PATH)
|
templates_to_inline = get_all_templates_from_directory(EMAIL_TEMPLATES_PATH)
|
||||||
configure_cssutils()
|
|
||||||
|
|
||||||
for template_name in templates_to_inline:
|
for template_name in templates_to_inline:
|
||||||
inline_template(template_name)
|
inline_template(template_name)
|
||||||
|
|
Loading…
Reference in New Issue