Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pystache_custom
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
pystache_custom
Commits
3022cfb9
Commit
3022cfb9
authored
Dec 21, 2011
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed template variables to renderer in non-test files.
parent
d4125da5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
pystache/commands.py
+2
-2
pystache/init.py
+2
-2
pystache/view.py
+2
-2
No files found.
pystache/commands.py
View file @
3022cfb9
...
@@ -64,8 +64,8 @@ def main(sys_argv):
...
@@ -64,8 +64,8 @@ def main(sys_argv):
except
IOError
:
except
IOError
:
context
=
json
.
loads
(
context
)
context
=
json
.
loads
(
context
)
template
=
Renderer
(
template
)
renderer
=
Renderer
(
template
)
print
(
template
.
render
(
context
))
print
(
renderer
.
render
(
context
))
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
pystache/init.py
View file @
3022cfb9
...
@@ -18,5 +18,5 @@ def render(template, context=None, **kwargs):
...
@@ -18,5 +18,5 @@ def render(template, context=None, **kwargs):
Return the given template string rendered using the given context.
Return the given template string rendered using the given context.
"""
"""
template
=
Renderer
(
template
)
renderer
=
Renderer
(
template
)
return
template
.
render
(
context
,
**
kwargs
)
return
renderer
.
render
(
context
,
**
kwargs
)
pystache/view.py
View file @
3022cfb9
...
@@ -98,9 +98,9 @@ class View(object):
...
@@ -98,9 +98,9 @@ class View(object):
Return the view rendered using the current context.
Return the view rendered using the current context.
"""
"""
template
=
Renderer
(
self
.
get_template
(),
self
.
load_template
,
output_encoding
=
encoding
,
renderer
=
Renderer
(
self
.
get_template
(),
self
.
load_template
,
output_encoding
=
encoding
,
escape
=
escape
)
escape
=
escape
)
return
template
.
render
(
self
.
context
)
return
renderer
.
render
(
self
.
context
)
def
get
(
self
,
key
,
default
=
None
):
def
get
(
self
,
key
,
default
=
None
):
return
self
.
context
.
get
(
key
,
default
)
return
self
.
context
.
get
(
key
,
default
)
...
...
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