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
5dd7fa7c
Commit
5dd7fa7c
authored
12 years ago
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the default delimiters into pystache.defaults.
parent
01a2daf4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
10 deletions
+16
-10
pystache/defaults.py
+3
-0
pystache/parser.py
+11
-9
pystache/tests/test_parser.py
+2
-1
No files found.
pystache/defaults.py
View file @
5dd7fa7c
...
...
@@ -38,6 +38,9 @@ STRING_ENCODING = sys.getdefaultencoding()
# strings that arise from files.
FILE_ENCODING
=
sys
.
getdefaultencoding
()
# The delimiters to start with when parsing.
DELIMITERS
=
(
u'{{'
,
u'}}'
)
# How to handle missing tags when rendering a template.
MISSING_TAGS
=
MissingTags
.
ignore
...
...
This diff is collapsed.
Click to expand it.
pystache/parser.py
View file @
5dd7fa7c
# coding: utf-8
"""
Provides a class for parsing template strings.
This module is only meant for internal use by the renderengine module.
Exposes a parse() function to parse template strings.
"""
import
re
from
pystache.defaults
import
DELIMITERS
from
pystache.parsed
import
ParsedTemplate
DEFAULT_DELIMITERS
=
(
u'{{'
,
u'}}'
)
END_OF_LINE_CHARACTERS
=
[
u'
\r
'
,
u'
\n
'
]
NON_BLANK_RE
=
re
.
compile
(
ur'^(.)'
,
re
.
M
)
# TODO: add some unit tests for this.
def
parse
(
template
,
delimiters
=
None
):
"""
Parse a unicode template string and return a ParsedTemplate instance.
Arguments:
template: a unicode template string.
delimiters: a 2-tuple of delimiters. Defaults to the package default.
"""
parser
=
_Parser
(
delimiters
)
return
parser
.
parse
(
template
)
def
_compile_template_re
(
delimiters
=
None
):
def
_compile_template_re
(
delimiters
):
"""
Return a regular expresssion object (re.RegexObject) instance.
"""
if
delimiters
is
None
:
delimiters
=
DEFAULT_DELIMITERS
# The possible tag type characters following the opening tag,
# excluding "=" and "{".
tag_types
=
"!>&/#^"
...
...
@@ -184,7 +186,7 @@ class _Parser(object):
def
__init__
(
self
,
delimiters
=
None
):
if
delimiters
is
None
:
delimiters
=
DE
FAULT_DE
LIMITERS
delimiters
=
DELIMITERS
self
.
_delimiters
=
delimiters
...
...
This diff is collapsed.
Click to expand it.
pystache/tests/test_parser.py
View file @
5dd7fa7c
...
...
@@ -7,6 +7,7 @@ Unit tests of parser.py.
import
unittest
from
pystache.defaults
import
DELIMITERS
from
pystache.parser
import
_compile_template_re
as
make_re
...
...
@@ -19,7 +20,7 @@ class RegularExpressionTestCase(unittest.TestCase):
Test getting a key from a dictionary.
"""
re
=
make_re
()
re
=
make_re
(
DELIMITERS
)
match
=
re
.
search
(
"b {{test}}"
)
self
.
assertEqual
(
match
.
start
(),
1
)
...
...
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