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
feb339da
Commit
feb339da
authored
14 years ago
by
Mike O'Toole
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding support for implicit iterators
parent
442f84dd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
pystache/template.py
+3
-0
tests/test_pystache.py
+16
-0
No files found.
pystache/template.py
View file @
feb339da
...
...
@@ -121,6 +121,9 @@ class Template(object):
"""Given a tag name and context, finds, escapes, and renders the tag."""
raw
=
get_or_attr
(
context
,
tag_name
,
''
)
if
not
raw
and
raw
is
not
0
:
if
tag_name
==
'.'
:
raw
=
context
else
:
return
''
return
cgi
.
escape
(
unicode
(
raw
))
...
...
This diff is collapsed.
Click to expand it.
tests/test_pystache.py
View file @
feb339da
...
...
@@ -79,5 +79,21 @@ class TestPystache(unittest.TestCase):
</ul>
"""
)
def
test_implicit_iterator
(
self
):
template
=
"""
<ul>
{{#users}}
<li>{{.}}</li>
{{/users}}
</ul>
"""
context
=
{
'users'
:
[
'Chris'
,
'Tom'
,
'PJ'
]
}
ret
=
pystache
.
render
(
template
,
context
)
self
.
assertEquals
(
ret
,
"""
<ul>
<li>Chris</li><li>Tom</li><li>PJ</li>
</ul>
"""
)
if
__name__
==
'__main__'
:
unittest
.
main
()
This diff is collapsed.
Click to expand it.
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