Improve variable smushing so it only has to be done in one place. This is related to shlex.split being called

on untemplated variables in some rare cases.
This commit is contained in:
Michael DeHaan 2013-04-24 21:59:47 -04:00
commit 6fdfbb1a34
5 changed files with 27 additions and 18 deletions

View file

@ -437,19 +437,9 @@ def template_from_file(basedir, path, vars):
res = res + '\n'
return template(basedir, res, vars)
def smush_braces(data):
''' smush Jinaj2 braces so unresolved templates like {{ foo }} don't get parsed weird by key=value code '''
while data.find('{{ ') != -1:
data = data.replace('{{ ', '{{')
while data.find(' }}') != -1:
data = data.replace(' }}', '}}')
return data
def template_from_string(basedir, data, vars):
''' run a file through the (Jinja2) templating engine '''
data = smush_braces(data)
try:
if type(data) == str:
data = unicode(data, 'utf-8')