summary refs log tree commit diff
path: root/synapse/config/_base.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-10-21 14:24:11 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2020-10-21 14:24:11 +0100
commitd70f909e6c6a6789b2c24073991c909a1661d6ad (patch)
tree7637a4a4ba517e70cf8b533e358e285da177a0a3 /synapse/config/_base.py
parentMerge commit '2983049a7' into anoa/dinsic_release_1_21_x (diff)
parent1.20.1 (diff)
downloadsynapse-d70f909e6c6a6789b2c24073991c909a1661d6ad.tar.xz
Merge commit '920dd1083' into anoa/dinsic_release_1_21_x
* commit '920dd1083':
  1.20.1
  Mark the shadow_banned column as boolean in synapse_port_db. (#8386)
  Hotfix: disable autoescape by default when rendering Jinja2 templates (#8394)
Diffstat (limited to 'synapse/config/_base.py')
-rw-r--r--synapse/config/_base.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py

index db7bfeb6a9..d13856766f 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py
@@ -195,7 +195,10 @@ class Config: return file_stream.read() def read_templates( - self, filenames: List[str], custom_template_directory: Optional[str] = None, + self, + filenames: List[str], + custom_template_directory: Optional[str] = None, + autoescape: bool = False, ) -> List[jinja2.Template]: """Load a list of template files from disk using the given variables. @@ -211,6 +214,9 @@ class Config: custom_template_directory: A directory to try to look for the templates before using the default Synapse template directory instead. + autoescape: Whether to autoescape variables before inserting them into the + template. + Raises: ConfigError: if the file's path is incorrect or otherwise cannot be read. @@ -234,7 +240,7 @@ class Config: search_directories.insert(0, custom_template_directory) loader = jinja2.FileSystemLoader(search_directories) - env = jinja2.Environment(loader=loader, autoescape=True) + env = jinja2.Environment(loader=loader, autoescape=autoescape) # Update the environment with our custom filters env.filters.update(