| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ |
| D | ConfigForm.php | 109 list($ns, $directive) = $key; 110 $all[$ns][$directive] = $config->get($ns . '.' . $directive); 153 foreach ($directives as $directive => $value) { 157 $url = str_replace('%s', urlencode("$ns.$directive"), $this->docURL); 160 $attr = array('for' => "{$this->name}:$ns.$directive"); 163 if (!$this->compress || (strlen($directive) < $this->compress)) { 164 $directive_disp = $directive; 166 $directive_disp = substr($directive, 0, $this->compress - 2) . '...'; 167 $attr['title'] = $directive; 182 $def = $this->config->def->info["$ns.$directive"]; [all …]
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/ |
| D | InterchangeBuilder.php | 109 $directive = new HTMLPurifier_ConfigSchema_Interchange_Directive(); 112 $directive->id = $this->id($hash->offsetGet('ID')); 113 $id = $directive->id->toString(); // convenience 118 $directive->typeAllowsNull = true; 120 $directive->type = $type[0]; 127 $directive->default = $this->varParser->parse( 129 $directive->type, 130 $directive->typeAllowsNull 138 $directive->description = $hash->offsetGet('DESCRIPTION'); 142 $directive->allowed = $this->lookup($this->evalArray($hash->offsetGet('ALLOWED'))); [all …]
|
| D | Interchange.php | 25 * @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive 28 public function addDirective($directive) argument 30 if (isset($this->directives[$i = $directive->id->toString()])) { 33 $this->directives[$i] = $directive;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/ |
| D | Layer.php | 29 public $directive; variable in Google\\Service\\OnDemandScanning\\Layer 48 public function setDirective($directive) argument 50 $this->directive = $directive; 57 return $this->directive;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/ |
| D | Layer.php | 29 public $directive; variable in Google\\Service\\ContainerAnalysis\\Layer 48 public function setDirective($directive) argument 50 $this->directive = $directive; 57 return $this->directive;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Container/ |
| D | HttpCacheControlResponseHeader.php | 29 public $directive; variable in Google\\Service\\Container\\HttpCacheControlResponseHeader 52 public function setDirective($directive) argument 54 $this->directive = $directive; 61 return $this->directive;
|
| /plugin/cspheader/ |
| D | action.php | 75 foreach (self::DIRECTIVES as $directive) { 76 $option = str_replace('-', '', $directive) . 'Value'; 84 $policies[$directive] = join(' ', $values); 88 foreach ($policies as $directive => $value) { 89 $cspheader .= " $directive $value;";
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/ |
| D | HTML.ForbiddenAttributes.txt | 7 While this directive is similar to %HTML.AllowedAttributes, for 10 attributes in <code>a</code> tags, set this directive to 16 <strong>Warning:</strong> This directive complements %HTML.ForbiddenElements, 18 out that directive for a discussion of why you 19 should think twice before using this directive.
|
| D | HTML.AllowedAttributes.txt | 13 <strong>Warning:</strong> If another directive conflicts with the 14 elements here, <em>that</em> directive will win and override. For 16 directive. You must set that directive to true before you can use
|
| D | CSS.ForbiddenProperties.txt | 8 override that directive or any other directive. If possible, 9 %CSS.AllowedProperties is recommended over this directive,
|
| D | HTML.DefinitionID.txt | 11 If you change your custom edits, you should change this directive, or 24 has taken place, so it needs an extra directive: %HTML.DefinitionID. 27 an extra directive attached to it. 30 You <em>must</em> specify a value to this directive to use the
|
| D | Core.AggressivelyFixLt.txt | 7 This directive enables aggressive pre-filter fixes HTML Purifier can 11 if your users make very well-formed HTML, you can set this directive false. 15 <strong>Notice:</strong> This directive's default turned from false to true
|
| D | HTML.ForbiddenElements.txt | 9 %HTML.AllowedElements, and it will override that directive, or any 10 other directive. 13 If possible, %HTML.Allowed is recommended over this directive, because it
|
| D | HTML.AllowedModules.txt | 11 with this directive. This is most useful for unit testing specific 17 by this directive. Modules defined in %HTML.CoreModules are not 18 affected by this directive.
|
| D | HTML.SafeIframe.txt | 8 directive must be accompanied by a whitelist of permitted iframes, 10 This directive has no effect on strict doctypes, as iframes are not
|
| D | HTML.MaxImgLength.txt | 7 This directive controls the maximum number of pixels in the width and 10 This directive is similar to %CSS.MaxImgLength, and both should be
|
| D | Core.AggressivelyRemoveScript.txt | 7 This directive enables aggressive pre-filter removal of 12 This directive has no effect if %Core.Trusted is true,
|
| D | CSS.AllowedProperties.txt | 15 <strong>Warning:</strong> If another directive conflicts with the 16 elements here, <em>that</em> directive will win and override.
|
| D | URI.Munge.txt | 10 This directive accepts a URI, formatted with a <code>%s</code> where 15 Uses for this directive: 31 Prior to HTML Purifier 3.1.1, this directive also enabled the munging 37 You may want to also use %URI.MungeSecretKey along with this directive
|
| D | Core.Encoding.txt | 6 use this directive as a stop-gap compatibility change to let HTML Purifier 13 trouble with another tradeoff. This directive only accepts ISO-8859-1 if
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
| D | Config.php | 300 $directive = $value; 302 $key = "$key.$directive"; 691 foreach ($namespace_values as $directive => $value2) { 692 $this->set($namespace .'.'. $directive, $value2); 736 list($ns, $directive) = explode('.', $key, 2); 738 if (isset($blacklisted_directives["$ns.$directive"])) { 741 if (!isset($allowed_directives["$ns.$directive"]) && !isset($allowed_ns[$ns])) { 748 if ($directive == 'DefinitionID' || $directive == 'DefinitionRev') { 751 $ret[] = array($ns, $directive); 811 list($ns, $directive) = $key; [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/ |
| D | TAP.php | 222 * @param string $directive 224 protected function writeNotOk(PHPUnit_Framework_Test $test, $prefix = '', $directive = '') argument 232 $directive != '' ? ' # ' . $directive : ''
|
| /plugin/dirtylittlehelper/mermaid/editor/docs/ |
| D | 0.0.js | 1 …directive.include",next:"@include"}],[/^\s*#\s*\w+/,"keyword"],[/[{}()\[\]]/,"@brackets"],[/[<>](?…
|
| /plugin/asciidocjs/node_modules/clean-css/lib/options/ |
| D | format.js | 139 .reduce(function (accumulator, directive) { argument 140 var parts = directive.split(OPTION_NAME_VALUE_SEPARATOR); 161 .reduce(function (accumulator, directive) { argument 162 var parts = directive.split(HASH_VALUES_NAME_VALUE_SEPARATOR);
|
| D | rounding-precision.js | 66 .reduce(function (accumulator, directive) { argument 67 var directiveParts = directive.split(DIRECTIVE_VALUE_SEPARATOR);
|