| /dokuwiki/vendor/simplepie/simplepie/src/Content/Type/ |
| H A D | Sniffer.php | 133 if (substr($this->file->body, 0, 2) === "\xFE\xFF" 134 || substr($this->file->body, 0, 2) === "\xFF\xFE" 135 || substr($this->file->body, 0, 4) === "\x00\x00\xFE\xFF" 136 || substr($this->file->body, 0, 3) === "\xEF\xBB\xBF") { 138 } elseif (preg_match('/[\x00-\x08\x0E-\x1A\x1C-\x1F]/', $this->file->body)) { 152 $ws = strspn($this->file->body, "\x09\x0A\x0B\x0C\x0D\x20"); 153 if (strtolower(substr($this->file->body, $ws, 14)) === '<!doctype html' 154 || strtolower(substr($this->file->body, $ws, 5)) === '<html' 155 || strtolower(substr($this->file->body, $ws, 7)) === '<script') { 157 } elseif (substr($this->file->body, 0, 5) === '%PDF-') { [all …]
|
| /dokuwiki/inc/Feed/ |
| H A D | FeedParserFile.php | 33 $this->body = $this->http->resp_body; 48 public function body() function in dokuwiki\\Feed\\FeedParserFile 50 return $this->body;
|
| /dokuwiki/inc/Remote/ |
| H A D | JsonRpcServer.php | 26 …* @param string $body Should only be set for testing, otherwise the request body is read from php:… 30 public function serve($body = '') argument 55 if ($body === '') { 56 $body = file_get_contents('php://input'); 58 if ($body !== '') { 59 $data = json_decode($body, true, 512, JSON_THROW_ON_ERROR);
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | File.php | 64 public $body; variable in SimplePie\\File 131 $this->body = trim($parser->body); 196 $this->body = $parser->body; 211 $decoder = new \SimplePie\Gzdecode($this->body); 216 $this->body = trim($decoder->data); 221 if (($decompressed = gzinflate($this->body)) !== false) { 222 $this->body = $decompressed; 223 … } elseif (($decompressed = gzuncompress($this->body)) !== false) { 224 $this->body = $decompressed; 225 … } elseif (function_exists('gzdecode') && ($decompressed = gzdecode($this->body)) !== false) { [all …]
|
| H A D | Locator.php | 82 if (class_exists('DOMDocument') && $this->file->body != '') { 87 $this->dom->loadHTML($this->file->body); 128 … if ($type & \SimplePie\SimplePie::LOCATOR_LOCAL_BODY && $working = $this->body($this->local)) { 136 …if ($type & \SimplePie\SimplePie::LOCATOR_REMOTE_BODY && $working = $this->body($this->elsewhere))… 346 public function body(&$array) function in SimplePie\\Locator
|
| H A D | Misc.php | 2048 $body = <<<END 2070 echo $body;
|
| H A D | Sanitize.php | 431 …ache->set_data($image_url, ['headers' => $file->headers, 'body' => $file->body], $this->cache_dura…
|
| H A D | SimplePie.php | 661 …public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'f… 1839 @$doc->loadHTML($file->body); 1902 $this->raw_data = $file->body;
|
| /dokuwiki/inc/ |
| H A D | Mailer.class.php | 513 $body = ''; 518 $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL); 520 $body .= "This is a multi-part message in MIME format." . MAILHEADER_EOL; 529 $body .= '--' . $this->boundary . 'XX' . MAILHEADER_EOL; 530 $body .= 'Content-Type: text/plain; charset=UTF-8' . MAILHEADER_EOL; 531 $body .= 'Content-Transfer-Encoding: base64' . MAILHEADER_EOL; 532 $body .= MAILHEADER_EOL; 533 $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL); 534 $body .= '--' . $this->boundary . 'XX' . MAILHEADER_EOL; 535 $body .= 'Content-Type: multipart/related;' . MAILHEADER_EOL . [all …]
|
| H A D | fulltext.php | 892 $body = substr($token, 3); 896 $q['ns'][] = $body; // for backward compatibility 899 $q['notns'][] = $body; // for backward compatibility 902 $q['words'][] = $body; 905 $q['words'][] = $body; 906 $q['not'][] = $body; // for backward compatibility 909 $q['words'][] = $body; 910 $q['highlight'][] = $body; 911 $q['and'][] = $body; // for backward compatibility 914 $q['phrases'][] = $body; [all …]
|
| H A D | indexer.php | 176 $body = ''; 187 $data = ['page' => $page, 'body' => $body, 'metadata' => $metadata, 'pid' => $pid]; 194 $result = $Indexer->addPageWords($page, $body);
|
| /dokuwiki/vendor/simplepie/simplepie/src/HTTP/ |
| H A D | Parser.php | 88 public $body = ''; variable in SimplePie\\HTTP\\Parser 191 $this->body = ''; 429 protected function body() function in SimplePie\\HTTP\\Parser 431 $this->body = substr($this->data, $this->position); 445 if (!preg_match('/^([0-9a-f]+)[^\r\n]*\r\n/i', trim($this->body))) { 451 $encoded = $this->body; 465 $this->body = $decoded; 478 $this->body = $decoded;
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | MBOXCreator.php | 88 $body = chunk_split(MBOXCreator::qp_enc($this->items[$i]->description)); 89 $feed .= preg_replace("~\nFrom ([^\n]*)(\n?)~", "\n>From $1$2\n", $body);
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | structure.less | 6 body {
|
| H A D | print.css | 7 body { selector
|
| H A D | _diff.css | 43 /* table body */
|
| H A D | basic.less | 16 body { 22 body {
|
| H A D | mobile.less | 149 body {
|
| /dokuwiki/lib/scripts/ |
| H A D | fileuploader.js | 1042 iframe.contentDocument.body && 1043 iframe.contentDocument.body.innerHTML == "false"){ 1063 this.log("innerHTML = " + doc.body.innerHTML); 1066 response = eval("(" + doc.body.innerHTML + ")"); 1089 document.body.appendChild(iframe); 1109 document.body.appendChild(form);
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 234 * Fixed the error message shown when a feed has an empty body. [#487](https://github.com/simplepie/… 276 * Added sanitization of the `</html>` and `</body>` tags. [#348](https://github.com/simplepie/simpl…
|
| /dokuwiki/lib/scripts/jquery/ |
| H A D | jquery-ui.min.js | 6 …body}return i.wrap(t),i[0]!==n&&!V.contains(i[0],n)||V(n).trigger("focus"),t=i.parent(),"static"==…
|
| H A D | jquery.min.js | 2 …body.appendChild(a.createElement(s)),u=ce.css(o,"display"),o.parentNode.removeChild(o),"none"===u&…
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/ |
| H A D | LICENSE | 98 programs enables a greater number of people to use a large body of 411 written in the body of this License.
|
| /dokuwiki/vendor/simplepie/simplepie/idn/ |
| H A D | LICENCE | 98 programs enables a greater number of people to use a large body of 411 written in the body of this License.
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | LICENSE | 235 the limitation as if written in the body of this License.
|