Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
25a8787e
Commit
25a8787e
authored
Nov 12, 2012
by
Daniel Hokka Zakrisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Template all variables before returning them to Jinja2
parent
d2dce1d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletions
+17
-1
lib/ansible/utils/template.py
+17
-1
No files found.
lib/ansible/utils/template.py
View file @
25a8787e
...
@@ -238,6 +238,18 @@ def template(basedir, text, vars, expand_lists=False):
...
@@ -238,6 +238,18 @@ def template(basedir, text, vars, expand_lists=False):
text
=
varReplace
(
basedir
,
unicode
(
text
),
vars
,
expand_lists
=
expand_lists
)
text
=
varReplace
(
basedir
,
unicode
(
text
),
vars
,
expand_lists
=
expand_lists
)
return
text
return
text
class
_jinja2_vars
(
object
):
''' helper class to template all variable content before jinja2 sees it '''
def
__init__
(
self
,
basedir
,
vars
):
self
.
basedir
=
basedir
self
.
vars
=
vars
def
__contains__
(
self
,
k
):
return
k
in
self
.
vars
def
__getitem__
(
self
,
varname
):
if
varname
not
in
self
.
vars
:
raise
KeyError
(
"undefined variable:
%
s"
%
varname
)
return
template_ds
(
self
.
basedir
,
self
.
vars
[
varname
],
self
.
vars
)
def
template_from_file
(
basedir
,
path
,
vars
):
def
template_from_file
(
basedir
,
path
,
vars
):
''' run a file through the templating engine '''
''' run a file through the templating engine '''
...
@@ -276,7 +288,11 @@ def template_from_file(basedir, path, vars):
...
@@ -276,7 +288,11 @@ def template_from_file(basedir, path, vars):
vars
[
'ansible_managed'
]
=
time
.
strftime
(
managed_str
,
vars
[
'ansible_managed'
]
=
time
.
strftime
(
managed_str
,
time
.
localtime
(
os
.
path
.
getmtime
(
realpath
)))
time
.
localtime
(
os
.
path
.
getmtime
(
realpath
)))
res
=
t
.
render
(
vars
)
# This line performs deep Jinja2 magic that uses the _jinja2_vars object for vars
# Ideally, this could use some API where setting shared=True and the object won't get
# passed through dict(o), but I have not found that yet.
res
=
jinja2
.
utils
.
concat
(
t
.
root_render_func
(
t
.
new_context
(
_jinja2_vars
(
basedir
,
vars
),
shared
=
True
)))
if
data
.
endswith
(
'
\n
'
)
and
not
res
.
endswith
(
'
\n
'
):
if
data
.
endswith
(
'
\n
'
)
and
not
res
.
endswith
(
'
\n
'
):
res
=
res
+
'
\n
'
res
=
res
+
'
\n
'
return
template
(
basedir
,
res
,
vars
)
return
template
(
basedir
,
res
,
vars
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment