Commit 0500ff52 authored by Andreas Jung's avatar Andreas Jung

- reStructuredText/ZReST: setting raw_enabled to 0 for security

        reasons
parent 7acd3324
......@@ -27,6 +27,9 @@ Zope Changes
Bugs Fixed
- reStructuredText/ZReST: setting raw_enabled to 0 for security
reasons
- Collector #2113: 'zopectl test' masked Ctrl-C.
- OFS Image: Image and File updated to use isinstance(data, str)
......
......@@ -203,6 +203,7 @@ class ZReST(Item, PropertyManager, Historical, Implicit, Persistent):
'stylesheet' : self.stylesheet,
'stylesheet_path' : None,
'pub.settings.warning_stream' : Warnings(),
'raw_enabled' : 0,
'file_insertion_enabled' : 0,
}
......
......@@ -73,6 +73,7 @@ def render(src,
settings['stylesheet'] = stylesheet
settings['stylesheet_path'] = None
settings['file_insertion_enabled'] = 0
settings['raw_enabled'] = 0
if language_code:
settings['language_code'] = language_code
settings['language_code'] = language_code
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment