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
6409c25d
Commit
6409c25d
authored
Dec 20, 2011
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue #57: non-unicode, non-ascii templates in Template.render()
parent
1ab7a4a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
5 deletions
+30
-5
pystache/template.py
+14
-4
tests/test_template.py
+16
-1
No files found.
pystache/template.py
View file @
6409c25d
...
@@ -197,6 +197,12 @@ class Template(object):
...
@@ -197,6 +197,12 @@ class Template(object):
self
.
tag_re
=
re
.
compile
(
tag
)
self
.
tag_re
=
re
.
compile
(
tag
)
def
_render
(
self
,
template
):
def
_render
(
self
,
template
):
"""
Arguments:
template: a unicode template string.
"""
output
=
[]
output
=
[]
while
True
:
while
True
:
...
@@ -350,11 +356,11 @@ class Template(object):
...
@@ -350,11 +356,11 @@ class Template(object):
def
render
(
self
,
context
=
None
,
**
kwargs
):
def
render
(
self
,
context
=
None
,
**
kwargs
):
"""
"""
Return the template rendered using the
current
context.
Return the template rendered using the
given
context.
The return value is a unicode string, unless the output_encoding
The return value is a unicode string, unless the output_encoding
attribute
is not None, in which case the return value has type str
attribute
has been set to a non-None value, in which case the
and is encoded using that encoding.
return value has type str
and is encoded using that encoding.
Arguments:
Arguments:
...
@@ -366,7 +372,11 @@ class Template(object):
...
@@ -366,7 +372,11 @@ class Template(object):
"""
"""
self
.
_initialize_context
(
context
,
**
kwargs
)
self
.
_initialize_context
(
context
,
**
kwargs
)
result
=
self
.
_render
(
self
.
template
)
template
=
self
.
template
if
not
isinstance
(
template
,
unicode
):
template
=
self
.
unicode
(
template
)
result
=
self
.
_render
(
template
)
if
self
.
output_encoding
is
not
None
:
if
self
.
output_encoding
is
not
None
:
result
=
result
.
encode
(
self
.
output_encoding
)
result
=
result
.
encode
(
self
.
output_encoding
)
...
...
tests/test_template.py
View file @
6409c25d
...
@@ -149,7 +149,7 @@ class TemplateTestCase(unittest.TestCase):
...
@@ -149,7 +149,7 @@ class TemplateTestCase(unittest.TestCase):
def
test_render__str
(
self
):
def
test_render__str
(
self
):
template
=
Template
(
'foo'
)
template
=
Template
(
'foo'
)
actual
=
template
.
render
()
actual
=
template
.
render
()
self
.
assertTrue
(
isinstance
(
actual
,
str
))
self
.
assertTrue
(
isinstance
(
actual
,
unicode
))
self
.
assertEquals
(
actual
,
'foo'
)
self
.
assertEquals
(
actual
,
'foo'
)
def
test_render__non_ascii_character
(
self
):
def
test_render__non_ascii_character
(
self
):
...
@@ -327,3 +327,18 @@ class TemplateTestCase(unittest.TestCase):
...
@@ -327,3 +327,18 @@ class TemplateTestCase(unittest.TestCase):
template
.
default_encoding
=
'utf_8'
template
.
default_encoding
=
'utf_8'
self
.
assertEquals
(
template
.
render
(
context
),
u"déf"
)
self
.
assertEquals
(
template
.
render
(
context
),
u"déf"
)
def
test_render__nonascii_template
(
self
):
"""
Test passing a non-unicode template with non-ascii characters.
"""
template
=
Template
(
"déf"
,
output_encoding
=
"utf-8"
)
# Check that decode_errors and default_encoding are both respected.
template
.
decode_errors
=
'ignore'
template
.
default_encoding
=
'ascii'
self
.
assertEquals
(
template
.
render
(),
"df"
)
template
.
default_encoding
=
'utf_8'
self
.
assertEquals
(
template
.
render
(),
"déf"
)
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