Home
last modified time | relevance | path

Searched refs:match (Results 526 – 550 of 2354) sorted by relevance

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

/plugin/encryptedpasswords/script/
H A DEditorHandling.js36 !prefix.match(re) &&
37 !suffix.match(re) &&
38 !text.match(re)
102 !prefix.match(re) &&
103 !suffix.match(re) &&
104 !text.match(re)
/plugin/combo/syntax/
H A Dheadingwiki.php116 * @param string $match
122 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
130 $level = $this->getLevelFromMatch($match);
147 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
159 $levelFromMatch = $this->getLevelFromMatch($match);
244 * @param $match
248 function getLevelFromMatch($match): int argument
250 return 7 - strlen(trim($match));
H A Diteratordata.php118 * @param string $match
127 function handle($match, $state, $pos, Doku_Handler $handler) argument
133 $attributes = PluginUtility::getTagAttributes($match);
141 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dcheck_acl.php84 foreach($matches as $match){
85 $match = preg_replace('/#.*$/','',$match); //ignore comments
86 $acl = preg_split('/\s+/',$match);
108 foreach($matches as $match){
110 $match = preg_replace('/#.*$/','',$match); //ignore comments
111 $acl = preg_split('/\s+/',$match);
/plugin/blog/syntax/
H A Darchive.php23 function handle($match, $state, $pos, Doku_Handler $handler) { argument
26 $match = substr($match, 10, -2); // strip {{archive> from start and }} from end
27 list($match, $flags) = explode('&', $match, 2);
29 list($match, $refine) = explode(' ', $match, 2);
30 list($ns, $rest) = explode('?', $match, 2);
/plugin/codemirror/dist/modes/
H A Dprotobuf.min.js.map1match","skipToEnd","next","defineMode","token","fold","defineMIME"],"mappings":"CAGA,SAAUA,GACR,SA…
H A Dcrystal.min.js.map1match","tokenMacro","peek","skipToEnd","matched","eat","current","test","blocks","indexOf","curren…
H A Dasciiarmor.min.js1match(/^\s*\S/);a.skipToEnd();return b?"error":null}a.defineMode("asciiarmor",function(){return{to…
H A Ddjango.min.js.map1match","tokenize","inVariable","inTag","inComment","next","inString","delimiter","previousTokenize…
/plugin/gitlabapi/
H A Dsyntax.php47 function handle($match, $state, $pos, Doku_Handler $handler) { argument
55 preg_match("/server *= *(['\"])(.*?)\\1/", $match, $server);
69 preg_match("/project-path *= *(['\"])(.*?)\\1/", $match, $project_path);
74 preg_match("/milestones *= *(['\"])(.*?)\\1/", $match, $milestones);
78 preg_match("/commits *= *(['\"])(.*?)\\1/", $match, $commits);
82 preg_match("/issues *= *(['\"])(.*?)\\1/", $match, $issues);
86 preg_match("/pipelines *= *(['\"])(.*?)\\1/", $match, $pipelines);
92 return array('state' => $state, 'text' => $match);
95 return array('state' => $state, 'bytepos_end' => $pos + strlen($match));
134 return array('state' => $state, 'bytepos_end' => $pos + strlen($match));
/plugin/pycode/
H A Dsyntax.php94 * @param (str) $match the text matched
118 $match = $this->mpp->_remove_multi_space($match);
119 $match = substr($match, 8, -1); // strips "<pycode " and ">"
124 preg_match($re, $match, $matches);
125 if (preg_match($re, $match, $matches) == 1) {
132 preg_match($re, $match, $matches);
133 if (preg_match($re, $match, $matches) == 1) {
140 preg_match($re, $match, $matches);
141 if (preg_match($re, $match, $matches) == 1) {
148 $match = preg_replace($re, $subst, $match);
[all …]
/plugin/batchedit/
H A Dinterface.php327 foreach ($page->getMatches() as $match) {
328 print('<div class="be-match">'); argument
330 $this->printMatchHeader($page->getId(), $match);
331 $this->printMatchTable($match);
340 private function printMatchHeader($pageId, $match) {
341 $id = $pageId . '#' . $match->getPageOffset();
345 if (!$match->isApplied()) {
346 $this->printApplyCheckBox($id, $id, 'ttl_applymatch', $match->isMarked());
363 private function printMatchTable($match) {
364 $original = $this->prepareText($match
351 printMatchTable($match) global() argument
[all...]
/plugin/highlightjs/highlight/
H A Dhighlight.js106 if (!match)
108 if (match.index == 0)
109 return ['', match[0], false];
111 return [value.substr(0, match.index), match[0], false];
114 function keywordMatch(mode, match) { argument
115 var match_str = language.case_insensitive ? match[0].toLowerCase() : match[0]
139 var match = mode.lexemsRe.exec(buffer);
140 while (match) {
147 result += escape(match[0]);
150 match = mode.lexemsRe.exec(buffer);
[all …]
/plugin/siteexport/action/
H A Dmove.php30 public function move_handler($match, $state, $pos, $pluginname, $handler) { argument
32 $handler->internallink($match, $state, $pos);
35 return $match;
/plugin/sneakyindexfix/
H A Daction.php83 foreach($matches as $match) {
84 $match = preg_replace('/#.*$/', '', $match); //ignore comments
85 $acl = preg_split('/[ \t]+/', $match);
/plugin/navpath/
H A Dsyntax.php73 * @param string $match The match of the syntax
80 public function handle($match, $state, $pos, Doku_Handler $handler) argument
84 $split = preg_split("/split=/", substr($match, 8, -1), 2)[1];
89 $data = explode($this->split, $match);
/plugin/usercontact/
H A Dscript.js46 var match = href.replace(/\//g, ':').match(regex);
47 if (!match) return;
49 $link.usercontact_name = match[1];
/plugin/pixelyear/
H A Dsyntax.php28 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
33 return array($state, $match);
47 list($state,$match) = $data;
76 $rows = explode ("\n", $match);
/plugin/topbarsyntax/
H A Dsyntax.php45 function handle($match, $state, $pos, Doku_Handler &$handler) { argument
47 $match = substr($match,strlen('{{topbarsyntax>'),-2); //strip markup from start and end
51 … $params = explode(',',$match); // if you will have more parameters and choose ',' to delim them
/plugin/blockquote/syntax/
H A Dblockquote.php53 function handle($match, $state, $pos, Doku_Handler $handler) { argument
58 $source = trim(substr($match,strpos($match,' '),-1));
67 $match
H A Dq.php50 function handle($match, $state, $pos, Doku_Handler $handler) { argument
55 $source = trim(substr($match,strpos($match,' '),-1));
64 $match
/plugin/button/
H A Daction.php62 public function rewrite_button($match, $state, $pos, $plugin, helper_plugin_move_handler $handler) argument
64 $returnValue = $match;
71 if (preg_match('/\[\[{(?<image>[^}\|]*)\|?(?<css>[^}]*)}(?<link>[^\]\|]*)\|?(?<title>[^\]]*)/', $match, $data))
87 if (substr($match,-1) == "|") $returnValue.="|";
90 //dbglog("REWRITE : " . $match . " ----> " . $returnValue);
/plugin/footer/
H A Dsyntax.php27 function handle($match, $state, $pos, Doku_Handler $handler){ argument
28 $match = str_replace("~~NOFOOTER~~", '', $match);
/plugin/ckgedit/ckeditor/plugins/pastefromword/filter/
H A Ddefault.js7 …me;return}if(a.attributes.name.match(/^OLE_LINK\d+$/)){delete a.name;return}}if(a.attributes.href&…
8match(/#(.+)$/)[1];x[b]=a}a.attributes.name&&x[a.attributes.name]&&(a=x[a.attributes.name],a.attri…
9match(/^file:\/\//)&&a.attributes.alt&&a.attributes.alt.match(/^https?:\/\//)&&(a.attributes.src=a…
14match(/^mso\-bookmark:OLE_LINK\d+$/)||a.getHtml().match(/^(\s|&nbsp;)+$/)){for(var c=a.children.le…
18match(/\[if.* supportFields.*\]/)&&v++;"[endif]"==a&&(v=0<v?v-1:0);return!1},text:function(a,b){if…
29match(/mso\-list:\s?l\d/)&&"li"!==b.parent.name||b.attributes["cke-dissolved"]||b.getHtml().match(…
35 …"decimal",a.match(/[a-z]/)&&(b="lower-alpha"),a.match(/[A-Z]/)&&(b="upper-alpha"));return b}},getS…
46 …c:function(a){return a.match(/[ivxl]/i)?a.match(/^l/i)?50+g.toArabic(a.slice(1)):a.match(/^lx/i)?4…
47match(/^ix/i)?9+g.toArabic(a.slice(2)):a.match(/^v/i)?5+g.toArabic(a.slice(1)):a.match(/^iv/i)?4+g…
48match(/[ivxl]+/i)||b&&"alpha"!=b||"roman"==b?{index:g.toArabic(a),type:c+"roman"}:a.match(/[a-z]/i…
[all …]
/plugin/latex/syntax/
H A Ddollar.php23 function handle($match, $state, $pos, &$handler){ argument
25 return array($match,$state,NULL);
26 return array("$".$match."$",$state,'class'=>"latex_inline", 'title'=>"Math", NULL);

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