Home
last modified time | relevance | path

Searched refs:pattern (Results 651 – 675 of 693) sorted by last modified time

1...<<2122232425262728

/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.brush.basic.js5 Syntax.lib.vbStyleComment={pattern:/' .*$/gm,klass:'comment',allow:['href']};Syntax.register('basic… property in Syntax.lib.vbStyleComment
H A Djquery.syntax.brush.css.js5pattern){return"("+Syntax.Brush.convertStringToTokenPattern(pattern,true)+")";}),jQuery.map(colorP… argument
6pattern:/\{(.|\n)*?\}/g,klass:'properties',allow:'*'});brush.push({pattern:/\:(.*?(?=\})|(.|\n)*?(…
H A Djquery.syntax.brush.diff.js5pattern:/^\+\+\+.*$/gm,klass:'add'});brush.push({pattern:/^\-\-\-.*$/gm,klass:'del'});brush.push({
H A Djquery.syntax.brush.lua.js5 …(Syntax.lib.cStyleFunction);brush.push({pattern:/\-\-.*$/gm,klass:'comment',allow:['href']});brush…
H A Djquery.syntax.brush.ocaml.js5pattern:/(?:open|new)\s+((?:\.?[a-z][a-z0-9]*)+)/gi,matches:Syntax.extractMatches({klass:'type'})}…
H A Djquery.syntax.brush.csharp.js5 …cess,{klass:'access'});brush.push(Syntax.lib.cStyleFunction);brush.push({pattern:/(?:\.)([a-z_][a-…
/plugin/jdraw/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dapache-mime4j-0.6.jar ... cur boolean match int pos int x byte[] pattern int off int len int[] shiftTable int j ...
/plugin/rssticker/
H A DlastRSS.php109 function my_preg_match ($pattern, $subject) { argument
111 preg_match($pattern, $subject, $out);
/plugin/autolink2/
H A Daction.php39 $pattern=$anchors[0];
41 if ($pattern<>'' and $replace<>'') {
42 $replaced = preg_replace($pattern,$replace,$x);
H A Dhelper.php86 $pattern[$l]="/(?<= |\\n|\\t|\|)(".$anchor.")(?=( |,|\.|:|\\n|\\t|\|))/msi";
90 $pattern[$l]="/(={1,6}.*?)".$sp."(".$anchor.")".$ep."(.*?={1,6})/i";
94 $pattern[$l]="/(\{\{.*?)".$sp."(".$anchor.")".$ep."(.*?\}\})/i";
97 $pattern[$l]="/(\[\[.*)".$sp."(".$anchor.")".$ep."(.*\]\])/Ui";
100 $pattern[$l]="/(\<.*)".$sp."(".$anchor.")".$ep."(.*\>)/Ui";
104 $pattern[$l]=$customStart.$sp."(".$anchor.")".$ep.$customEnd;
109 $pattern[$l]="/".$sp."(".$anchor.")".$ep."/i";
114 if (is_array($pattern)) ksort($pattern);
119 return array($pattern,$replace);
/plugin/autolink2/syntax/
H A Dshow.php74 $pattern=$anchors[0];
76 $replaced = preg_replace($pattern,$replace,$match);
/plugin/autotweet/
H A DOAuth.php745 $pattern = '/(([-_a-z]*)=("([^"]*)"|([^,]*)),?)/';
748 while (preg_match($pattern, $header, $matches, PREG_OFFSET_CAPTURE, $offset) > 0) {
/plugin/slideshare/slideshare/
H A Dsyntax.php21 var $pattern; variable in syntax_plugin_slideshare
25 $this->pattern = '/\{\{(\s?)slide>(|link):([^} |]+)\|?(.*?)(\s?)\}\}/';
44 $pm = preg_match_all($this->pattern,$match,$result);
/plugin/s5reloaded/ui/effects_support/
H A Dprototype.js432 if (Object.isString(pattern))
433 pattern = RegExp.escape(pattern);
435 if (!(pattern.length || pattern.source)) {
462 function scan(pattern, iterator) { argument
463 this.gsub(pattern, iterator);
604 function include(pattern) { argument
608 function startsWith(pattern) { argument
612 function endsWith(pattern) { argument
667 this.pattern = pattern || Template.Pattern;
682 match = pattern.exec(expr);
[all …]
/plugin/actickets/
H A Dscript.js6 pattern: /\/projects\/(\d+)\/tickets\/(\d+)/, property in actickets
18 matches = ticket.href.match(actickets.pattern);
/plugin/linkbonus/syntax/
H A Dinterwiki.txt62 * pattern information
63 * the pattern is @/path/to/page|name|title|param1=val1|param2=val2|...|
/plugin/stats/
H A Daction.php42 $pattern = '/(<p>(.*?)<table class="wikistat (.*?)<\/p>)/ism';
44 $event->data = preg_replace($pattern, $replace,$event->data);
/plugin/farm/install/animaltemplate/data/pages/wiki/
H A Dsyntax.txt226 … through a [[doku>wiki:config#typography|config option]] and a [[doku>wiki:entities|pattern file]].
/plugin/crypto/
H A Dsyntax.php90 $pattern = '>(.*)<';
91 if (ereg($pattern, $xml, $matches)) {
100 $pattern = $name ."='([^']*)')";
101 if (ereg($pattern, $xml, $matches)) {
105 $pattern = $name .'="([^"]*)"';
106 if (ereg($pattern, $xml, $matches)) {
/plugin/jmol2/jmol/
H A DCHANGES.txt1056 # new feature: "xxxxx".find("pattern","flags") allows regular expression matching;
/plugin/mundart/
H A Drenderer.php73 * This function takes an array of ('/pattern/' => 'replacement') pairs
/plugin/shibbolethauth/files/
H A Dshibboleth.class.php514 $pattern = '/^('.join('|',$deleted).'):/';
516 if (io_deleteFromFile(AUTH_USERFILE,$pattern,true)) {
620 foreach ($this->_pattern as $item => $pattern) {
622 if (!preg_match($pattern, $user)) return 0;
624 if (!count(preg_grep($pattern, $info['grps']))) return 0;
626 if (!preg_match($pattern, $info[$item])) return 0;
634 foreach ($filter as $item => $pattern) {
636 $this->_pattern[$item] = '/'.str_replace('/','\/',$pattern).'/'; // allow regex characters
/plugin/regex_template/
H A Daction.php52 list($pattern, $replacement) = explode(',', $regex);
53 $my_new_ID = @preg_replace($pattern, $replacement, $ID);

1...<<2122232425262728