Login

Generate Javascript-Safe string in template

Author:
SpikeekipS
Posted:
February 25, 2007
Language:
Python
Version:
Pre .96
Score:
-1 (after 5 ratings)

If you use javascript code with Django-template filter or other related things, it will be not sufficient to qoute string in javascript. This filter escape the string and quote it.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
import os
from django.template.defaultfilters import escape

@register.filter(name="tojavascript")
def tojavascript (value) :
	if len(value.split(os.linesep)) > 1 :
		__s = ["\"%s\"" % escape(i) for i in value.split(os.linesep)]
		return "%s\n%s" % (__s[0], "\n".join([" + %s" % i for i in __s[1:]]), )
	else :
		return "\"%s\"" % escape(value)

More like this

  1. Form field with fixed value by roam 6 days, 20 hours ago
  2. New Snippet! by Antoliny0919 1 week, 6 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months ago
  4. get_object_or_none by azwdevops 6 months, 3 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago

Comments

guychi (on August 26, 2007):

doesn't seem to work.

the code is also exceedingly unclear, perhaps you'd care to explain it a bit?

#

Please login first before commenting.