Skip to content
Snippets Groups Projects
Unverified Commit c74331e1 authored by Awais Jibran's avatar Awais Jibran Committed by GitHub
Browse files

Merge pull request #158 from edx/ormsbee/sec_609_customtag_fix

Make CustomTagModule safe (remove Mako) [SEC-609]
parents 137c0cb3 483e654f
Branches
Tags
No related merge requests found
......@@ -2,9 +2,9 @@
Template module
"""
from __future__ import absolute_import
from string import Template
from lxml import etree
from mako.template import Template
from xmodule.raw_module import RawDescriptor
from xmodule.x_module import DEPRECATION_VSCOMPAT_EVENT, XModule
......@@ -14,8 +14,9 @@ class CustomTagModule(XModule):
This module supports tags of the form
<customtag option="val" option2="val2" impl="tagname"/>
In this case, $tagname should refer to a file in data/custom_tags, which contains
a mako template that uses ${option} and ${option2} for the content.
In this case, $tagname should refer to a file in data/custom_tags, which
contains a Python string.Template formatted template that uses ${option} and
${option2} for the content.
For instance:
......@@ -64,7 +65,7 @@ class CustomTagDescriptor(RawDescriptor):
template_module = system.load_item(template_loc)
template_module_data = template_module.data
template = Template(template_module_data)
return template.render(**params)
return template.safe_substitute(params)
@property
def rendered_html(self):
......
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