Home
last modified time | relevance | path

Searched refs:pattern (Results 576 – 600 of 693) sorted by last modified time

1...<<2122232425262728

/plugin/directorylist/
H A Dreadme.md43 The ignore argument has to be a comma separated [shell pattern](http://www.php.net/manual/en/functi…
/plugin/directorylist/syntax/
H A Ddirectorylist.php184 foreach ($patternArray as $pattern) {
187 if ( fnmatch($pattern, $name) )
/plugin/mellelexport/
H A Drenderer.php181 $pattern = '<p style="ps-0" dir="ltr"></p>';
182 while (substr($this->doc, 0, strlen($pattern)) == $pattern) {
183 $this->doc = substr($this->doc, strlen($pattern));
/plugin/tuxquote/
H A Dquotes.txt2246 … automobile accident, a tight girdle, a higher tax bracket, or a holding pattern over Philadelphia…
/plugin/subjectindex/plugins/
H A Dbible_verses.txt2205 According to all that I am showing you as the pattern of the tabernacle and pattern of all its furn…
2236 And see that you make them after their pattern that was shown to you in the mountain.
9974 …. So King A'haz sent U·ri'jah the priest the design of the altar and its pattern as respects all i…
21170 …This is what the Sovereign Lord Jehovah has said:"'"You are sealing up a pattern, full of wisdom a…
21583 …he House, that they may feel humiliated because of their errors, and they must measure the pattern.
26646 For I set the pattern for YOU, that, just as I did to YOU, YOU should do also.
27161 …ess, just as he gave orders when speaking to Moses to make it according to the pattern he had seen.
29823 Keep holding the pattern of healthful words that you heard from me with the faith and love that are…
30026 …ur utmost to enter into that rest, for fear anyone should fall in the same pattern of disobedience.
30365 Brothers, take as a pattern of the suffering of evil and the exercising of patience the prophets, w…
[all …]
/plugin/html2pdf/html2pdf/
H A Daction.php65 $pattern = '/<a.*?detail.php\/(.*?)\?.*?width="(.*?)" height="(.*?)".*?<\/a>/';
66 while ( preg_match($pattern,$html,$matches ) )
74 $html = preg_replace($pattern,$replace,$html);
/plugin/html2pdf/snorriheim/
H A Dstyle.ini55 ;------ for keeping old templates and plugins compatible to the old pattern
H A Dstyle.ini.dist55 ;------ for keeping old templates and plugins compatible to the old pattern
/plugin/redirect2/
H A Daction.php177 if (isset($map->pattern[$checkID])) {
178 $dest = $map->pattern[$checkID]['destination'];
183 $status = $map->pattern[$checkID]['status'];
238 if (isset($map->pattern[$checkID])) {
239 $dest = $map->pattern[$checkID]['destination'];
244 $status = $map->pattern[$checkID]['status'];
292 foreach ($map->pattern as $pattern => $data) {
293 if (preg_match('/^%.*%$/', $pattern) !== 1) continue;
294 $destID = preg_replace( $pattern, $data['destination'], $checkID, -1, $count);
H A Dhelper.php14 public $pattern = NULL; variable in helper_plugin_redirect2
30 if ($this->pattern != NULL) return;
36 $this->pattern = unserialize($cache->retrieveCache(false));
41 $cache->storeCache(serialize($this->pattern));
46 $this->pattern = NULL;
76 $this->pattern[$ptn] = array(
80 return ($this->pattern != NULL) ? true : false;
/plugin/advrack/
H A Draphael.js5896 … $(o.pattern, {patternTransform: o.matrix.invert() + " translate(" + bbox.x + "," + bbox.y + ")"});
6177 o.pattern && updatePosition(o);
6199 o.pattern && updatePosition(o);
6255 o.pattern = el;
6256 o.pattern && updatePosition(o);
6600 this.pattern && updatePosition(this);
/plugin/dokumicrobugtracker/
H A DLICENSE.txt54 pattern of such abuse occurs in the area of products for individuals to
/plugin/publistx/bib2tpl/
H A Dhelper.inc.php74 foreach ( $this->options['lang']['months'] as $number => $pattern )
76 $pattern = '/'.$pattern.'/';
77 if ( preg_match($pattern , $month) )
H A Dbibtex_converter.php363 $pattern = '/@\{group@(.*?)@\}group@/s';
367 preg_match($pattern, $result, $group_tpl);
378 $result = preg_replace($pattern, $groups, $result, 1);
379 preg_match($pattern, $result, $group_tpl);
414 $pattern = '/@\{entry@(.*?)@\}entry@/s';
418 preg_match($pattern, $result, $entry_tpl);
428 $result = preg_replace($pattern, $entries, $result, 1);
429 preg_match($pattern, $result, $entry_tpl);
481 $pattern = '/@\?(\w+)(?:(<=|>=|==|!=|~)(.*?))?@(.*?)(?:@:\1@(.*?))?@;\1@/s';
499 while ( preg_match($pattern, $string, $match) )
H A Dchangelog6 languge file as a pattern. This way, month sorting can be done correctly
/plugin/publistx/
H A Dsyntax.php40 …$pattern = '/\[publist(?:\|(page|file|url):(.+?))(?:\|(wiki|html):(page|file|url):(.+?))(?:\|(.+?(…
41 if ( 0 === preg_match($pattern, $match, $matches) ) {
H A DTODO10 * In function ConnectTo (syntax.php), make special pattern not to collide
17 * Stronger special pattern parsing in function "handle" (syntax.php)
21 * Completely change special pattern format to something like:
/plugin/owncloud/
H A DCOPYING54 pattern of such abuse occurs in the area of products for individuals to
H A Dhelper.php381 foreach($allowedImagesURLregexp as $pattern){
382 $pattern = trim($pattern);
383 if(empty($pattern)) continue;
384 if(preg_match('#'.str_replace('#','\\#',$pattern).'#i',$url)){
/plugin/searchformgoto/
H A DCOPYING54 pattern of such abuse occurs in the area of products for individuals to
/plugin/sqlraw/
H A Dsyntax.php628 $pattern = $prop ."='([^']*)'";
629 if (ereg($pattern, $xml, $matches))
631 $pattern = $prop .'="([^"]*)"';
632 if (ereg($pattern, $xml, $matches))
H A Dsimple_html_dom.php650 protected function match($exp, $pattern, $value) { argument
656 return ($value===$pattern);
658 return ($value!==$pattern);
660 return preg_match("/^".preg_quote($pattern,'/')."/", $value);
662 return preg_match("/".preg_quote($pattern,'/')."$/", $value);
664 if ($pattern[0]=='/') {
665 return preg_match($pattern, $value);
667 return preg_match("/".$pattern."/i", $value);
684 preg_match_all($pattern, trim($selector_string).' ', $matches, PREG_SET_ORDER);
1615 protected function remove_noise($pattern, $remove_tag=false) argument
[all …]
/plugin/authowncloud/
H A Dauth.php183 foreach($filter as $item => $pattern) {
188 $tmp = "%$pattern%";
/plugin/docimporter/
H A DImportUtils.php146 $pattern = preg_replace('/\\//', '\\/', preg_quote($sentence));
147 preg_match_all("/".$pattern."/", $html, $matches, PREG_OFFSET_CAPTURE);
/plugin/git/
H A Dhelper.php80 $pattern = '/----.*dataentry.*\R----/s';
81 if (preg_match($pattern, $body, $matches) === false) {

1...<<2122232425262728