Home
last modified time | relevance | path

Searched refs:match (Results 26 – 50 of 2354) sorted by path

12345678910>>...95

/plugin/accscounter/syntax/
H A Dcounter.php330 function handle($match, $state, $pos, Doku_Handler $handler){ argument
332 return explode('|', substr($match, strlen('{{counter|'), -2));
H A Dpopularity.php44 function handle($match, $state, $pos, Doku_Handler $handler){ argument
46 return explode(' ', substr($match, strlen('{{POPULAR '), -2));
/plugin/aceeditor/
H A Dbuild.js1match:String.prototype.match,replace:String.prototype.replace,split:String.prototype.split},i=r.ex… property in AnonymousFunction3f7200170900.r
/plugin/achart/assets/
H A Dapexcharts.min.js6match(new RegExp("(.{"+i.length/3+"})","g"));for(var a=0;a<i.length;a++)i[a]=parseInt(1===i[a].len…
/plugin/achart/
H A Dsyntax.php44 * @param string $match The match of the syntax
50 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
51 $match = substr(trim($match), 7, -10);
52 list($opts, $adata) = explode('>', $match, 2);
/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
H A Dlisting.php38 public function handle($match, $state, $pos, Doku_Handler $handler)
41 $includeDone = strtolower(substr($match, strlen('~~ACKNOWLEDGE '), -2)) === 'all';
36 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/aclauditor/
H A Dscript.js10 if(!trs[i].className.match(/\bexplanations\b/)) continue;
/plugin/aclinfo/
H A Dsyntax.php51 function handle($match, $state, $pos, Doku_Handler $handler){ argument
52 $match = substr($match,10,-2);
53 return array($match);
93 foreach($matches as $match){
94 $match = preg_replace('/#.*$/','',$match); //ignore comments
95 $acl = preg_split('/\s+/',$match);
111 foreach($matches as $match){
112 $match = preg_replace('/#.*$/','',$match); //ignore comments
113 $acl = preg_split('/\s+/',$match);
/plugin/aclplusregex/
H A Daction.php24 * 9) if it matches, check which named group has the match and extract the permission from it
92 * Important: there's a difference between a return value of 0 = AUTH_NONE and false = no match found
106 foreach ($matches as $key => $match) {
108 if ($match === '') continue; // this one didn't match
181 * Returns all ID patterns that match the given user/group entities
196 // pattern not starting with @ should only match users
201 // this does a match on the pattern and replaces backreferences at the same time
202 $match = preg_replace("/^$pattern$/m", $check, $entity, 1, $cnt);
204 $result[] = $this->cleanID(explode("\n", $match)[
[all...]
/plugin/acmenu/
H A Dsyntax.php60 * Define the regular expression needed to match the plugin's syntax.
80 * @param string $match
91 public function handle($match, $state, $pos, Doku_Handler $handler)
94 $match = substr($match, 7, -1); // strips "<acmenu" and ">"
93 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/actickets/
H A Dscript.js18 matches = ticket.href.match(actickets.pattern);
H A Dsyntax.php69 public function handle($match, $state, $pos, &$handler){ argument
71 if (preg_match('/'.self::PATTERN_PROJECT_GRP.'/', $match, $matches)) {
73 …g_match('/'.$this->getConf('actickets.hash').self::PATTERN_FULLTICKET_GRP.'/', $match, $matches)) {
76 …(preg_match('/'.$this->getConf('actickets.hash').self::PATTERN_TICKET_GRP.'/', $match, $matches)) {
80 $data['original'] = $match;
/plugin/actionrenderer/
H A Drenderer.php399 public function interwikilink($match, $name, $wikiName, $wikiUri, $returnonly = false) argument
/plugin/addnewpage/
H A Dsyntax.php59 * @param string $match The text matched by the patterns
66 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
68 $options = substr($match, 9, -2); // strip markup
/plugin/addressbook/
H A Dsyntax.php53 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
56 if ($match==':') return 'LOOKUP';
57 if ($match[0]==':') $match = substr($match,1);
59 return trim($match);
/plugin/adfs/phpsaml/
H A DCHANGELOG117 * Require Issuer element. (Must match IdP EntityID).
118 * Destination value can't be blank (if present must match ACS URL).
H A DREADME.md15 …efault disabled, that will force that the Destination URL should strictly match to the address tha…
523 // If true, Destination URL should strictly match to the address to
688 If a match on the future SAMLResponse ID and the AuthNRequest ID to be sent is required, that AuthN…
1071 If a match on the future LogoutResponse ID and the LogoutRequest ID to be sent is required, that Lo…
/plugin/adhoctags/syntax/
H A Dabstract.php80 function handleEnterSpecial($match, $state, $pos, Doku_Handler $handler) { argument
82 //dbg('handleEnterSpecial: "' . $match );
84 $data = trim(substr($match,strpos($match,' '),-1)," \t\n/");
88 function handleUnmatched($match, $state, $pos, Doku_Handler $handler) { argument
91 //dbg('handleUnmatched: "' . $match );
93 if (substr($match, 0, 2) == '==') { // special case: it's a headline
94 $title = trim($match);
104 $handler->addCall('cdata', array($match), $pos);
109 function handleMatched($match, argument
114 handleExit($match, $state, $pos, Doku_Handler $handler) global() argument
125 handle($match, $state, $pos, Doku_Handler $handler) global() argument
[all...]
H A Dabstractinline.php21 function handleUnmatched($match, $state, $pos, Doku_Handler $handler) { argument
22 $handler->addCall('cdata', array($match), $pos);
H A Dclosesection.php18 function handle($match, $state, $pos, Doku_Handler $handler){ argument
/plugin/admnote/syntax/
H A Drenderer.php69 * @param string $match The match of the syntax
76 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
89 $match = trim(str_replace(array('<','>'),'',$match));
90 $match = preg_replace('/ +/',' ',$match);
91 $words = explode(' ',$match);
107 $data = array($state, $match);
111 $data = array($state, $match);
/plugin/advrack/
H A Djquery.qtip.js509 var category, rule, match;
513 if(match = (new RegExp(rule, 'i')).exec(notation)) {
514 args.push(match);
940 this.x = (corner.match(/left|right/i) || corner.match(/center/) || ['inherit'])[0].toLowerCase();
941 this.y = (corner.match(/top|bottom|center/i) || ['inherit'])[0].toLowerCase();
H A Draphael.js1288 rgb = colour.match(colourRegExp);
2470 par = gradient[i].match(/^([^:]*):?([\d\.]*)/);
3055 …var version = navigator.userAgent.match(/Version\/(.*?)\s/) || navigator.userAgent.match(/Chrome\/…
4901 easyeasy = Str(easing).match(bezierrg);
6235 var isURL = Str(value).match(R._ISURL);
7170 Str(path).match(total) && (command = R._path2curve);
7172 if (command == R._pathToAbsolute && !Str(path).match(total)) {
7383 var isURL = Str(params.fill).match(R._ISURL);
7463 fontSize = a.font && a.font.match(/\d+(?:\.\d*)?(?=px)/);
H A Dscript.js46 var rack_height = rack['options']['height'].match(h_regexp);
47 var rack_width = rack['options']['width'].match(w_regexp);
105 var h = equipment['height'].match(h_regexp);
134 var h = equipment['height'].match(h_regexp);
160 var h = deck['height'].match(h_regexp);
218 var h = equipment['height'].match(h_regexp);
244 var h = item['height'].match(h_regexp);
265 var unit_height = unit['height'].match(h_regexp);

12345678910>>...95