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
84b04ad3
Commit
84b04ad3
authored
Apr 01, 2012
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved deprecated View class into its own module.
parent
51e31f57
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
74 deletions
+86
-74
pystache/init.py
+2
-2
pystache/template_spec.py
+2
-72
pystache/view.py
+82
-0
No files found.
pystache/init.py
View file @
84b04ad3
...
...
@@ -5,9 +5,9 @@ This module contains the initialization logic called by __init__.py.
"""
from
.template_spec
import
View
from
.template_spec
import
TemplateSpec
from
.renderer
import
Renderer
from
.template_spec
import
TemplateSpec
from
.view
import
View
__all__
=
[
'render'
,
'Renderer'
,
'View'
,
'TemplateSpec'
]
...
...
pystache/template_spec.py
View file @
84b04ad3
...
...
@@ -7,12 +7,11 @@ This module supports customized (aka special or specified) template loading.
import
os.path
from
.context
import
Context
from
.loader
import
Loader
from
.locator
import
Locator
from
.renderer
import
Renderer
# TODO: consider putting TemplateSpec and SpecLoader in separate modules.
# TODO: finish the class docstring.
class
TemplateSpec
(
object
):
...
...
@@ -53,75 +52,6 @@ class TemplateSpec(object):
template_encoding
=
None
# TODO: remove this class.
class
View
(
TemplateSpec
):
_renderer
=
None
locator
=
Locator
()
def
__init__
(
self
,
context
=
None
):
"""
Construct a View instance.
"""
context
=
Context
.
create
(
self
,
context
)
self
.
context
=
context
def
_get_renderer
(
self
):
if
self
.
_renderer
is
None
:
# We delay setting self._renderer until now (instead of, say,
# setting it in the constructor) in case the user changes after
# instantiation some of the attributes on which the Renderer
# depends. This lets users set the template_extension attribute,
# etc. after View.__init__() has already been called.
renderer
=
Renderer
(
file_encoding
=
self
.
template_encoding
,
search_dirs
=
self
.
template_path
,
file_extension
=
self
.
template_extension
)
self
.
_renderer
=
renderer
return
self
.
_renderer
def
get_template
(
self
):
"""
Return the current template after setting it, if necessary.
"""
if
not
self
.
template
:
template_name
=
self
.
_get_template_name
()
renderer
=
self
.
_get_renderer
()
self
.
template
=
renderer
.
load_template
(
template_name
)
return
self
.
template
def
_get_template_name
(
self
):
"""
Return the name of the template to load.
If the template_name attribute is not set, then this method constructs
the template name from the class name as follows, for example:
TemplatePartial => template_partial
Otherwise, this method returns the template_name.
"""
if
self
.
template_name
:
return
self
.
template_name
return
self
.
locator
.
make_template_name
(
self
)
def
render
(
self
):
"""
Return the view rendered using the current context.
"""
template
=
self
.
get_template
()
renderer
=
self
.
_get_renderer
()
return
renderer
.
render
(
template
,
self
.
context
)
# TODO: add test cases for this class, and then refactor while replacing the
# View class.
class
SpecLoader
(
object
):
...
...
pystache/view.py
0 → 100644
View file @
84b04ad3
# coding: utf-8
"""
This module exposes the deprecated View class.
TODO: remove this module.
"""
from
.context
import
Context
from
.locator
import
Locator
from
.renderer
import
Renderer
from
.template_spec
import
TemplateSpec
# TODO: remove this class.
class
View
(
TemplateSpec
):
_renderer
=
None
locator
=
Locator
()
def
__init__
(
self
,
context
=
None
):
"""
Construct a View instance.
"""
context
=
Context
.
create
(
self
,
context
)
self
.
context
=
context
def
_get_renderer
(
self
):
if
self
.
_renderer
is
None
:
# We delay setting self._renderer until now (instead of, say,
# setting it in the constructor) in case the user changes after
# instantiation some of the attributes on which the Renderer
# depends. This lets users set the template_extension attribute,
# etc. after View.__init__() has already been called.
renderer
=
Renderer
(
file_encoding
=
self
.
template_encoding
,
search_dirs
=
self
.
template_path
,
file_extension
=
self
.
template_extension
)
self
.
_renderer
=
renderer
return
self
.
_renderer
def
get_template
(
self
):
"""
Return the current template after setting it, if necessary.
"""
if
not
self
.
template
:
template_name
=
self
.
_get_template_name
()
renderer
=
self
.
_get_renderer
()
self
.
template
=
renderer
.
load_template
(
template_name
)
return
self
.
template
def
_get_template_name
(
self
):
"""
Return the name of the template to load.
If the template_name attribute is not set, then this method constructs
the template name from the class name as follows, for example:
TemplatePartial => template_partial
Otherwise, this method returns the template_name.
"""
if
self
.
template_name
:
return
self
.
template_name
return
self
.
locator
.
make_template_name
(
self
)
def
render
(
self
):
"""
Return the view rendered using the current context.
"""
template
=
self
.
get_template
()
renderer
=
self
.
_get_renderer
()
return
renderer
.
render
(
template
,
self
.
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