Home
last modified time | relevance | path

Searched refs:raw (Results 1 – 11 of 11) sorted by relevance

/dokuwiki/_test/tests/Parsing/ParserMode/
H A DQuotesTest.php17 $raw = "Foo 'hello Bar";
19 $this->P->parse($raw);
31 $this->assertCalls($calls, $this->H->calls, 'wikitext => '.$raw);
35 $raw = "Foo said:'hello Bar";
37 $this->P->parse($raw);
49 $this->assertCalls($calls, $this->H->calls, 'wikitext => '.$raw);
53 $raw = "Foo hello' Bar";
55 $this->P->parse($raw);
67 $this->assertCalls($calls, $this->H->calls, 'wikitext => '.$raw);
71 $raw = "Foo hello') Bar";
[all …]
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php138 * @param string $raw Raw HTML text.
141 public function parse($raw) argument
146 $initialLength = strlen($raw);
149 while (is_array($parsed = $this->reduce($raw))) {
151 $currentLength = strlen($raw);
165 return $this->invokeHandler($raw, DOKU_LEXER_UNMATCHED, $pos);
278 * @param string $raw The subject to parse. This is the content that will be eaten.
283 protected function reduce(&$raw) argument
288 if ($raw === "") {
291 if ($action = $this->regexes[$this->modeStack->getCurrent()]->split($raw, $split)) {
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DPsr18Client.php151 $raw = file_get_contents($path);
156 if ($raw === false) {
160 return new RawTextResponse($raw, $path);
/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js24 return config.raw ? s : encodeURIComponent(s);
28 return config.raw ? s : decodeURIComponent(s);
51 var value = config.raw ? s : parseCookieValue(s);
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php1085 $raw = str_getcsv($csv, ',', '"', "\\");
1089 … if ($raw[0] == 'user_id' || $raw[0] == $this->lang['user_id']) continue; // skip headers
1091 … if (count($raw) < 4) { // need at least four fields
1093 $error = sprintf($this->lang['import_error_fields'], count($raw));
1094 … $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'orig' => $csv];
1097 … array_splice($raw, 1, 0, auth_pwgen()); // splice in a generated password
1098 $clean = $this->cleanImportUser($raw, $error);
1107 … array_splice($raw, 1, 1); // remove the spliced in password
1108 … $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'orig' => $csv];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php3644 while (strlen($packet->raw) < $packet->size) {
3658 $raw = stream_get_contents($this->fsock, $packet->size - strlen($packet->raw));
3664 if ($raw === false) {
3667 } elseif (!strlen($raw)) {
3670 $packet->raw .= $raw;
3676 if (strlen($packet->raw) != $packet->size) {
3682 $raw = $packet->raw;
3684 $hmac = Strings::pop($raw, $this->hmac_size);
3696 $this->decrypt->setAAD(Strings::shift($raw, $packet_length_header_size));
3697 $this->decrypt->setTag(Strings::pop($raw, $this->decrypt_block_size));
[all …]
H A DSFTP.php1086 * @param bool $raw
1090 private function readlist($dir, $raw = true) argument
1186 return $raw ? $contents : array_map('strval', array_keys($contents));
/dokuwiki/lib/plugins/popularity/lang/en/
H A Dintro.txt9 The raw data that will be sent is shown below. Please use the **Send Data** button to transfer the …
/dokuwiki/vendor/php81_bc/strftime/
H A DREADME.md63 - Download [php-8.1-strftime.php](https://github.com/alphp/strftime/raw/master/src/php-8.1-strftime…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php3664 $raw = ASN1::asn1map($decoded[0], ['type' => ASN1::TYPE_BIT_STRING]);
3665 if (empty($raw)) {
3669 $key = PublicKeyLoader::load($raw);
3673 $key = $raw; // Is a public key.
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG120 * Add raw string support for Rust (mbrown1413)