Home
last modified time | relevance | path

Searched refs:match (Results 501 – 525 of 2354) sorted by relevance

1...<<21222324252627282930>>...95

/plugin/shell/
H A DP0wnyShell.php24 if (preg_match("#^(~[a-zA-Z0-9_.-]*)(/.*)?$#", $path, $match)) {
25 exec("echo $match[1]", $stdout);
26 return $stdout[0] . $match[2];
111 preg_match("/^\s*cd\s+(\S+)\s*(2>&1)?$/", $cmd, $match);
112 chdir($this->expandPath($match[1]));
115 preg_match("/^\s*download\s+(\S+)\s*(2>&1)?$/", $cmd, $match);
116 return $this->featureDownload($match[1]);
/plugin/mapillary/
H A Dsyntax.php79 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
82 $space = stripos($match, ' ');
92 $match = substr(str_replace(' ', '', $match), 12, - 2);
93 $params = explode('&', $match);
/plugin/feed/
H A Dsyntax.php77 * @param string $match The text matched by the patterns
83 public function handle($match, $state, $pos, Doku_Handler $handler) argument
87 $match = substr($match, 2, -2); // strip markup
88 list($feed, $data) = explode('>', $match, 2);
/plugin/combo/syntax/
H A Dcontentlistitem.php116 * @param string $match
124 function handle($match, $state, $pos, Doku_Handler $handler) argument
131 $attributes = TagAttributes::createFromTagMatch($match);
132 $tag = PluginUtility::getMarkupTag($match);
140 return PluginUtility::handleAndReturnUnmatchedData(self::DOKU_TAG, $match, $handler);
H A Dvariable.php107 * @param string $match
113 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
120 if (substr($match, 0, $lengthLongPrefix) === Template::LONG_PREFIX) {
121 $expression = trim(substr($match, $lengthLongPrefix, -1));
126 $expression = "\"$match\"";
/plugin/disqus/
H A Dsyntax.php47 function handle($match, $state, $pos, Doku_Handler $handler){ argument
49 $match = substr($match, 8, -2); //strip ~~DISQUS from start and ~~ from end
50 $shortname = strtolower(trim($match)); //strip spaces
/plugin/sincetil/
H A Dsyntax.php27 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
32 return array($state, $match);
46 list($state,$match) = $data;
51 $date = new DateTime ($match);
/plugin/task/syntax/
H A Dtaskform.php27 function handle($match, $state, $pos, Doku_Handler $handler) { argument
31 $match = substr($match, 12, -2);
32 list($ns, $flags) = explode('&', $match, 2);
/plugin/avatar/
H A Dsyntax.php28 function handle($match, $state, $pos, Doku_Handler $handler) {
29 list($syntax, $match) = explode('>', substr($match, 0, -2), 2); // strip markup argument
30 $one = explode('?', $match, 2); // [user|mail] ? [size]|[title]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Parser/
H A DFootnoteParser.php
/plugin/orphanswanted/
H A Dsyntax.php59 function handle($match, $state, $pos, Doku_Handler $handler){ argument
61 $match = substr($match,16,-2); //strip ~~ORPHANSWANTED: from start and ~~ from end
67 …$match_in = explode("@", $match); // eg: $match_array = array(); $match_in = array('all…
/plugin/reflect/
H A Dsyntax.php30 function handle($match, $state, $pos, Doku_Handler $handler){ argument
32 $match = substr($match, 10, -2); // strip markup
35 list($src, $add) = explode('|', $match, 2);
/plugin/displayorphans/
H A Dsyntax.php52 function handle($match, $state, $pos, Doku_Handler $handler) argument
54 $match = substr($match, 9, -2);
55 $type = trim($match);
/plugin/projects/plugins/file/
H A Dlatex_dependency.php53 foreach ($matches['content'] as $match)
54 if (has_extension($match, $file_extension))
55 $deps[] = $match;
57 $deps[] = $match . $file_extension;
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/
H A DStatus.php13 * It defines the API and provides basic logic to match patterns.
52 $pattern, $buffer, $match, PREG_OFFSET_CAPTURE, $offset
56 isset($match[0][1]) &&
57 $match[0][1] === $offset
59 return $match[0][0];
/plugin/codemirror/dist/modes/
H A Dgfm.min.js1match(/^```+/)){c.codeBlock=false;return null}a.skipToEnd();return null}if(a.sol()){c.code=false}i…
/plugin/rst/
H A Dsyntax.php36 function handle($match, $state, $pos, &$handler) { argument
39 case DOKU_LEXER_UNMATCHED : return array($match);
169 if (preg_match('/h([1-7])/',$node->tagName,$match))
172 $node->setAttribute('class', 'sectionedit'.$match[1]);
175 $renderer->toc_additem($hid, $node->nodeValue, $match[1]);
/plugin/linkbonus/syntax/
H A Dexternal.php63 function handle($match, $state, $pos, &$handler) { argument
64 $match = substr($match, 2, -2);
68 $data = preg_split('/(?<!\\\\)\|/', $match);
155 'match' => $match,
H A Dbase.php64 function handle($match, $state, $pos, &$handler) { argument
65 $match = substr($match, 2, -2);
69 $data = preg_split('/(?<!\\\\)\|/', $match);
158 'match' => $match,
/plugin/feedmod/
H A Daction.php62 $id = cleanID(str_replace($base_url, '', $match[1]));
64 $id = cleanID($match[1]);
77 preg_match('#doku.php/([^&]*)#', $url['path'], $match);
79 $id = cleanID(str_replace($base_url, '', $match[1]));
81 $id = cleanID($match[1]);
/plugin/dwtimeline/syntax/
H A Ddwtimeline.php59 * @param string $match The match of the syntax
65 public function handle($match, $state, $pos, Doku_Handler $handler) argument
85 * @param string $match the cleaned option String: 'opt1="value1" opt2="value2"'
88 public function getTitleMatches(string $match): array argument
95 preg_match_all('/(?<title>\w+?\b=".*?")/',$match,$titles);
/plugin/structstatus/
H A Dsyntax.php46 * @param string $match The match of the syntax
52 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
53 $match = trim(substr($match, 16, -2));
54 list($table, $column) = explode('.', $match, 2);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A Db0eaf67e5cce24ef8889bf20951ccec1.asciidoc1 // query-dsl/multi-match-query.asciidoc:130
11 'match' => [
16 'match' => [
/plugin/fksnewsfeed/syntax/
H A Dcarousel.php16 public function handle($match, $state, $pos, Doku_Handler $handler): array { argument
17 preg_match_all('/([a-z]+)="([^".]*)"/', substr($match, 16, -2), $matches);
19 foreach ($matches[1] as $index => $match) {
20 $parameters[$match] = $matches[2][$index];
30 [$state, $match] = $data;
33 [$param] = $match;
/plugin/ipmap/
H A Drendertables.php32 function handle($match, $state, $pos, Doku_Handler $handler){ argument
35 list($ip, $net,$subnet) = preg_split("/\//u", substr($match, 7, -1), 3);
36 return array($state, array($ip, $net, $subnet,strip_tags($match)));
37 case DOKU_LEXER_UNMATCHED : return array($state, $match);
45 list($state,$match) = $data;
48 list($ip, $net, $subnet,$data) = $match;

1...<<21222324252627282930>>...95