Home
last modified time | relevance | path

Searched refs:raw (Results 1 – 10 of 10) sorted by last modified time

/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/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php131 * @param string $raw Raw HTML text.
134 public function parse($raw)
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);
180 * @param int $matchPos Current byte index location in raw doc thats being parsed
251 * @param int $pos Current byte index location in raw doc
279 * @param string $raw The subject to parse. This is the content that will be eaten.
284 protected function reduce(&$raw)
135 parse($raw) global() argument
285 reduce(& $raw) global() argument
[all...]
/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 information.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php3569 $raw = stream_get_contents($this->fsock, $this->decrypt_block_size);
3571 if (!strlen($raw)) {
3585 $this->decrypt->setAAD($temp = Strings::shift($raw, 4));
3591 $raw .= $this->read_remaining_bytes($packet_length - $this->decrypt_block_size + 4);
3595 $raw = $this->decrypt->decrypt($raw);
3596 $raw = $temp . $raw;
3608 $temp = $this->lengthDecrypt->decrypt($aad = Strings::shift($raw, 4));
3614 $raw
[all...]
H A DSFTP.php1077 * @param bool $raw
1081 private function readlist($dir, $raw = true)
1177 return $raw ? $contents : array_map('strval', array_keys($contents));
1174 _list($dir, $raw = true) global() argument
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php1083 $raw = str_getcsv($csv);
1087 if ($raw[0] == 'user_id' || $raw[0] == $this->lang['user_id']) continue; // skip headers
1089 if (count($raw) < 4) { // need at least four fields
1091 $error = sprintf($this->lang['import_error_fields'], count($raw));
1092 $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'orig' => $csv];
1095 array_splice($raw, 1, 0, auth_pwgen()); // splice in a generated password
1096 $clean = $this->cleanImportUser($raw, $error);
1105 array_splice($raw, 1, 1); // remove the spliced in password
1106 $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'ori
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php3637 $raw = ASN1::asn1map($decoded[0], ['type' => ASN1::TYPE_BIT_STRING]);
3638 if (empty($raw)) {
3642 $key = PublicKeyLoader::load($raw);
3646 $key = $raw; // Is a public key.
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG118 * Add raw string support for Rust (mbrown1413)