| /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 47 // if ($src > 0x30 && $src < 0x3a) ret += $src - 0x2e + 1; // -47 48 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src - 47); 50 // if ($src > 0x60 && $src < 0x77) ret += $src - 0x61 + 10 + 1; // -86 51 $ret += (((0x60 - $src) & ($src - 0x77)) >> 8) & ($src - 86); 60 * @param int $src 63 protected static function decode5BitsUpper(int $src): int argument 67 // if ($src > 0x30 && $src < 0x3a) ret += $src - 0x2e + 1; // -47 68 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src - 47); [all …]
|
| H A D | Base64DotSlash.php | 44 * @param int $src 47 protected static function decode6Bits(int $src): int argument 51 // if ($src > 0x2d && $src < 0x30) ret += $src - 0x2e + 1; // -45 52 $ret += (((0x2d - $src) & ($src - 0x30)) >> 8) & ($src - 45); 54 // if ($src > 0x40 && $src < 0x5b) ret += $src - 0x41 + 2 + 1; // -62 55 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 62); 57 // if ($src > 0x60 && $src < 0x7b) ret += $src - 0x61 + 28 + 1; // -68 58 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 68); 60 // if ($src > 0x2f && $src < 0x3a) ret += $src - 0x30 + 54 + 1; // 7 61 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 7); [all …]
|
| H A D | Base64DotSlashOrdered.php | 44 * @param int $src 47 protected static function decode6Bits(int $src): int argument 51 // if ($src > 0x2d && $src < 0x3a) ret += $src - 0x2e + 1; // -45 52 $ret += (((0x2d - $src) & ($src - 0x3a)) >> 8) & ($src - 45); 54 // if ($src > 0x40 && $src < 0x5b) ret += $src - 0x41 + 12 + 1; // -52 55 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 52); 57 // if ($src > 0x60 && $src < 0x7b) ret += $src - 0x61 + 38 + 1; // -58 58 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 58); 67 * @param int $src 70 protected static function encode6Bits(int $src): string argument [all …]
|
| H A D | Base64UrlSafe.php | 45 * @param int $src 48 protected static function decode6Bits(int $src): int argument 52 // if ($src > 0x40 && $src < 0x5b) $ret += $src - 0x41 + 1; // -64 53 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64); 55 // if ($src > 0x60 && $src < 0x7b) $ret += $src - 0x61 + 26 + 1; // -70 56 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 70); 58 // if ($src > 0x2f && $src < 0x3a) $ret += $src - 0x30 + 52 + 1; // 5 59 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 5); 61 // if ($src == 0x2c) $ret += 62 + 1; 62 $ret += (((0x2c - $src) & ($src - 0x2e)) >> 8) & 63; [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/vendor/composer/ |
| H A D | autoload_psr4.php | 10 'splitbrain\\slika\\' => array($vendorDir . '/splitbrain/slika/src'), 11 'splitbrain\\phpcli\\' => array($vendorDir . '/splitbrain/php-cli/src'), 12 'splitbrain\\PHPArchive\\' => array($vendorDir . '/splitbrain/php-archive/src'), 14 'splitbrain\\JSStrip\\' => array($vendorDir . '/splitbrain/php-jsstrip/src'), 16 'SimplePie\\' => array($vendorDir . '/simplepie/simplepie/src'), 17 'ParagonIE\\ConstantTime\\' => array($vendorDir . '/paragonie/constant_time_encoding/src'), 18 'PHP81_BC\\strftime\\' => array($vendorDir . '/php81_bc/strftime/src'), 20 'LesserPHP\\' => array($vendorDir . '/splitbrain/lesserphp/src'), 22 'IXR\\' => array($vendorDir . '/kissifrot/php-ixr/src'),
|
| H A D | autoload_static.php | 11 …'9e71c1459ef1226520e4b26dac3a180d' => __DIR__ . '/..' . '/php81_bc/strftime/src/php-8.1-strftime.p… 57 0 => __DIR__ . '/..' . '/splitbrain/slika/src', 61 0 => __DIR__ . '/..' . '/splitbrain/php-cli/src', 65 0 => __DIR__ . '/..' . '/splitbrain/php-archive/src', 73 0 => __DIR__ . '/..' . '/splitbrain/php-jsstrip/src', 81 0 => __DIR__ . '/..' . '/simplepie/simplepie/src', 85 0 => __DIR__ . '/..' . '/paragonie/constant_time_encoding/src', 89 0 => __DIR__ . '/..' . '/php81_bc/strftime/src', 97 0 => __DIR__ . '/..' . '/splitbrain/lesserphp/src', 105 0 => __DIR__ . '/..' . '/kissifrot/php-ixr/src', [all …]
|
| H A D | autoload_files.php | 10 … '9e71c1459ef1226520e4b26dac3a180d' => $vendorDir . '/php81_bc/strftime/src/php-8.1-strftime.php',
|
| /dokuwiki/inc/parser/ |
| H A D | metadata.php | 455 $this->_firstimage($name['src']); 457 $this->_recordMediaUsage($name['src']); 473 $this->_firstimage($name['src']); 475 $this->_recordMediaUsage($name['src']); 512 $this->_firstimage($name['src']); 514 $this->_recordMediaUsage($name['src']); 536 $this->_firstimage($name['src']); 538 $this->_recordMediaUsage($name['src']); 558 $this->_firstimage($name['src']); 560 $this->_recordMediaUsage($name['src']); [all …]
|
| H A D | xhtml.php | 739 … $this->doc .= '<img src="' . DOKU_BASE . 'lib/images/smileys/' . $this->smileys[$smiley] . 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, [all …]
|
| /dokuwiki/lib/tpl/dokuwiki/ |
| H A D | tpl_footer.php | 21 …src="<?php echo tpl_basedir(); ?>images/button-donate.gif" width="80" height="15" alt="Donate" /><… 23 …src="<?php echo tpl_basedir(); ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP… 25 …src="<?php echo tpl_basedir(); ?>images/button-html5.png" width="80" height="15" alt="Valid HTML5"… 27 …src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /><… 29 src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15"
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | build.xml | 26 <fileset dir="src" id="files"> 70 <delete file="src/package.xml" failonerror="false" /> 71 <d51pearpkg2 dir="src" baseinstalldir="/"> 96 <dirroles key="src">.</dirroles> 107 - strip the base directory names like src, data and www 112 <copy file="src/package.xml" tofile="src/package2.xml" overwrite="true"> 143 pattern="(<file name="src/(.+?)")" 149 <move file="src/package2.xml" tofile="src/package.xml" overwrite="true" /> 152 <exec command="pear package" passthru="true" dir="src" /> 153 <move file="src/${pkgfile}" todir="${phing.dir}/dist/pear/" /> [all …]
|
| H A D | composer.json | 20 "classmap": ["src/geshi/", "src/geshi.php"]
|
| /dokuwiki/lib/exe/ |
| H A D | detail.php | 9 global $INPUT, $INFO, $IMG, $ID, $REV, $SRC, $ERROR, $AUTH; 32 $SRC = mediaFN($IMG, $REV); variable 33 if (!file_exists($SRC)) {
|
| H A D | fetch.php | 61 'default-src' => "'none'", 62 'style-src' => "'unsafe-inline'", 63 'media-src' => "'self'", 64 'object-src' => "'self'", 65 'font-src' => "'self' data:",
|
| /dokuwiki/vendor/php81_bc/strftime/ |
| H A D | composer.json | 32 "src/php-8.1-strftime.php" 35 "PHP81_BC\\strftime\\": "src"
|
| H A D | autoload.php | 2 require __DIR__ . '/src/php-8.1-strftime.php';
|
| /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/lib/images/smileys/ |
| H A D | index.php | 34 $smi_list .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> '; 39 $smi_list .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
|
| /dokuwiki/lib/images/fileicons/ |
| H A D | index.php | 35 $fi_list .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> '; 38 $fi_list32 .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
|
| /dokuwiki/vendor/splitbrain/lesserphp/ |
| H A D | rector.php | 11 __DIR__ . '/src',
|
| /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/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/inc/ |
| H A D | Manifest.php | 52 'src' => $url, 69 'src' => $url,
|