| /plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
| D | escape.rst | 12 output. It supports different escaping strategies depending on the template 15 By default, it uses the HTML escaping strategy: 28 an optional argument which defines the escaping strategy to use: 43 The ``escape`` filter supports the following escaping strategies: 49 * ``css``: escapes a string for the **CSS context**. CSS escaping can be 61 for the HTML escaping strategy. 65 When using automatic escaping, Twig tries to not double-escape a variable 66 when the automatic escaping strategy is the same as the one applied by the 68 escaping strategy: 79 When using a variable as the escaping strategy, you should disable [all …]
|
| D | raw.rst | 5 environment with automatic escaping enabled this variable will not be escaped
|
| /plugin/scrape/vendor/symfony/css-selector/Parser/Handler/ |
| D | HashHandler.php | 33 private $escaping; variable in Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler 35 public function __construct(TokenizerPatterns $patterns, TokenizerEscaping $escaping) argument 38 $this->escaping = $escaping; 52 $value = $this->escaping->escapeUnicode($match[1]);
|
| D | IdentifierHandler.php | 33 private $escaping; variable in Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler 35 public function __construct(TokenizerPatterns $patterns, TokenizerEscaping $escaping) argument 38 $this->escaping = $escaping; 52 $value = $this->escaping->escapeUnicode($match[0]);
|
| D | StringHandler.php | 35 private $escaping; variable in Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler 37 public function __construct(TokenizerPatterns $patterns, TokenizerEscaping $escaping) argument 40 $this->escaping = $escaping; 71 $string = $this->escaping->escapeUnicodeAndNewLine($match[0]);
|
| /plugin/scrape/vendor/symfony/css-selector/Parser/Tokenizer/ |
| D | Tokenizer.php | 39 $escaping = new TokenizerEscaping($patterns); 43 new Handler\IdentifierHandler($patterns, $escaping), 44 new Handler\HashHandler($patterns, $escaping), 45 new Handler\StringHandler($patterns, $escaping),
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
| D | autoescape.rst | 4 Whether automatic escaping is enabled or not, you can mark a section of a 21 using the js escaping strategy 45 using the js escaping strategy 48 When automatic escaping is enabled everything is escaped by default except for 81 about when and how automatic escaping is applied.
|
| /plugin/asciidocjs/node_modules/pug-runtime/ |
| D | index.js | 63 function pug_classes_array(val, escaping) { argument 64 var classString = '', className, padding = '', escapeEnabled = Array.isArray(escaping); 68 escapeEnabled && escaping[i] && (className = pug_escape(className)); 84 function pug_classes(val, escaping) { argument 86 return pug_classes_array(val, escaping);
|
| /plugin/asciidocjs/node_modules/jake/node_modules/minimatch/ |
| D | minimatch.js | 312 var escaping = false 356 if (escaping && reSpecials[c]) { 358 escaping = false 372 escaping = true 448 if (inClass || !patternListStack.length || escaping) { 450 escaping = false 481 escaping = false 516 if (escaping) { 518 escaping = false 578 if (escaping) {
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/ |
| D | CHANGELOG-1.0.md | 20 * Fixed escaping of commands on Windows 31 * Improved escaping of commands
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/ |
| D | api.rst | 127 If set to ``true``, HTML auto-escaping will be enabled by 130 As of Twig 1.8, you can set the escaping strategy to use (``html``, ``js``, 133 As of Twig 1.9, you can set the escaping strategy to use (``css``, ``url``, 135 return the escaping strategy to use -- the callback cannot be a function name 136 to avoid collision with built-in escaping strategies). 138 As of Twig 1.17, the ``filename`` escaping strategy (renamed to ``name`` as 139 of Twig 1.27) determines the escaping strategy to use for a template based on 141 runtime as auto-escaping is done at compilation time.) 338 * *Twig_Extension_Escaper*: Adds automatic output-escaping and the possibility 375 The ``escaper`` extension adds automatic output escaping to Twig. It defines a [all …]
|
| D | templates.rst | 424 approaches: manually escaping each variable or automatically escaping 427 Twig supports both, automatic escaping is enabled by default. 429 The automatic escaping strategy can be configured via the 435 If manual escaping is enabled, it is **your** responsibility to escape 446 the escaping context, you might want to explicitly use any other available 459 Whether automatic escaping is enabled or not, you can mark a section of a 469 By default, auto-escaping uses the ``html`` escaping strategy. If you output 471 appropriate escaping strategy:
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/ |
| D | autoescaping.test | 2 "include" function is safe for auto-escaping
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/ |
| D | blocks.test | 2 "autoescape" tag applies escaping on embedded blocks
|
| D | strategy.test | 2 "autoescape" tag accepts an escaping strategy
|
| D | strategy.legacy.test | 2 "autoescape" tag accepts an escaping strategy
|
| D | objects.test | 2 "autoescape" tag applies escaping to object method calls
|
| D | basic.test | 2 "autoescape" tag applies escaping on its children
|
| D | with_filters_arguments.test | 2 "autoescape" tag do not applies escaping on filter arguments
|
| D | functions.test | 2 "autoescape" tag applies escaping after calling functions
|
| D | literal.test | 2 "autoescape" tag does not apply escaping on literals
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/ |
| D | Core.RemoveProcessingInstructions.txt | 6 Instead of escaping processing instructions in the form <code><? ...
|
| /plugin/asciidocjs/node_modules/minimatch/ |
| D | minimatch.js | 431 let escaping = false 487 if (escaping) { 497 escaping = false 515 escaping = true 730 if (escaping) {
|
| /plugin/findologicxmlexport/vendor/twig/twig/ |
| D | CHANGELOG | 136 * fixed JS escaping for unicode characters with higher code points 197 * deprecated the "filename" escaping strategy (use "name" instead) 303 * fixed escaping strategy detection based on filename 424 * fixed usage of the html_attr escaping strategy to avoid double-escaping with the html strategy 427 * added a way to add custom escaping strategies 452 * made the escape filter 20% faster for happy path (escaping string for html with UTF-8) 495 * fixed escaping when calling a macro inside another one (regression introduced in 1.9.1) 539 * optimized macro calls when auto-escaping is on 547 * added escaping strategies for CSS, URL, and HTML attributes 554 * fixed escaping when a project defines a function named html or js [all …]
|
| /plugin/userimportextended/lang/en/ |
| D | intro.txt | 4 …mmas (,) and strings delimited by quotation marks (%%""%%). Backslash (\) can be used for escaping.
|