Home
last modified time | relevance | path

Searched refs:parts (Results 1 – 25 of 29) sorted by last modified time

12

/dokuwiki/vendor/geshi/geshi/
H A 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
H A DCHANGELOG237 inside of non-string parts
306 - Reworked parts of the number support (BenBE)
619 - Optimized generation of code parts in strict mode (Milian Wolff)
/dokuwiki/inc/parser/
H A Dxhtml.php886 $parts = explode('?', $id, 2);
887 if (count($parts) === 2) {
888 $id = $parts[0];
889 $params = $parts[1];
1620 * Assembles all parts defined in $link returns HTML for the link
H A Dmetadata.php477 $parts = explode('?', $id, 2);
478 if (count($parts) === 2) {
479 $id = $parts[0];
/dokuwiki/inc/
H A Dsearch.php383 $parts = explode('/', ltrim($file, '/'));
385 ($type == 'd' && count($parts) >= $opts['depth'])
386 || ($type != 'd' && count($parts) > $opts['depth'])
H A Dtemplate.php837 $parts = explode(':', $ID);
838 $count = count($parts);
848 $part .= $parts[$i] . ':';
859 if ($page == $part . $parts[$i]) {
865 $page = $part . $parts[$i];
H A Dcommon.php224 // include ID & REV not redundant, as some parts of DokuWiki may temporarily change $ID, e.g. p_wiki_xhtml
1609 * You can give the string in two parts, the first part $keep
1928 $parts = explode('#', $_COOKIE['DOKU_PREFS']);
1929 $cnt = count($parts);
1934 if ($parts[$i] === $enc_pref) {
1935 return urldecode($parts[$i + 1]);
1957 $parts = explode('#', $_COOKIE['DOKU_PREFS']);
1958 $cnt = count($parts);
1963 if ($parts[$i] === $enc_pref) {
1966 $parts[
[all...]
H A DActionRouter.php172 * parts are removed beginning from the end until a matching class is found. The instatiated
184 $parts = explode('_', $actionname);
185 while ($parts !== []) {
186 $load = implode('_', $parts);
191 array_pop($parts);
/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js86 var parts = cookies[i].split('=');
87 var name = decode(parts.shift());
88 var cookie = parts.join('=');
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php
/dokuwiki/lib/scripts/
H A 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/splitbrain/php-archive/src/
H A DFileInfo.php276 * Cleans up a path and removes relative parts, also strips leading slashes
316 $parts = explode('/', $filename);
318 $base = array_pop($parts); // keep filename itself
322 $filename = join('/', array_slice($parts, $strip));
/dokuwiki/inc/Search/
H A DIndexer.php338 $parts = explode(':', $indexline);
339 foreach ($parts as $part) {
989 * multiple parts. Different index files should use different
1214 $parts = explode(':', $line);
1215 foreach ($parts as $tuple) {
1239 $parts = explode(':', $line);
1240 foreach ($parts as $tuple) {
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md43 You can skip Minification for parts of your code by surrounding it by special comments:
/dokuwiki/lib/plugins/extension/lang/da/
H A Dintro_search.txt1 Denne fane giver dig adgang til alle tredje-parts [[doku>plugins|udvidelser]] og [[doku>template|temaer]] til DokuWiki. Vær opmærksom på at installation af tredje-parts kode kan være en **sikkerhedsrisiko**. Overvej at læse dokumentation af [[doku>security#plugin_sec (…)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSFTP.php844 $parts = explode('/', $path);
846 foreach ($parts as $part) {
/dokuwiki/
H A DCOPYING250 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
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE434 14. If you wish to incorporate parts of the Library into other free
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A 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) {
H A DX509.php1129 $parts = parse_url($url);
1131 switch ($parts['scheme']) {
1133 $fsock = @fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80);
1137 $path = $parts['path'];
1138 if (isset($parts['query'])) {
1139 $path .= '?' . $parts['query'];
1142 fputs($fsock, "Host: $parts[host]\r\n\r\n");
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE426 14. If you wish to incorporate parts of the Library into other free
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php113 /** The starter for important parts of the source */
115 /** The ender for important parts of the source */
363 * Styles for important parts of the code
369 protected $important_styles = 'font-weight: bold; color: red;'; // Styles for important parts of the code
1779 * Sets styles for important parts of the code
1781 * @param string $styles The styles to use on important parts of the code
2208 $parts = array();
2294 $parts[$k] = array(
2305 $parts[$k][0] = $next_match_pointer['dk'];
2342 $parts[
[all...]

12