/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/ |
H A D | Base32Hex.php | 40 * @param int $src 48 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src - 47); 51 $ret += (((0x60 - $src) & ($src - 0x77)) >> 8) & ($src - 86); 60 * @param int $src 68 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src - 47); 71 $ret += (((0x40 - $src) & ($src - 0x57)) >> 8) & ($src - 54); 80 * @param int $src 85 $src += 0x30; 88 $src += ((0x39 - $src) >> 8) & 39; 104 $src += 0x30; [all …]
|
H A D | Base64DotSlash.php | 44 * @param int $src 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 75 $src += 0x2e; 78 $src += ((0x2f - $src) >> 8) & 17; 81 $src += ((0x5a - $src) >> 8) & 6; 84 $src -= ((0x7a - $src) >> 8) & 75; [all …]
|
H A D | Base64UrlSafe.php | 45 * @param int $src 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 82 $diff += ((25 - $src) >> 8) & 6; 85 $diff -= ((51 - $src) >> 8) & 75; 88 $diff -= ((61 - $src) >> 8) & 13; [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 | 55 * @param string $src 65 * @param string $src 220 * @param int $src 228 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64); 231 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 70); 234 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 5); 237 $ret += (((0x2a - $src) & ($src - 0x2c)) >> 8) & 63; 240 $ret += (((0x2e - $src) & ($src - 0x30)) >> 8) & 64; 249 * @param int $src 257 $diff += ((25 - $src) >> 8) & 6; [all …]
|
H A D | Base32.php | 51 * @param string $src 74 * @param string $src 111 * @param int $src 119 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 96); 122 $ret += (((0x31 - $src) & ($src - 0x38)) >> 8) & ($src - 23); 133 * @param int $src 141 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64); 144 $ret += (((0x31 - $src) & ($src - 0x38)) >> 8) & ($src - 23); 153 * @param int $src 172 * @param int $src [all …]
|
/plugin/move/helper/ |
H A D | op.php | 28 * @param $src 32 public function checkPage($src, $dst) { argument 34 if(!page_exists($src)) { 35 msg(sprintf($this->getLang('notexist'), $src), -1); 38 if(auth_quickaclcheck($src) < AUTH_EDIT) { 39 msg(sprintf($this->getLang('norights'), $src), -1); 47 if(checklock($src) !== false || @file_exists(wikiLockFN($src))) { 48 msg(sprintf($this->getLang('filelocked'), $src), -1); 53 if($src 80 checkMedia($src, $dst) global() argument 119 movePage($src, $dst) global() argument 232 moveMedia($src, $dst) global() argument [all...] |
H A D | plan.php | 207 * @param string $src 210 public function addPageMove($src, $dst) { argument 211 $this->addMove($src, $dst, self::CLASS_DOC, self::TYPE_PAGES); 217 * @param string $src 220 public function addMediaMove($src, $dst) { argument 221 $this->addMove($src, $dst, self::CLASS_DOC, self::TYPE_MEDIA); 227 * @param string $src 230 public function addPageNamespaceMove($src, $dst) { argument 231 $this->addMove($src, $dst, self::CLASS_NS, self::TYPE_PAGES); 237 * @param string $src 240 addMediaNamespaceMove($src, $dst) global() argument 253 addMove($src, $dst, $class = self CLASS_NS, $type = self TYPE_PAGES) global() argument 687 addToDocumentList($src, $dst, $type = self TYPE_PAGES) global() argument 728 findAffectedPages($src, $dst, $class, $type) global() argument 761 findMissingDocuments($src, $dst, $type = self TYPE_PAGES) global() argument [all...] |
/plugin/pageimage/ |
H A D | helper.php | 47 $src = $this->getImageID($id); 49 if(!$src) { 50 $src = $this->getConf('default_image'); 54 list($ext,$mime,$dl) = mimetype($src); 97 $src = p_get_metadata($id,'pageimage'); 98 if( !$src || ($src && !@file_exists(mediaFN($src))) ){ 99 $src = $id .'.jpg'; 100 if(!@file_exists(mediaFN($src))) { 101 $src = $id .'.png'; 103 $src = $id .'.jpeg'; [all …]
|
/plugin/oauth/ |
H A D | deleted.files | 59 phpoauthlib/src/OAuth/Common/AutoLoader.php 60 phpoauthlib/src/OAuth/Common/Consumer/Credentials.php 61 phpoauthlib/src/OAuth/Common/Consumer/CredentialsInterface.php 62 phpoauthlib/src/OAuth/Common/Exception/Exception.php 63 phpoauthlib/src/OAuth/Common/Http/Client/AbstractClient.php 64 phpoauthlib/src/OAuth/Common/Http/Client/ClientInterface.php 65 phpoauthlib/src/OAuth/Common/Http/Client/CurlClient.php 66 phpoauthlib/src/OAuth/Common/Http/Client/StreamClient.php 67 phpoauthlib/src/OAuth/Common/Http/Exception/TokenResponseException.php 68 phpoauthlib/src/OAut [all...] |
/plugin/photogallery/phpThumb/demo/ |
H A D | phpThumb.demo.demo.php | 143 …src='.$img['anigif'], 'src='.$img['anigif'].'&w=25&f=gif', 'src='.$img['anigif'].'&w=25&f=png', 's… 144 $Examples[] = array('getstrings' => array('src='.$img['anigif'], 'src='.$img['anigif'].'&sfn=0&f=pn… 145 …rray('getstrings' => array('src='.$img['alpha'].'&f=png', 'src='.$img['alpha'].'&f=ico', 'src='.$i… 148 …] = array('getstrings' => array('src='.$img['landscape'].'&w=300', 'src='.$img['landscape'].'&w=30… 149 …[] = array('getstrings' => array('src='.$img['landscape'].'&w=300', 'src='.$img['landscape'].'&w=3… 154 …array('src='.$img['landscape'].'&w=300&ra=30&bg=0000FF', 'src='.$img['landscape'].'&w=300&ra=30&f=… 156 …src='.$img['landscape'].'&w=100&h=50&zc=1', 'src='.$img['landscape'].'&w=100&zc=1', 'src='.$img['l… 157 …src='.$img['whitespace'].'&w=100&h=100', 'src='.$img['whitespace'].'&w=100&h=100&ica=1', 'src='.$i… 158 $Examples[] = array('getstrings' => array('src='.$img['landscape'].'&w=300&fltr[]=crop|50', 'src='.… 161 …] = array('getstrings' => array('src='.$img['landscape'].'&w=300&fltr[]=sat|75', 'src='.$img['land… [all …]
|
/plugin/abc2/ |
H A D | syntax.php | 91 $src = $data[0]; 96 $renderer->doc .= $renderer->file($src); 101 $src = $this->_fixLibraryBugs($src); 102 $this->_renderAbcBlock($renderer, $src, true); 112 $keyLine = $this->_getAbcLine($src, 'K'); 113 $titleLine = $this->_getAbcLine($src, 'T'); 119 $transSrc = $src; 279 * @param string $src ABC code source 283 function _fixLibraryBugs($src) { argument 315 _renderAbcBlock($renderer, $src, $orig) global() argument 348 _getAbcLine($src, $field) global() argument [all...] |
/plugin/chessdiagram/ |
H A D | syntax.php | 178 $table_xhtml = array('-0' => '<img src="' 181 '-1' => '<img src="' 184 'x0' => '<img src="' 187 'x1' => '<img src="' 212 $table_xhtml += array('T' => '<img src="' 215 'B' => '<img src="' 218 'L' => '<img src="' 221 'R' => '<img src="' 224 'TL' => '<img src="' 231 '<img src="' [all …]
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | 15.15.js | 1 …src/,"string.quote"],[/connect-src/,"string.quote"],[/default-src/,"string.quote"],[/font-src/,"st…
|
/plugin/nsexport/packer/ziphtml/ |
H A D | renderer.php | 29 public function _localMedia($src){ argument 31 if(!preg_match('/^\w+:\/\//',$src)){ 32 $this->_media[] = $src; 35 $src = $ref.'_media/'.str_replace(':','/',$src); 37 return $src; 115 $src = $this->_localMedia($src); 117 list($ext,$mime,$dl) = mimetype($src); 141 $ret .= '<img src="'.$src.'"'; 197 list($src,$hash) = explode('#',$src,2); 200 $lsrc = $this->_localMedia($src); [all …]
|
/plugin/sequencediagram/bower_components/js-sequence-diagrams/ |
H A D | Makefile | 36 $(NODE_MODULES)/jshint --verbose src/*.js 42 $(NODE_MODULES)/jscs --fix src/*.js 71 build/grammar.js: src/grammar.jison 84 build/diagram-grammar.js: src/diagram.js build/grammar.js 88 …uence-diagram.js: src/main.js build/diagram-grammar.js src/jquery-plugin.js src/sequence-diagram.j… 93 …quence-diagram-raphael.js: src/main.js build/diagram-grammar.js src/jquery-plugin.js src/sequence-… 97 …/sequence-diagram-snap.js: src/main.js build/diagram-grammar.js src/jquery-plugin.js src/sequence-… 100 dist/sequence-diagram.css: src/sequence-diagram.css
|
/plugin/avatar/ |
H A D | helper.php | 33 $src = $this->_getAvatarURL($user, $title, $size); 36 return '<img src="'.$src.'" class="media'.$align.' photo fn"'. 67 $src = ml($ns.':'.$user.$format, array('w' => $size, 'h' => $size)); 70 $src = ml($ns.':'.$name.$format, array('w' => $size, 'h' => $size)); 73 if (empty($src)) $mail = $userinfo['mail']; 76 if (empty($src)) { 98 $src = 'https://secure.gravatar.com/'; 100 $src = 'http://www.gravatar.com/'; 102 $src [all...] |
/plugin/fedauth/classes/ |
H A D | fa_providerlist.class.php | 215 $src =& $this->_getOrderFor($id); 217 $first = reset($src); 229 $src =& $this->_getOrderFor($id); 231 $last = end($src); 241 $src =& $this->_getOrderFor($id); 242 if (src == null) return false; 245 $index = array_search($id, $src); 248 if(count($src) > $index) { 249 array_splice($src, $index+2, 0, $src[$index]); 263 if (src == null) return false; [all …]
|
/plugin/move/_test/ |
H A D | mediamove.test.php | 23 $src = 'mediareltest:foo'; 24 saveWikiText($src, 28 idx_addPage($src); 34 $this->assertTrue($move->movePage($src, $dst)); 52 $src = 'wiki:dokuwiki-128.png'; 57 $this->assertTrue($move->moveMedia($src, $dst)); 80 $src = 'wiki:testimage.png'; 85 $this->assertTrue($move->moveMedia($src, $dst)); 113 $src = 'wiki:foo:test_image.png'; 118 $this->assertTrue($move->moveMedia($src, [all...] |
/plugin/bez/renderer/ |
H A D | xhtmlmail.php | 25 * @param string $src media ID 34 public function _media($src, $title = null, $align = null, $width = null, argument 39 list($ext, $mime) = mimetype($src); 47 $jpeg = new JpegMeta(mediaFN($src)); 58 $title = $this->_xmlEntities(\dokuwiki\Utf8\PhpString::basename(noNS($src))); 63 $ret .= '<img src="@MEDIA(' . $src . ')@"'; 87 return $this->_xmlEntities($title ? $title : \dokuwiki\Utf8\PhpString::basename(noNS($src))); 98 $ret .= $this->_video($src, $width, $height, $att); 102 $ret .= $this->_audio($src, [all...] |
/plugin/prettyphoto/ |
H A D | renderer.php | 21 public function internalmedia($src, $title=NULL, $align=NULL, $width=NULL, $height=NULL, argument 24 list($src,$hash) = explode('#',$src,2); 25 resolve_mediaid(getNS($ID),$src, $exists); 29 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render); 31 list($ext,$mime,$dl) = mimetype($src,false); 36 $link['url'] = ml($src, array('id' => $ID, 'cache' => $cache), ($linking === 'direct')); 44 $link['url'] = ml($src, array('id' => $ID, 'cache' => $cache), true); 46 $link['title'] .= ' (' . filesize_h(filesize(mediaFN($src))).')';
|
/plugin/eventline/ |
H A D | plain.php | 107 function internalmedia ($src, $title=NULL, $align=NULL, $width=NULL, argument 110 list($src,$hash) = explode('#',$src,2); 111 resolve_mediaid(getNS($ID),$src, $exists); 117 list($ext,$mime,$dl) = mimetype($src,false); 124 function externalmedia ($src, $title=NULL, $align=NULL, $width=NULL, argument 126 $this->doc .= ' ' . $src . ' '; 198 * @param string $src 235 list($ext,$mime,$dl) = mimetype($src); 243 $jpeg =new JpegMeta(mediaFN($src)); 281 $title = basename(noNS($src)); [all …]
|
/plugin/latexport/helpers/ |
H A D | internal_media.php | 16 * @param string $src media ID 26 private $src; variable in InternalMedia 48 * @param string $src media ID 56 function __construct($src, $title, $align, $width, $height, $cache, $linking) { argument 58 $this->src = $src; 70 return $this->src; 107 return "$this->src ($this->align $this->width x $this->height) '$this->title'";
|
/plugin/diagramsnet/lib/js/diagramly/util/ |
H A D | mxAsyncCanvas.js | 138 mxAsyncCanvas.prototype.rewriteImageSource = function(src) argument 140 if (src.substring(0, 7) == 'http://' || src.substring(0, 8) == 'https://') 142 src = '/proxy?url=' + encodeURIComponent(src); 145 return src; 148 mxAsyncCanvas.prototype.image = function(x, y, w, h, src, aspect, flipH, flipV) argument 150 src = this.rewriteImageSource(src); 151 var image = this.htmlCanvas.images[src]; 169 this.htmlCanvas.images[src] = image; 170 image.src = src;
|
/plugin/netlogo/inc/ |
H A D | servefile.php | 14 $src = $_GET['src']; variable 25 $expectedtoken=hash('sha256',$uuid.$src.$expires); // debugging [Rik, 2012-10-06] - replace crypt()… 32 $src = DOKU_INC . 'data/media/' . $src; variable 33 if (!is_readable($src)) die(); 36 echo file_get_contents($src);
|