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
4720fa7f
Commit
4720fa7f
authored
Dec 27, 2011
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Starting branch for the View class to load templates using a Renderer.
parent
137fd4f2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
pystache/renderer.py
+2
-2
tests/test_renderer.py
+3
-3
No files found.
pystache/renderer.py
View file @
4720fa7f
...
@@ -49,7 +49,7 @@ class Renderer(object):
...
@@ -49,7 +49,7 @@ class Renderer(object):
the method should either return None (as dict.get() does) or
the method should either return None (as dict.get() does) or
raise an exception.
raise an exception.
Defaults to constructing a default Loader, but using the
Defaults to constructing a default Loader, but using the
default
_encoding and decode_errors arguments.
file
_encoding and decode_errors arguments.
escape: the function used to escape variable tag values when
escape: the function used to escape variable tag values when
rendering a template. The function should accept a unicode
rendering a template. The function should accept a unicode
...
@@ -94,7 +94,7 @@ class Renderer(object):
...
@@ -94,7 +94,7 @@ class Renderer(object):
escape
=
lambda
s
:
cgi
.
escape
(
s
,
quote
=
True
)
escape
=
lambda
s
:
cgi
.
escape
(
s
,
quote
=
True
)
if
loader
is
None
:
if
loader
is
None
:
reader
=
Reader
(
encoding
=
default
_encoding
,
decode_errors
=
decode_errors
)
reader
=
Reader
(
encoding
=
file
_encoding
,
decode_errors
=
decode_errors
)
loader
=
Loader
(
reader
=
reader
)
loader
=
Loader
(
reader
=
reader
)
self
.
decode_errors
=
decode_errors
self
.
decode_errors
=
decode_errors
...
...
tests/test_renderer.py
View file @
4720fa7f
...
@@ -46,12 +46,12 @@ class RendererInitTestCase(unittest.TestCase):
...
@@ -46,12 +46,12 @@ class RendererInitTestCase(unittest.TestCase):
self
.
assertEquals
(
actual
.
search_dirs
,
expected
.
search_dirs
)
self
.
assertEquals
(
actual
.
search_dirs
,
expected
.
search_dirs
)
self
.
assertEquals
(
actual
.
reader
.
__dict__
,
expected
.
reader
.
__dict__
)
self
.
assertEquals
(
actual
.
reader
.
__dict__
,
expected
.
reader
.
__dict__
)
def
test_loader__default__
default_
encoding
(
self
):
def
test_loader__default__encoding
(
self
):
"""
"""
Test that the default loader inherits
default_
encoding.
Test that the default loader inherits
the correct
encoding.
"""
"""
renderer
=
Renderer
(
default
_encoding
=
'foo'
)
renderer
=
Renderer
(
file
_encoding
=
'foo'
)
reader
=
renderer
.
loader
.
reader
reader
=
renderer
.
loader
.
reader
self
.
assertEquals
(
reader
.
encoding
,
'foo'
)
self
.
assertEquals
(
reader
.
encoding
,
'foo'
)
...
...
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