Home
last modified time | relevance | path

Searched refs:escape (Results 1 – 25 of 604) sorted by relevance

12345678910>>...25

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
Dwith_pre_escape_filters.test8 1. Pre-escape and don't post-escape
9 ( var|escape|nl2br )
12 2. Don't double-pre-escape
13 ( var|escape|nl2br )
14 {{ var|escape|nl2br }}
16 3. Don't escape safe values
20 4. Don't escape safe values
21 ( var|escape|nl2br|nl2br )
24 5. Re-escape values that are escaped for an other contexts
25 ( var|escape_something|escape|nl2br )
[all …]
Dtype.test2 escape types
5 1. autoescape 'html' |escape('js')
8 <a onclick="alert(&quot;{{ msg|escape('js') }}&quot;)"></a>
11 2. autoescape 'html' |escape('js')
14 <a onclick="alert(&quot;{{ msg|escape('js') }}&quot;)"></a>
17 3. autoescape 'js' |escape('js')
20 <a onclick="alert(&quot;{{ msg|escape('js') }}&quot;)"></a>
23 4. no escape
29 5. |escape('js')|escape('html')
32 <a onclick="alert(&quot;{{ msg|escape('js')|escape('html') }}&quot;)"></a>
[all …]
Dwith_preserves_safety_filters.test9 ( var|preserves_safety|escape )
13 ( var|escape|preserves_safety )
14 {{ var|escape|preserves_safety }}
16 3. Re-escape values that are escaped for an other contexts
17 ( var|escape_something|preserves_safety|escape )
20 4. Still escape when using filters not declared safe
21 ( var|escape|preserves_safety|replace({'FABIEN': 'FABPOT'})|escape )
22 {{ var|escape|preserves_safety|replace({'FABIEN': 'FABPOT'}) }}
32 ( var|preserves_safety|escape )
37 ( var|escape|preserves_safety )
[all …]
Dfunctions.test28 safe_br()|escape
29 {{ (safe_br())|escape }}
34 unsafe_br()|escape
35 {{ (unsafe_br())|escape }}
70 safe_br()|escape
76 unsafe_br()|escape
Dwith_filters.test8 1. Don't escape escaper filter output
13 2. Don't escape escaper filter output
18 3. Explicit escape
20 the output is explicitly escaped by |escape )
21 {{ var|escape_and_nl2br|escape }}
34 6. Don't escape escaper filter output
51 9. Don't escape escaper filter output
56 10. Don't escape escaper filter output
69 1. Don't escape escaper filter output
75 2. Don't escape escaper filter output
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
D52.52.js1escape:/(?:[abefnrstv\\"'\n\r]|[0-7]{1,3}|x[0-9A-Fa-f]{1,2}|u[0-9A-Fa-f]{4})/,escapes:/\\(?:C\-(@e… property
D66.66.js1escape.control","regexp.escape.control","regexp.escape.control"]],[/(\[)(\^?)(?=(?:[^\]\\\/]|\\.)+…
D3.3.js1escape.control","regexp.escape.control","regexp.escape.control"]],[/(\[)(\^?)(?=(?:[^\]\\\/]|\\.)+…
D17.17.js1escape.control","regexp.escape.control","regexp.escape.control"]],[/(\[)(\^?)(?=(?:[^\]\\\/]|\\.)+…
D17.17.js.map1escape.control', 'regexp.escape.control', 'regexp.escape.control']\n ],\n [\…
D52.52.js.map1escape sequences\n * and quoting of literate strings/regular expressions, and\n * an 'end' keyword…
D55.55.js1escape"],[/\\./,"string.escape.invalid"],[/"/,{token:"string.quote",bracket:"@close",switchTo:"@al…
D66.66.js.map1escape.control', 'regexp.escape.control', 'regexp.escape.control']\n ],\n [\…
D44.44.js1 …ng.escape",next:"@popall"},"@default":"string.escape"}}],[/`./,{cases:{"@eos":{token:"string.escap…
D6.6.js.map1escape.control', 'regexp.escape.control', 'regexp.escape.control']\n ],\n [\…
D33.33.js1 …:[[/[^"'\#\\]+/,"string"],[/@escapes/,"string.escape"],[/\./,"string.escape.invalid"],[/\./,"strin…
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
Descape.rst1 ``escape``
11 The ``escape`` filter escapes a string for safe insertion into the final
19 {{ user.username|escape }}
27 The ``escape`` filter can also be used in other contexts than HTML thanks to
36 And here is how to escape variables included in JavaScript code:
40 {{ user.username|escape('js') }}
43 The ``escape`` filter supports the following escaping strategies:
54 not be used to escape an entire URI; only a subcomponent being inserted.
60 Internally, ``escape`` uses the PHP native `htmlspecialchars`_ function
65 When using automatic escaping, Twig tries to not double-escape a variable
[all …]
/plugin/autotabber/
Dtaboverride.escape.js31 var escape = true,
37 if (escape && e.keyCode === 27) {
61 tabOverride.escape = function (enable) { function
63 escape = enable ? true : false;
66 return escape;
/plugin/struct/meta/
H A DCSVExporter.php65 $row .= $this->escape('pid');
70 $row .= $this->escape($col->getLabel());
87 $row .= $this->escape($pid);
97 $row .= $this->escape($val);
112 protected function escape($str) function in dokuwiki\\plugin\\struct\\meta\\CSVExporter
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
Descape_html_attr.test2 "escape" filter does not escape with the html strategy when using the html_attr strategy
4 {{ '<br />'|escape('html_attr') }}
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHandlebars.php79 private $escape = 'htmlspecialchars'; variable in Handlebars\\Handlebars
135 $this->escape = $options['escape'];
338 return $this->escape;
344 * @param callable $escape function
348 public function setEscape($escape) argument
350 if (!is_callable($escape)) {
355 $this->escape = $escape;
/plugin/asciidocjs/node_modules/pug-runtime/
Dindex.js188 exports.escape = pug_escape;
195 var i, lastIndex, escape;
198 case 34: escape = '&quot;'; break;
199 case 38: escape = '&amp;'; break;
200 case 60: escape = '&lt;'; break;
201 case 62: escape = '&gt;'; break;
206 result += escape;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DPrinter.php75 * @param bool $escape whether or not to escape contents
78 protected function element($tag, $contents, $attr = array(), $escape = true) argument
81 ($escape ? $this->escape($contents) : $contents) .
131 protected function escape($string) function in HTMLPurifier_Printer
/plugin/grensladawritezor/fckeditor/
Dfckeditor.py28 def escape(text, replace=string.replace): function
58 HtmlValue = escape(self.Value)
140 k = escape(sKey)
141 v = escape(sValue)
/plugin/asciidocjs/node_modules/core-js/library/modules/
Dcore.regexp.escape.js5 $export($export.S, 'RegExp', { escape: function escape(it) { return $re(it); } });

12345678910>>...25