Home
last modified time | relevance | path

Searched refs:parts (Results 1 – 25 of 30) sorted by relevance

12

/dokuwiki/lib/scripts/
Dcookie.js59 var text, parts, i;
65 parts = text.split('#');
66 for(i = 0; i < parts.length; i += 2){
67 this.data[decodeURIComponent(parts[i])] = decodeURIComponent(parts[i+1]);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
DOpenSSH.php121 $parts = explode(' ', $key, 3);
123 if (!isset($parts[1])) {
124 $key = base64_decode($parts[0]);
127 $asciiType = $parts[0];
128 self::checkType($parts[0]);
129 $key = base64_decode($parts[1]);
130 $comment = isset($parts[2]) ? $parts[2] : false;
/dokuwiki/lib/plugins/extension/lang/da/
Dintro_search.txt1 …l alle tredje-parts [[doku>plugins|udvidelser]] og [[doku>template|temaer]] til DokuWiki. Vær opmæ…
/dokuwiki/inc/File/
DResolver.php88 $parts = explode(':', $id);
90 foreach ($parts as $dir) {
/dokuwiki/inc/
Dhttputils.php136 $parts = count($ranges);
143 if ($parts == 1) {
151 for ($i = 0; $i < $parts; $i++) {
155 if ($parts > 1) {
178 if ($parts > 1) {
DActionRouter.php184 $parts = explode('_', $actionname);
185 while ($parts !== []) {
186 $load = implode('_', $parts);
191 array_pop($parts);
Dcommon.php1896 $parts = explode('#', $_COOKIE['DOKU_PREFS']);
1897 $cnt = count($parts);
1902 if ($parts[$i] === $enc_pref) {
1903 return urldecode($parts[$i + 1]);
1925 $parts = explode('#', $_COOKIE['DOKU_PREFS']);
1926 $cnt = count($parts);
1931 if ($parts[$i] === $enc_pref) {
1934 $parts[$i + 1] = rawurlencode($val ?? '');
1936 unset($parts[$i]);
1937 unset($parts[$i + 1]);
[all …]
Dsearch.php383 $parts = explode('/', ltrim($file, '/'));
385 ($type == 'd' && count($parts) >= $opts['depth'])
386 || ($type != 'd' && count($parts) > $opts['depth'])
Dtemplate.php858 $parts = explode(':', $ID);
859 $count = count($parts);
869 $part .= $parts[$i] . ':';
880 if ($page == $part . $parts[$i]) {
886 $page = $part . $parts[$i];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
DStrings.php238 $parts = preg_split('#(\d+)#', $format, -1, PREG_SPLIT_DELIM_CAPTURE);
240 for ($i = 1; $i < count($parts); $i += 2) {
241 … $format .= substr($parts[$i - 1], 0, -1) . str_repeat(substr($parts[$i - 1], -1), $parts[$i]);
243 $format .= $parts[$i - 1];
286 $parts = str_split($x, $block_size);
288 foreach ($parts as $part) {
/dokuwiki/lib/scripts/jquery/
Djquery.cookie.js86 var parts = cookies[i].split('=');
87 var name = decode(parts.shift());
88 var cookie = parts.join('=');
/dokuwiki/vendor/splitbrain/lesserphp/src/
DParser.php609 $parts = [];
623 $parts[] = $prop;
633 if (is_array($expressions)) $parts = array_merge($parts, $expressions[2]);
636 if (count($parts) == 0) {
641 $out = $parts;
975 protected function tagBracket(&$parts, &$hasExpression) argument
1035 $parts[] = $part;
1057 $parts = [];
1058 while ($this->tagBracket($parts, $hasExpression)) {
1067 $parts[] = $m[1];
[all …]
DLessc.php661 $parts = [];
665 $parts[] = implode(' ', array_slice($q, 1));
669 $parts[] = "($q[1]: " .
672 $parts[] = "($q[1])";
676 $parts[] = $this->compileValue($this->reduce($q));
681 if (count($parts) > 0) {
682 $compiledQueries[] = implode(' and ', $parts);
687 if (!empty($parts)) {
723 $parts = explode("$&$", $tag);
725 foreach ($parts as &$part) {
[all …]
/dokuwiki/vendor/splitbrain/php-archive/src/
DFileInfo.php316 $parts = explode('/', $filename);
318 $base = array_pop($parts); // keep filename itself
322 $filename = join('/', array_slice($parts, $strip));
/dokuwiki/inc/Extension/
DPluginTrait.php23 $parts = sexplode('_', $class, 3);
24 $ext = $parts[2];
/dokuwiki/inc/parser/
Dmetadata.php479 $parts = explode('?', $id, 2);
480 if (count($parts) === 2) {
481 $id = $parts[0];
Dxhtml.php887 $parts = explode('?', $id, 2);
888 if (count($parts) === 2) {
889 $id = $parts[0];
890 $params = $parts[1];
/dokuwiki/vendor/splitbrain/php-jsstrip/
DREADME.md43 You can skip Minification for parts of your code by surrounding it by special comments:
/dokuwiki/inc/Search/
DIndexer.php338 $parts = explode(':', $indexline);
339 foreach ($parts as $part) {
1213 $parts = explode(':', $line);
1214 foreach ($parts as $tuple) {
1238 $parts = explode(':', $line);
1239 foreach ($parts as $tuple) {
/dokuwiki/lib/plugins/authad/
Dauth.php604 $parts = explode(' ', $changes['name']);
605 $adchanges['surname'] = array_pop($parts);
606 $adchanges['firstname'] = implode(' ', $parts);
/dokuwiki/vendor/geshi/geshi/src/
Dgeshi.php2208 $parts = array();
2294 $parts[$k] = array(
2305 $parts[$k][0] = $next_match_pointer['dk'];
2342 $parts[$k][1] = substr($code, $next_match_pos);
2346 $parts[$k][1] = substr($code, $next_match_pos, $i - $next_match_pos);
2356 $parts = array(
2363 1 => $parts[0][1]
2372 $parts = array(
2440 $endresult .= $this->hsc($parts[$key][1]);
2441 unset($parts[$key]);
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
DASN1.php1216 $parts = explode('.', $oid);
1217 $part1 = array_shift($parts);
1218 $part2 = array_shift($parts);
1224 array_unshift($parts, $first->toString());
1227 foreach ($parts as $part) {
DX509.php1124 $parts = parse_url($url);
1126 switch ($parts['scheme']) {
1128 $fsock = @fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80);
1132 $path = $parts['path'];
1133 if (isset($parts['query'])) {
1134 $path .= '?' . $parts['query'];
1137 fputs($fsock, "Host: $parts[host]\r\n\r\n");
/dokuwiki/vendor/splitbrain/lesserphp/
DLICENSE186 subprograms and other parts of the work.
189 can regenerate automatically from other parts of the Corresponding
266 additional terms, to the whole of the work, and all its parts,
284 parts of the aggregate.
301 long as you offer spare parts or customer support for that product
/dokuwiki/vendor/geshi/geshi/
DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may

12