| /dokuwiki/vendor/paragonie/constant_time_encoding/src/ |
| H A D | Base32Hex.php | 40 * @param int $src 43 protected static function decode5Bits(int $src): int argument 48 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src - 47); 51 $ret += (((0x60 - $src) & ($src - 0x77)) >> 8) & ($src - 86); 60 * @param int $src 63 protected static function decode5BitsUpper(int $src): int argument 68 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src - 47); 71 $ret += (((0x40 - $src) & ($src - 0x57)) >> 8) & ($src - 54); 80 * @param int $src 83 protected static function encode5Bits(int $src): string argument [all …]
|
| H A D | Base64DotSlash.php | 44 * @param int $src 47 protected static function decode6Bits(int $src): int argument 52 $ret += (((0x2d - $src) & ($src - 0x30)) >> 8) & ($src - 45); 55 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 62); 58 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 68); 61 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 7); 70 * @param int $src 73 protected static function encode6Bits(int $src): string argument 75 $src += 0x2e; 78 $src += ((0x2f - $src) >> 8) & 17; [all …]
|
| H A D | Base64UrlSafe.php | 45 * @param int $src 48 protected static function decode6Bits(int $src): int argument 53 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64); 56 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 70); 59 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 5); 62 $ret += (((0x2c - $src) & ($src - 0x2e)) >> 8) & 63; 65 $ret += (((0x5e - $src) & ($src - 0x60)) >> 8) & 64; 74 * @param int $src 77 protected static function encode6Bits(int $src): string argument 82 $diff += ((25 - $src) >> 8) & 6; [all …]
|
| H A D | Base64DotSlashOrdered.php | 44 * @param int $src 47 protected static function decode6Bits(int $src): int argument 52 $ret += (((0x2d - $src) & ($src - 0x3a)) >> 8) & ($src - 45); 55 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 52); 58 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 58); 67 * @param int $src 70 protected static function encode6Bits(int $src): string argument 72 $src += 0x2e; 75 $src += ((0x39 - $src) >> 8) & 7; 78 $src += ((0x5a - $src) >> 8) & 6; [all …]
|
| H A D | Base64.php | 62 * @param string $src 69 string $src argument 71 return static::doEncode($src, false); 75 * @param string $src 83 string $src, argument 87 $srcLen = Binary::safeStrlen($src); 91 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, 3)); 105 $chunk = \unpack('C*', Binary::safeSubstr($src, $i, $srcLen - $i)); 269 * @param int $src 272 protected static function decode6Bits(int $src): int argument [all …]
|
| H A D | Base32.php | 58 * @param string $src 64 string $src, argument 67 return static::doDecode($src, true, $strictPadding); 87 * @param string $src 93 string $src argument 95 return static::doEncode($src, false, false); 101 * @param string $src 107 string $src argument 109 return static::doEncode($src, true, true); 115 * @param string $src [all …]
|
| /dokuwiki/inc/parser/ |
| H A D | metadata.php | 602 * @param string $src media ID 611 $src, argument 622 $this->_firstimage($src); 623 $this->_recordMediaUsage($src); 629 * @param string $src full media URL 638 $src, argument 649 $this->_firstimage($src); 732 * @param string $src image URL or ID 734 protected function _firstimage($src) argument 742 [$src] = explode('#', $src, 2); [all …]
|
| H A D | xhtml.php | 1175 * @param string $src media ID 1186 $src, argument 1196 if (strpos($src, '#') !== false) { 1197 [$src, $hash] = sexplode('#', $src, 2); 1199 $src = (new MediaResolver($ID))->resolveId($src, $this->date_at, true); 1200 $exists = media_exists($src); 1204 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render); 1206 [$ext, $mime] = mimetype($src, false); 1209 $src, 1213 'rev' => $this->_getLastMediaRevisionAt($src) [all …]
|
| H A D | renderer.php | 666 * @param string $src media ID 675 $src, argument 688 * @param string $src full media URL 697 $src, argument 710 * @param string $src media ID 718 $src, argument 730 * @param string $src media ID 738 $src, argument
|
| H A D | handler.php | 1104 $src = substr($link[0], 0, $pos); 1107 $src = $link[0]; 1139 if (media_isexternal($src) || link_isinterwiki($src)) { 1147 'src' => $src,
|
| /dokuwiki/inc/Ui/Media/ |
| H A D | Display.php | 37 $src = ml($this->mediaFile->getId(), ['w' => $w, 'h' => $h]); 39 $src = $this->getIconUrl(); 49 return '<img src="' . $src . '" ' . buildAttributes($attr) . ' />';
|
| /dokuwiki/inc/ |
| H A D | confutils.php | 155 $src = []; 156 $data = ['versions' => $versions, 'src' => &$src]; 161 $src[] = DOKU_BASE . 'lib/exe/jquery.php' . '?tseed=' . $jqmod; 163 $src[] = sprintf('https://code.jquery.com/jquery-%s.min.js', $versions['JQ_VERSION']); 164 … $src[] = sprintf('https://code.jquery.com/ui/%s/jquery-ui.min.js', $versions['JQUI_VERSION']); 166 $src[] = sprintf( 170 $src[] = sprintf( 178 return $src;
|
| H A D | media.php | 74 $src = mediaFN($id); 76 $meta = new JpegMeta($src); 88 $old = @filemtime($src); 89 if (!file_exists(mediaFN($id, $old)) && file_exists($src)) { 93 $filesize_old = filesize($src); 95 if ($conf['fperm']) chmod($src, $conf['fperm']); 96 @clearstatcache(true, $src); 97 $new = @filemtime($src); 98 $filesize_new = filesize($src); 170 $src = mediaFN($id); [all …]
|
| H A D | template.php | 388 foreach ($jquery as $src) { 391 'src' => $src 1078 * @param null|string $src the image src, uses global $SRC if not given 1083 function tpl_img_getTag($tags, $alt = '', $src = null) argument 1088 if (is_null($src)) $src = $SRC; 1089 if (is_null($src)) return $alt; 1092 $imgMeta = new JpegMeta($src); 1210 …$src = ml($IMG, ['cache' => $INPUT->str('cache'), 'rev' => $REV, 'w' => $w, 'h' => $h], true, '&'); 1228 $p['src'] = $src; 1638 $src = license_img($img); [all …]
|
| H A D | common.php | 1761 foreach ($try as $src) { 1762 if (file_exists(DOKU_INC . $src)) return $src;
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Installer.php | 519 * @param string $src filename path to file 523 protected function dircopy($src, $dst) argument 527 if (is_dir($src)) { 528 if (!$dh = @opendir($src)) { 529 throw new Exception('error_copy_read', [$src]); 535 $this->dircopy("$src/$f", "$dst/$f"); 545 if (!@copy($src, $dst)) { 546 throw new Exception('error_copy_copy', [$src, $dst]); 549 @touch($dst, filemtime($src));
|
| /dokuwiki/inc/Feed/ |
| H A D | FeedMediaProcessor.php | 74 $src = new Display(new MediaFile($this->getId())); 75 return $this->cleanHTML($src->getPreviewHtml(500, 500));
|
| /dokuwiki/vendor/splitbrain/php-jsstrip/ |
| H A D | composer.lock | 40 "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 109 "src/DeepCopy/deep_copy.php" 112 "DeepCopy\\": "src/DeepCopy/" 168 "src/" 219 "src/" 290 "src/" 351 "src/" 403 "src/" 456 "src/" 516 "src/" [all …]
|
| /dokuwiki/vendor/splitbrain/slika/ |
| H A D | composer.lock | 39 "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 107 "DeepCopy\\": "src/DeepCopy/" 110 "src/DeepCopy/deep_copy.php" 166 "src/" 217 "src/" 273 "phpDocumentor\\Reflection\\": "src/" 333 "phpDocumentor\\Reflection\\": "src" 386 "phpDocumentor\\Reflection\\": "src" 439 "Prophecy\\": "src/Prophecy" 513 "src/" [all …]
|
| /dokuwiki/_test/ |
| H A D | composer.lock | 41 "DOMWrap\\": "src/" 247 "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 317 "src/DeepCopy/deep_copy.php" 320 "DeepCopy\\": "src/DeepCopy/" 435 "src/" 492 "src/" 567 "source": "https://github.com/phpstan/phpstan-src" 625 "src/" 687 "src/" 751 "src/" [all …]
|
| /dokuwiki/ |
| H A D | composer.lock | 75 "src/geshi/", 76 "src/geshi.php" 125 "IXR\\": "src/", 232 "ParagonIE\\ConstantTime\\": "src/" 351 "src/php-8.1-strftime.php" 354 "PHP81_BC\\strftime\\": "src" 522 "SimplePie\\": "src" 588 "LesserPHP\\": "src", 653 "splitbrain\\PHPArchive\\": "src" 713 "splitbrain\\phpcli\\": "src" [all …]
|
| /dokuwiki/lib/scripts/ |
| H A D | behaviour.js | 237 img.src = $checkDiv.data('src') + '?t=' + Date.now();
|
| /dokuwiki/_test/tests/inc/parser/ |
| H A D | parser_media.test.php | 31 $source = '<source src="http://some.where.far/away.ogv" type="video/ogg" />';
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | README.markdown | 39 1. `src/` - SimplePie classes for use with the autoloader
|
| /dokuwiki/vendor/php81_bc/strftime/ |
| H A D | README.md | 63 - Download [php-8.1-strftime.php](https://github.com/alphp/strftime/raw/master/src/php-8.1-strftime…
|