Home
last modified time | relevance | path

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

/dokuwiki/_test/tests/inc/parser/
H A Dparser_quotes.test.php16 $raw = "Foo 'hello Bar";
18 $this->P->parse($raw);
30 … $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls, 'wikitext => '.$raw);
34 $raw = "Foo said:'hello Bar";
36 $this->P->parse($raw);
48 … $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls, 'wikitext => '.$raw);
52 $raw = "Foo hello' Bar";
54 $this->P->parse($raw);
66 … $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls, 'wikitext => '.$raw);
70 $raw = "Foo hello') Bar";
[all …]
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php131 * @param string $raw Raw HTML text.
134 public function parse($raw) argument
139 $initialLength = strlen($raw);
142 while (is_array($parsed = $this->reduce($raw))) {
144 $currentLength = strlen($raw);
158 return $this->invokeHandler($raw, DOKU_LEXER_UNMATCHED, $pos);
279 * @param string $raw The subject to parse. This is the content that will be eaten.
284 protected function reduce(&$raw) argument
289 if ($raw === "") {
292 if ($action = $this->regexes[$this->modeStack->getCurrent()]->split($raw, $split)) {
[all …]
/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.php1084 $raw = str_getcsv($csv, ',', '"', "\\");
1088 … if ($raw[0] == 'user_id' || $raw[0] == $this->lang['user_id']) continue; // skip headers
1090 … if (count($raw) < 4) { // need at least four fields
1092 $error = sprintf($this->lang['import_error_fields'], count($raw));
1093 … $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'orig' => $csv];
1096 … array_splice($raw, 1, 0, auth_pwgen()); // splice in a generated password
1097 $clean = $this->cleanImportUser($raw, $error);
1106 … array_splice($raw, 1, 1); // remove the spliced in password
1107 … $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'orig' => $csv];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php3615 while (strlen($packet->raw) < $packet->size) {
3629 $raw = stream_get_contents($this->fsock, $packet->size - strlen($packet->raw));
3635 if ($raw === false) {
3638 } elseif (!strlen($raw)) {
3641 $packet->raw .= $raw;
3647 if (strlen($packet->raw) != $packet->size) {
3653 $raw = $packet->raw;
3655 $hmac = Strings::pop($raw, $this->hmac_size);
3667 $this->decrypt->setAAD(Strings::shift($raw, $packet_length_header_size));
3668 $this->decrypt->setTag(Strings::pop($raw, $this->decrypt_block_size));
[all …]
H A DSFTP.php1079 * @param bool $raw
1083 private function readlist($dir, $raw = true) argument
1179 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.php3658 $raw = ASN1::asn1map($decoded[0], ['type' => ASN1::TYPE_BIT_STRING]);
3659 if (empty($raw)) {
3663 $key = PublicKeyLoader::load($raw);
3667 $key = $raw; // Is a public key.
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG120 * Add raw string support for Rust (mbrown1413)