| /plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
| D | escape.rst | 15 By default, it uses the HTML escaping strategy: 28 an optional argument which defines the escaping strategy to use: 61 for the HTML escaping strategy. 66 when the automatic escaping strategy is the same as the one applied by the 68 escaping strategy: 72 {% set strategy = 'html' %} 76 {{ var|escape(strategy) }} {# will be double-escaped #} 79 When using a variable as the escaping strategy, you should disable 84 {% set strategy = 'html' %} 87 {{ var|escape(strategy)|raw }} {# won't be double-escaped #} [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Extension/ |
| D | EscaperExtension.php | 25 * @param string|false|callable $defaultStrategy An escaping strategy 52 * Sets the default strategy to use when not defined by the user. 54 * The strategy can be a valid PHP callback that takes the template 55 * name as an argument and returns the strategy to use. 57 * @param string|false|callable $defaultStrategy An escaping strategy 63 …@trigger_error('Using "true" as the default strategy is deprecated since version 1.21. Use "html" … 69 …@trigger_error('Using "filename" as the default strategy is deprecated since version 1.27. Use "na… 82 * Gets the default strategy to use when not defined by the user. 86 * @return string|false The default strategy to use for the template 91 // or any other upcoming escaping strategy
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/ |
| D | FileExtensionEscapingStrategy.php | 15 * Default autoescaping strategy based on file names. 17 * This strategy sets the HTML as the default autoescaping strategy, 21 * default autoescaping strategy is set at compilation time. 28 * Guesses the best autoescaping strategy based on the file name. 32 * @return string|false The escaping strategy name to use or false to disable
|
| /plugin/emoji/script/ |
| D | jquery.textcomplete.js | 61 warn(name + 'as a strategy param is deprecated. Use option.'); 66 completer.register($.fn.textcomplete.Strategy.parse(strategies, { 287 // strategy - The Strategy object. 289 select: function (value, strategy, e) { argument 291 this.adapter.select(value, strategy, e); 292 this.fire('change').fire('textComplete:select', value, strategy); 305 // Parse the given text and extract the first matching strategy. 307 // Returns an array including the strategy, the query term and the match 308 // object if the text matches an strategy; otherwise returns an empty array. 311 var strategy = this.strategies[i]; [all …]
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/ |
| D | PngoutFilter.php | 51 private $strategy; variable in Assetic\\Filter\\PngoutFilter 74 public function setStrategy($strategy) argument 76 $this->strategy = $strategy; 100 if (null !== $this->strategy) { 101 $pb->add('-s'.$this->strategy);
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
| D | autoescape.rst | 11 using the HTML strategy 16 using the HTML strategy 21 using the js escaping strategy 36 using the HTML strategy 45 using the js escaping strategy
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/Resource/ |
| D | PlacementStrategies.php | 34 * Deletes an existing placement strategy. (placementStrategies.delete) 37 * @param string $id Placement strategy ID. 47 * Gets one placement strategy by ID. (placementStrategies.get) 50 * @param string $id Placement strategy ID. 61 * Inserts a new placement strategy. (placementStrategies.insert) 104 * Updates an existing placement strategy. This method supports patch semantics. 120 * Updates an existing placement strategy. (placementStrategies.update)
|
| /plugin/findologicxmlexport/vendor/jms/serializer/src/Exclusion/ |
| D | DisjunctExclusionStrategy.php | 12 * Disjunct Exclusion Strategy. 14 …* This strategy is short-circuiting and will skip a class, or property as soon as one of the deleg… 33 public function addStrategy(ExclusionStrategyInterface $strategy): void argument 35 $this->delegates[] = $strategy;
|
| /plugin/copycode/ |
| D | script.js | 204 let strategy = new DummyCopyStrategy(); 206 strategy = new CopyHighlighted(window); 209 strategy = new CopyBlock(this); 211 strategy = new DummyCopyStrategy(); 213 strategy = new CopyBlockInline(this); 217 strategy.copy(); 218 alertMessage(strategy.get_message());
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Connection/ |
| D | ConnectionPool.php | 7 use Elastica\Connection\Strategy\StrategyInterface; 24 * @var StrategyInterface Strategy for connection 33 …public function __construct(array $connections, StrategyInterface $strategy, ?callable $callback =… argument 36 $this->_strategy = $strategy;
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ |
| D | Composite.php | 4 * Composite strategy that runs multiple strategies on tokens. 23 foreach ($this->strategies as $strategy) { 24 $tokens = $strategy->execute($tokens, $config, $context);
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Connection/Strategy/ |
| D | StrategyFactory.php | 3 namespace Elastica\Connection\Strategy; 30 $predefinedStrategy = '\\Elastica\\Connection\\Strategy\\'.$strategyName; 41 throw new InvalidException('Can\'t create strategy instance by given argument');
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | TokenFactory.php | 11 * the error handling strategy (to create missing tokens). Notifying the parser 12 * of a new factory means that it notifies its token source and error strategy. 18 * the error handling strategy. If `text !== null`, than the start and stop
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/ |
| H A D | ANTLRErrorStrategy.php | 38 * strategy successfully recovers from the match failure, this method 46 * returns successfully. The error strategy implementation is responsible 51 * @throws RecognitionException If the error strategy was not able to 65 * @throws RecognitionException If the error strategy could not recover 86 * @throws RecognitionException If an error is detected by the error strategy
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/ |
| D | AutoEscapeTokenParser.php | 32 * using the js escaping strategy 49 …throw new SyntaxError('An escaping strategy must be a string or a bool.', $stream->getCurrent()->g… 60 …@trigger_error('Using the autoescape tag with "true" or "false" before the strategy name is deprec… 63 …throw new SyntaxError('Unexpected escaping strategy as you set autoescaping to false.', $stream->g…
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/ |
| D | HTMLPurifier.includes.php | 63 require 'HTMLPurifier/Strategy.php'; 204 require 'HTMLPurifier/Strategy/Composite.php'; 205 require 'HTMLPurifier/Strategy/Core.php'; 206 require 'HTMLPurifier/Strategy/FixNesting.php'; 207 require 'HTMLPurifier/Strategy/MakeWellFormed.php'; 208 require 'HTMLPurifier/Strategy/RemoveForeignElements.php'; 209 require 'HTMLPurifier/Strategy/ValidateAttributes.php';
|
| /plugin/diagramsnet/lib/ |
| D | workbox-9fe249eb.js.map | 1 …Strategy.js","../../../../../../usr/local/lib/node_modules/workbox-cli/node_modules/workbox-precac…
|
| D | workbox-f163abaa.js.map | 1 …Strategy.js","../../../../../../usr/local/lib/node_modules/workbox-cli/node_modules/workbox-precac…
|
| D | workbox-bed83ea8.js.map | 1 …Strategy.js","../../../../../../../opt/hostedtoolcache/node/14.18.1/x64/lib/node_modules/workbox-c…
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
| D | escape_html_attr.test | 2 "escape" filter does not escape with the html strategy when using the html_attr strategy
|
| /plugin/findologicxmlexport/vendor/jms/serializer/src/ |
| D | Context.php | 141 public function addExclusionStrategy(ExclusionStrategyInterface $strategy): self argument 146 $this->exclusionStrategy = $strategy; 151 $this->exclusionStrategy->addStrategy($strategy); 157 $strategy,
|
| /plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Naming/ |
| D | IdenticalPropertyNamingStrategyTest.php | 29 $strategy = new IdenticalPropertyNamingStrategy(); 30 self::assertEquals($propertyName, $strategy->translateName($mockProperty));
|
| D | CamelCaseNamingStrategyTest.php | 28 $strategy = new CamelCaseNamingStrategy(); 29 self::assertEquals($expected, $strategy->translateName($mockProperty));
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
| D | Strategy.php | 4 * Supertype for classes that define a strategy for modifying/purifying tokens. 16 * Executes the strategy on the tokens.
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | box.inline.simple.php | 44 $strategy =& new StrategyLinkRenderingNormal(); 45 $strategy->apply($this, $driver);
|