Home
last modified time | relevance | path

Searched refs:pattern (Results 551 – 575 of 693) sorted by last modified time

1...<<2122232425262728

/plugin/authyubikey/
H A Dauth.php201 $pattern = '/^('.join('|', $deleted).'):/';
202 io_deleteFromFile($config_cascade['plainauth.users']['default'], $pattern, true);
203 io_deleteFromFile(DOKU_CONF . 'users.yubikeys.php', $pattern, true);
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
H A Dxcard.rng13 iana-token = xsd:string { pattern = "[a-zA-Z0-9\-]+" }
14 x-name = xsd:string { pattern = "x-[a-zA-Z0-9\-]+" }
27 xsd:string { pattern = "\d{8}|\d{4}-\d\d|--\d\d(\d\d)?|---\d\d" }
32 xsd:string { pattern = "(\d\d(\d\d(\d\d)?)?|-\d\d(\d\d)?|--\d\d)"
38 xsd:string { pattern = "(\d{8}|--\d{4}|---\d\d)T\d\d(\d\d(\d\d)?)?"
47 xsd:string { pattern = "\d{8}T\d{6}(Z|[+\-]\d\d(\d\d)?)?" }
61 xsd:string { pattern = "[+\-]\d\d(\d\d)?" }
66 xsd:string { pattern = "([a-z]{2,3}((-[a-z]{3}){0,3})?|[a-z]{4,8})"
91 element text { xsd:string { pattern = "\d+(\.\d+)?" } }+
H A Dxcal.rng207 pattern-date = xsd:string {
212 pattern-date
217 pattern-date-time = xsd:string {
222 pattern-date-time
227 pattern-duration = xsd:string {
235 pattern-duration
254 pattern-date-time
258 pattern-date-time
261 pattern-duration
360 pattern-time = xsd:string {
[all …]
/plugin/publist/
H A Dsyntax.php40 …$pattern = '/\[publist(?:\|(page|file):(.+?))(?:\|(wiki|html):(page|file):(.+?))(?:\|(.+?(?:\|.+?)…
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/publist/bib2tpl/
H A Dbibtex_converter.php348 $pattern = '/@\{group@(.*?)@\}group@/s';
352 preg_match($pattern, $result, $group_tpl);
363 $result = preg_replace($pattern, $groups, $result, 1);
364 preg_match($pattern, $result, $group_tpl);
399 $pattern = '/@\{entry@(.*?)@\}entry@/s';
403 preg_match($pattern, $result, $entry_tpl);
413 $result = preg_replace($pattern, $entries, $result, 1);
414 preg_match($pattern, $result, $entry_tpl);
460 $pattern = '/@\?(\w+)(?:(<=|>=|==|!=|~)(.*?))?@(.*?)(?:@:\1@(.*?))?@;\1@/s';
478 while ( preg_match($pattern, $string, $match) )
H A Dchangelog6 languge file as a pattern. This way, month sorting can be done correctly
H A Dhelper.inc.php74 foreach ( $this->options['lang']['months'] as $number => $pattern )
76 $pattern = '/'.$pattern.'/';
77 if ( preg_match($pattern , $month) )
/plugin/medialist/
H A Daction.php35 $pattern = '#<!-- MEDIALIST ([^\r\n]+?) -->#';
38 $event->data[1] = preg_replace_callback( $pattern,
H A Dsyntax.php27 protected $pattern = '{{medialist>[^\r\n]+?}}'; variable in syntax_plugin_medialist
37 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'plugin_medialist');
/plugin/authldaplocal/
H A Dauth.php462 $pattern = '/^('.join('|', $deleted).'):/';
463 if (!io_deleteFromFile($config_cascade['plainauth.users']['default'], $pattern, true)) {
665 foreach($this->_pattern as $item => $pattern) {
667 if(!preg_match($pattern, $user)) return false;
669 if(!count(preg_grep($pattern, $info['grps']))) return false;
671 if(!preg_match($pattern, $info[$item])) return false;
684 foreach($filter as $item => $pattern) {
685 … $this->_pattern[$item] = '/'.str_replace('/', '\/', $pattern).'/i'; // allow regex characters
/plugin/pgn4web/
H A DLICENSE54 pattern of such abuse occurs in the area of products for individuals to
/plugin/highlight/
H A Dsyntax.php98 $pattern = "/
104 return (preg_match($pattern, $c));
/plugin/scrape/
H A DHTMLPurifier.standalone.php
H A DphpQuery-onefile.php
/plugin/pgn4web/pgn4web/
H A Dpgn4web.js3288 …var searchExpression = prompt("Please enter search pattern for PGN games:", lastSearchPgnExpressio…
H A DREADME.txt406 pattern similar to the PGN header pattern '[tag "value"]' then the game
/plugin/canvas/
H A Dcanvas.php201 $pattern = "/(\w+)\s*=\s*($val)/";
202 preg_match_all($pattern, $args, $matches, PREG_SET_ORDER);
211 $pattern = "/(\w+)\s*=\s*($val)/";
212 preg_match_all($pattern, $args, $matches, PREG_SET_ORDER);
220 $pattern = '/(?:^| )(\d+(%|em|pt|px)?)\s*([,xX]?(\d+(%|em|pt|px)?))?(?: |$)/';
221 if (preg_match($pattern, $args, $matches)) {
/plugin/ditaa/ditaa/
H A Dditaa.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/htmlparser/ net/ ...
/plugin/anewssystem/
H A Dsyntax.php721 $pattern = '/\{\{.*?\}\}/i';
722 $linkx = $this->replace_links($pattern, $value, 'medi');
726 $pattern = '/\[\[.*?\]\]/i';
727 $links = $this->replace_links($pattern, $value, 'url');
1032 $pattern = '/\{\{.*?\}\}/i';
1033 $linkx = $this->replace_links($pattern, $value, 'medi');
1037 $pattern = '/\[\[.*?\]\]/i';
1038 $links = $this->replace_links($pattern, $value, 'url');
1383 function replace_links($pattern, &$value, $r_string) { argument
1385 preg_match_all($pattern, $value, $links);
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/
H A DAssert.php328 function assertRegExp($pattern, $string, $message = '') { argument
334 $pattern
337 if (!preg_match($pattern, $string)) {
351 function assertNotRegExp($pattern, $string, $message = '') { argument
357 $pattern
360 if (preg_match($pattern, $string)) {
/plugin/freechat/phpfreechat/data/public/js/
H A Dprototype.js335 gsub: function(pattern, replacement) { argument
361 scan: function(pattern, iterator) { argument
362 this.gsub(pattern, iterator);
502 include: function(pattern) { argument
503 return this.indexOf(pattern) > -1;
506 startsWith: function(pattern) { argument
507 return this.indexOf(pattern) === 0;
510 endsWith: function(pattern) { argument
555 this.pattern = pattern || Template.Pattern;
570 match = pattern.exec(expr);
[all …]
/plugin/plantuml/res/file-broken/
H A DLICENSE54 pattern of such abuse occurs in the area of products for individuals to
/plugin/alphaindex/
H A Dsyntax.php229 foreach($articlesDeletionPatterns as $pattern) {
230 if(eregi($pattern, $pageName, $result)) {
231 $pageName = eregi_replace($pattern, '', $pageName);
/plugin/fontcolor/
H A Dsyntax.php197 $pattern = "/
203 return (preg_match($pattern, $c));

1...<<2122232425262728