Home
last modified time | relevance | path

Searched refs:match (Results 351 – 375 of 2354) sorted by relevance

1...<<11121314151617181920>>...95

/plugin/sql2wiki/syntax/
H A Dquery.php38 public function handle($match, $state, $pos, Doku_Handler $handler) argument
41 $xml = simplexml_load_string($match);
43 msg('Syntax: "'.hsc($match) . '" is not valid xml', -1);
56 $content_start = strpos($match, '>') + 1;
57 $tag_value = substr($match, $content_start, -strlen('</sql2wiki>'));
80 $start = $pos + strpos($match, '>'); // closing char of the opening tag
81 $end = $pos + strlen($match) - strlen('</sql2wiki>') - 1;
91 'match' => $match
/plugin/redirect2/
H A Dsyntax.php38 * @param string $match The text matched by the patterns
44 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
46 if ($match[0] == '#') { // #REDIRECT PAGE
47 $page = substr(ltrim($match), 10);
49 $page = substr($match, 11, -2);
/plugin/subjectindex/inc/
H A Dmatcher.php23 $matched = preg_match('/Entry(.+?)\.php/', $file, $match);
26 $class = 'SI_Entry' . $match[1];
38 function match($text) { function in SI_MatchEntry
42 if ($matcher->match($text) === true) {
71 function match() { function in SI_Entry
/plugin/bugzillaint/syntax/
H A Dtree.php52 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
56 if ( preg_match('/<[Bb]ugtree\s+([0-9]+)[^>]*>/', $match, $submatch) ) {
59 …'depth' => preg_match('/depth:([0-9])/i', $match, $found) ? $found[1] : $this->getConf('tree_depth…
60 'hideResolved' => !!preg_match('/hideResolved/i', $match, $found),
61 …'extras' => preg_match('/extras:([a-z_,]+)/i', $match, $found) ? trim($found[1]) : $this->getConf(…
/plugin/searchpattern/
H A Dsyntax.php255 function handle($match, $state, $pos, &$handler){ argument
259 $params['match'] = $match; //store the original matching string
263 if(substr($match,-4,2) == '??'){ //if options are passed
264 $options = substr($match, 0, -4); //extract options ...
559 $match = $matches[$page];
560 if( count($match) > 1 ) {
565 $regex_output_matches = array_keys( $match );
568 for( $i=0; $i<count($match[0]); $i++ ) {
569 if( !isset( $match[0][$i] ) ) {
578 $renderer->doc .= ( isset($match[$j][$i] ) ? htmlspecialchars($match[$j][$i]) : '' );
[all …]
/plugin/emphasis/syntax/
H A Dfont.php69 * @param string $match The match of the syntax
75 function handle($match, $state, $pos, Doku_Handler $handler) { argument
76 $data['match'] = $match;
80 $colortype = ($match[0] == ':' ? 'color':'background-color');
99 $data['degree'] = strlen($match) - 1;
112 $handler->addCall('cdata', array($match), $pos);
/plugin/mermaid/
H A Dsyntax.php63 function handle($match, $state, $pos, Doku_Handler $handler)
67 return array($state, $match);
69 return array($state, $match);
82 list($state, $match) = $indata;
85 $values = explode(" ", $match);
91 $explodedMatch = explode("\n", $match);
102 $instructions = $this->p_get_instructions($this->protect_brackets_from_dokuwiki($match));
43 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/webcomponent/syntax/
H A Dcontainer.php98 * @param string $match
104 function handle($match, $state, $pos, Doku_Handler $handler) argument
112 $match = utf8_substr($match, strlen(self::getElementName()) + 1, -1);
113 $parameters = webcomponent::parseMatch($match);
H A Dcite.php43 function handle($match, $state, $pos, Doku_Handler $handler) { argument
48 $match = utf8_substr($match, strlen($this->getPluginComponent()) + 1, -1);
49 $parameters = webcomponent::parseMatch($match);
53 return array ($state, $match);
/plugin/datasearchform/
H A Dsyntax.php53 * @param string $match The text matched by the patterns
59 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
60 … $match = trim(substr($match,15,-1)); //strip {datasearchform (length 15) from start and } from end
61 list($key,$value) = explode('=', $match, 2);
/plugin/odp/
H A Dsyntax.php55 function handle($match, $state, $pos, Doku_Handler $handler){ argument
57 if ($match == '~~ODP~~') { return array(); }
59 $match = substr($match,6,-2); //strip markup
60 $extinfo = explode(':',$match);
/plugin/hidepages/
H A Dsyntax.php26 function handle($match, $state, $pos, Doku_Handler $handler){ argument
28 $match = hsc(trim($match));
30 if($match == '~~HIDEPAGE~~') {
35 $param = utf8_substr($match, 11, -2);
/plugin/commentsyntax/
H A Dscript.js26 if (comment.match(/^\s*\/\*/) && comment.match(/\*\/\s*$/)) {
43 if (comment.match(/^\n/)) {
49 if (!(prevchar.match(/\s/))) { comment = " " + comment; }
50 if (!(nextchar.match(/\s/))) { comment = comment + " "; }
/plugin/pot/source/
H A Dtext.php9 $potformula = htmlspecialchars($match);
32 preg_match("/.*($searchpotid).*/x", $key, $match); //.*(gut).*
33 if ($key == $match[0]) {
46 preg_match("/.*($searchval).*/", $key, $match);
48 if ($key == $match[0]) {
/plugin/codemirror/dist/modes/
H A Drst.min.js.map1match","next","mode","getMode","backdrop","overlayMode","format","string","args","Array","prototyp…
H A Dscheme.min.js1match(n)}function s(a){return a.match(o)}function t(a,b){if(b===true){a.backUp(1)}return a.match(q…
/plugin/csstimeline/
H A Dhelper.php13 public function handleMatch($match) argument
15 $match = substr($match, 13, -14);
16 $lines = explode("\n",$match);
/plugin/divalign2/syntax/
H A Dcenter.php32 function handle($match, $state, $pos, Doku_Handler $handler){ argument
34 $content= $match;
35 $match= array ('content' => $content, 'align'=>$align);
36 parent::handle($match, $state, $pos, $handler);
H A Djustify.php32 function handle($match, $state, $pos, Doku_Handler $handler){ argument
34 $content= $match;
35 $match= array ('content' => $content, 'align'=>$align);
36 parent::handle($match, $state, $pos, $handler);
H A Dleft.php32 function handle($match, $state, $pos, Doku_Handler $handler){ argument
34 $content= $match;
35 $match= array ('content' => $content, 'align'=>$align);
36 parent::handle($match, $state, $pos, $handler);
H A Dright.php32 function handle($match, $state, $pos, Doku_Handler $handler){ argument
34 $content= $match;
35 $match= array ('content' => $content, 'align'=>$align);
36 parent::handle($match, $state, $pos, $handler);
/plugin/acknowledge/syntax/
H A Dassign.php39 public function handle($match, $state, $pos, Doku_Handler $handler)
41 $match = substr($match, 6, -2);
42 return ['assignees' => $match];
37 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/wst/syntax/
H A Dtemplate.php51 * @param string $match The match of the syntax
57 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
58 if (empty($match)) return false;
60 $dump = trim(substr($match, 6, -2)); // remove curly brackets and "wst:" keyword
61 …('/\{\{(((?!(\{\{|\}\})).*?|(?R))*)\}\}/', function($match) {return str_replace('|', '{{!}}', $mat…
/plugin/htmlok/
H A DBaseSyntaxPlugin.php55 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
59 return [$state, $match];
61 return [$state, $match];
75 [$state, $match] = $data;
83 $renderer->doc .= $this->renderMatch($match);
95 abstract protected function renderMatch(string $match): string; argument
/plugin/bootswrapper/syntax/
H A Dmacros.php42 public function handle($match, $state, $pos, Doku_Handler $handler) argument
44 return array($match, $state, $pos);
57 list($match, $state, $pos) = $data;
59 switch ($match) {

1...<<11121314151617181920>>...95