Home
last modified time | relevance | path

Searched refs:pattern (Results 201 – 225 of 693) sorted by relevance

12345678910>>...28

/plugin/webdav/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+)?" } }+
/plugin/webcomponent/syntax/
H A Dcardcolumns.php79 $pattern = '<' . $tag . '.*?>(?=.*?</' . $tag . '>)';
80 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
H A Dgroup.php79 $pattern = webcomponent::getLookAheadPattern(self::getElementName());
80 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
H A Dheading.php87 $pattern = '^' . $headerCharacter . '[^'.DOKU_LF.']+$';
88 …$this->Lexer->addSpecialPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $th…
H A Dunit.php74 $pattern = webcomponent::getLookAheadPattern(self::getElementName());
75 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
H A Dcollapse.php79 $pattern = webcomponent::getLookAheadPattern(self::getElementName());
80 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
H A Dmath.php74 $pattern = webcomponent::getLookAheadPattern($element);
75 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
H A Dbrand.php32 $pattern = webcomponent::getLookAheadPattern(self::getTag());
33 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
H A Dnavbar.php79 $pattern = webcomponent::getLookAheadPattern(self::getElementName());
80 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
/plugin/combo/syntax/
H A Diteratordata.php28 * The pattern
96 $pattern = XmlTagProcessing::getContainerTagPattern(self::MARKI_PAGE_TAG);
97 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
115 * The handle function goal is to parse the matched syntax through the pattern function
H A Dbackgrounds.php79 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
80 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
/plugin/combo/ComboStrap/
H A DPageRules.php63 LogUtility::msg("Error during pattern exist statement. {$e->getMessage()}");
76 * @param string $pattern
79 function patternExists(string $pattern): bool argument
85 ->setQueryParametrized("SELECT count(*) FROM PAGE_RULES where MATCHER = ?", [$pattern]);
91 LogUtility::msg("Error during pattern exists query: {$e->getMessage()}");
/plugin/revealjs/syntax/
H A Dfragmentblock.php105 …$pattern = '/^(?:grow|shrink|fade-(?:in|out|up|down|left|right)|current-visible|highlight(?:-curre…
106 if (preg_match($pattern, $style)) return $style;
H A Dfragment.php107 $pattern = '/fade-(?:in|out)|current-visible|highlight(?:-current)?-(?:red|green|blue)/';
108 if (preg_match($pattern, $style)) return $style;
/plugin/tablewidth/
H A Daction.php24 $pattern = '/(<!-- table-width [^\n]+? -->\n)([^\n]*<table.*?>)(\s*<t)/';
27 if (preg_match_all($pattern, $event->data[1], $match, $flags) > 0) {
/plugin/siteexport/inc/
H A Dfunctions.php33 $params = array('cache' => 'nocache', 'siteexport' => $this->settings->pattern);
43 public function checkIfCacheFileExistsForFileWithPattern($file, $pattern) argument
49 … $newCacheFile = mediaFN($this->getSpecialExportFileName($this->settings->origZipFile, $pattern));
53 …t have gone wrong. The cached file does not exist.", array("pattern" => $pattern, "original File" …
312 if (empty($PATTERN) && empty($this->settings->pattern)) {
318 if (empty($this->settings->pattern)) {
321 $PATTERN = $this->settings->pattern;
338 $PATTERN = $this->settings->pattern;
354 $additionalParameters['pattern'] = $this->settings->pattern;
/plugin/fckg/action/
H A Dedit.php2826 $pattern = $patterns[$index];
2827 $pattern = preg_replace('/^\(\^/',"(",$pattern);
2828 $regex .= "|$pattern";
2850 $pattern = str_replace('<', '\/\/<\/\/', $patterns[$index]);
2851 $pattern = str_replace('?=',"",$pattern);
2852 $regex_xcl[] = $pattern;
/plugin/extendpage/
H A Dadmin.php108 $pattern = $assignment['pattern'];
124 echo '<td>' . hsc($pattern) . '</td>';
/plugin/regex_template/
H A Daction.php52 list($pattern, $replacement) = explode(',', $regex);
53 $my_new_ID = @preg_replace($pattern, $replacement, $ID);
/plugin/toctweak/syntax/
H A Dautotoc.php16 protected $pattern = array( variable in syntax_plugin_toctweak_autotoc
34 $this->Lexer->addSpecialPattern($this->pattern[5], $mode, $this->mode);
/plugin/tplinc/
H A Dadmin.php110 list($pattern, $page, $location, $skipacl) = $assignment;
112 … echo '<td><input type="text" name="a[x' . $row . '][0]" value="' . hsc($pattern) . '" /></td>';
/plugin/refnotes/
H A Dbibtex.php162 foreach ($this->specialPattern as $pattern) {
163 $this->Lexer->addSpecialPattern($pattern, $mode, $this->name);
166 foreach ($this->entryPattern as $pattern) {
167 $this->Lexer->addEntryPattern($pattern, $mode, $this->name);
179 foreach ($this->exitPattern as $pattern) {
180 $this->Lexer->addExitPattern($pattern, $this->name);
/plugin/symbols4odt/
H A Ddokuwiki_plugin_page.wiki55 "pattern" => array('<checkbox_checked>','<CHECKBOX_CHECKED>'),
62 The first string, ''checkbox_filled'' is the name of the pattern, which will be used internally and…
65pattern"</code> | Maps to an array of strings that will be used within the [[https://www.dokuwiki.…
66 | <code>"substitute4XHTML"</code> | In case of a match (see "pattern"), the string defined in ''sub…
67 | <code>"substitute4XODT"</code> | In case of a match (see "pattern"), the string defined in ''subs…
/plugin/issuetracker/
H A Dtablekit.js454 pattern : /.*/
457 this.pattern = options.pattern;
469 return this.pattern.test(v);
479 pattern : /^[-+]?[\d]*\.?[\d]+(?:[eE][-+]?[\d]+)?/,
491 pattern : /^[-+]?[\d]*\.?[\d]+(?:[eE][-+]?[\d]+)?\s?[k|m|g|t]b$/i,
516 if(!this.pattern.test(v)) {return 0;}
537 if(!this.pattern.test(v)) {return 0;}
556 pattern : /^\d{2}-\d{2}-\d{4}/i,
558 if(!this.pattern.test(v)) {return 0;}
568 if(!this.pattern.test(v)) {return 0;}
[all …]
/plugin/userannotations/
H A Daction.php41 $pattern = '/^'.preg_quote($privatepath.':').'[^:]+\:/';
42 if(preg_match($pattern, $ID, $matches))

12345678910>>...28