summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wanstrath <chris@ozmm.org>2009-11-12 19:37:33 -0800
committerChris Wanstrath <chris@ozmm.org>2009-11-12 19:37:33 -0800
commitd02b657f0f9d2a659287279d3b26863018fb0659 (patch)
treea5b57d3a4a95434174147e9664da6f1b36876e9e
parent24bdeb2d803d40b81808fcc3ff494715d87b61b5 (diff)
downloadpystache-d02b657f0f9d2a659287279d3b26863018fb0659.tar.gz
implement unescape tag, make escape tag actually escape
-rw-r--r--pystache/template.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/pystache/template.py b/pystache/template.py
index 7fff600..7bde535 100644
--- a/pystache/template.py
+++ b/pystache/template.py
@@ -1,4 +1,5 @@
import re
+import cgi
SECTION_RE = re.compile(r"{{\#([^\}]*)}}\s*(.+?)\s*{{/\1}}", re.M | re.S)
TAG_RE = re.compile(r"{{(#|=|!|<|>|\{)?(.+?)\1?}}+")
@@ -6,7 +7,8 @@ TAG_RE = re.compile(r"{{(#|=|!|<|>|\{)?(.+?)\1?}}+")
class Template(object):
tag_types = {
None: 'tag',
- '!': 'comment'
+ '!': 'comment',
+ '{': 'unescaped'
}
def __init__(self, template, context=None):
@@ -62,8 +64,12 @@ class Template(object):
def render_tag(self, tag_name, context):
"""Given a tag name and context, finds and renders the tag."""
- return context.get(tag_name, '')
+ return cgi.escape(context.get(tag_name, ''))
def render_comment(self, tag_name=None, context=None):
"""Rendering a comment always returns nothing."""
return ''
+
+ def render_unescaped(self, tag_name=None, context=None):
+ """Render a tag without escaping it."""
+ return context.get(tag_name, '')