- Author:
- baumer1122
- Posted:
- February 26, 2008
- Language:
- Python
- Version:
- .96
- Score:
- 0 (after 0 ratings)
Block tag version of escapejs. Handy when using inclusion tags to generate AJAX responses.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | class EscapeJSNode(template.Node):
def __init__(self, nodelist):
self.nodelist = nodelist
def render(self, context):
from django.template.defaultfilters import escapejs
return escapejs(self.nodelist.render(context).strip())
@register.tag
def escapejs(parser, token):
"""
Escapes characters for use in JavaScript strings.
Sample usage::
{% escapejs %}
<p>
Text to<br />
<a href="#">escape</a> here.
</p>
{% endescapejs %}
"""
nodelist = parser.parse(('endescapejs',))
parser.delete_first_token()
return EscapeJSNode(nodelist)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Learn something new everyday :)
#
Thanks a lot, @jacobian!
+1 baumer1122 – every day something new... :)
#
Please login first before commenting.