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
a28576f6
Commit
a28576f6
authored
Oct 29, 2009
by
Eric Florenzano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile the regular expression once for the tags, and then re-use it
parent
6281f549
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
pystache/template.py
+4
-2
No files found.
pystache/template.py
View file @
a28576f6
import
re
SECTION_RE
=
re
.
compile
(
r"{{\#([^\}]*)}}\s*(.+?)\s*{{/\1}}"
,
re
.
M
|
re
.
S
)
TAG_RE
=
re
.
compile
(
r"{{(#|=|!|<|>|\{)?(.+?)\1?}}+"
)
class
Template
(
object
):
tag_types
=
{
...
...
@@ -22,6 +23,7 @@ class Template(object):
def
render_sections
(
self
,
template
,
context
):
"""Expands sections."""
regexp
=
re
.
compile
(
r"{{\#([^\}]*)}}\s*(.+?)\s*{{/\1}}"
,
re
.
M
|
re
.
S
)
match
=
SECTION_RE
.
search
(
template
)
while
match
:
...
...
@@ -46,7 +48,7 @@ class Template(object):
"""Renders all the tags in a template for a context."""
regexp
=
re
.
compile
(
r"{{(#|=|!|<|>|\{)?(.+?)\1?}}+"
)
match
=
re
.
search
(
regexp
,
template
)
match
=
TAG_RE
.
search
(
template
)
while
match
:
tag
,
tag_type
,
tag_name
=
match
.
group
(
0
,
1
,
2
)
func
=
'render_'
+
self
.
tag_types
[
tag_type
]
...
...
@@ -55,7 +57,7 @@ class Template(object):
replacement
=
getattr
(
self
,
func
)(
tag_name
,
context
)
template
=
template
.
replace
(
tag
,
replacement
)
match
=
re
.
search
(
regexp
,
template
)
match
=
TAG_RE
.
search
(
template
)
return
template
...
...
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