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
117e3530
Commit
117e3530
authored
Dec 17, 2011
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'issue_51' into development: closing issue #51
parents
a484f30f
abeb2b28
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
8 deletions
+25
-8
HISTORY.rst
+3
-2
pystache/init.py
+1
-4
pystache/template.py
+10
-2
tests/test_template.py
+11
-0
No files found.
HISTORY.rst
View file @
117e3530
...
...
@@ -3,8 +3,9 @@ History
Next Release (version TBD)
--------------------------
* Bugfix: Passing **kwargs to Template.__init__() with no context
raised an exception. [cjerdonek]
* Bugfix: Passing **kwargs to Template() modified the context. [cjerdonek]
* Bugfix: Passing **kwargs to Template() with no context raised an
exception. [cjerdonek]
* Bugfix: Whitespace surrounding sections is no longer altered, in
accordance with the mustache spec. [heliodor]
* A custom template loader can now be passed to a View. [cjerdonek]
...
...
pystache/init.py
View file @
117e3530
...
...
@@ -18,7 +18,4 @@ def render(template, context=None, **kwargs):
Return the given template string rendered using the given context.
"""
context
=
context
and
context
.
copy
()
or
{}
context
.
update
(
kwargs
)
return
Template
(
template
,
context
)
.
render
()
return
Template
(
template
,
context
,
**
kwargs
)
.
render
()
pystache/template.py
View file @
117e3530
...
...
@@ -62,6 +62,11 @@ class Template(object):
modifiers
=
Modifiers
()
def
__init__
(
self
,
template
=
None
,
context
=
None
,
**
kwargs
):
"""
The **kwargs arguments are only supported if the context is
a dictionary (i.e. not a View).
"""
from
.view
import
View
self
.
template
=
template
...
...
@@ -69,8 +74,11 @@ class Template(object):
if
context
is
None
:
context
=
{}
if
kwargs
:
context
.
update
(
kwargs
)
if
not
isinstance
(
context
,
View
):
# Views do not support copy() or update().
context
=
context
.
copy
()
if
kwargs
:
context
.
update
(
kwargs
)
self
.
view
=
context
if
isinstance
(
context
,
View
)
else
View
(
context
=
context
)
self
.
_compile_regexps
()
...
...
tests/test_template.py
View file @
117e3530
...
...
@@ -12,6 +12,8 @@ from pystache.template import Template
class
TemplateTestCase
(
unittest
.
TestCase
):
"""Test the Template class."""
def
test_init__kwargs_with_no_context
(
self
):
"""
Test passing **kwargs with no context.
...
...
@@ -20,3 +22,12 @@ class TemplateTestCase(unittest.TestCase):
# This test checks that the following line raises no exception.
template
=
Template
(
foo
=
"bar"
)
def
test_init__kwargs_does_not_modify_context
(
self
):
"""
Test that passing **kwargs does not modify the passed context.
"""
context
=
{}
template
=
Template
(
context
=
context
,
foo
=
"bar"
)
self
.
assertEquals
(
context
,
{})
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