Home
last modified time | relevance | path

Searched refs:_js_quote (Results 1 – 2 of 2) sorted by relevance

/dports/www/trac-devel/Trac-1.5.3/trac/util/
H A Dpresentation.py465 _js_quote = {c: '\\u%04x' % ord(c) for c in '&<>'} variable
466 _js_quote_re = re.compile('[' + ''.join(_js_quote) + ']')
481 return _js_quote[match.group(0)]
H A Dtext.py196 _js_quote = {'\\': '\\\\', '"': '\\"', '\b': '\\b', '\f': '\\f', variable
199 _js_quote.setdefault(chr(i), '\\u%04x' % i)
211 return _js_quote[match.group(0)]
222 return _js_quote[match.group(0)]