Home
last modified time | relevance | path

Searched refs:patterns (Results 126 – 150 of 151) sorted by path

1234567

/plugin/publistf/bib2tpl/
H A Dbibtex_converter.php454 $patterns = array();
464 $patterns []= '/@'.$key.'@/';
468 $patterns []= '/@'.$key.'@/';
473 return preg_replace($patterns, $replacements, $result);
H A Dchangelog12 through patterns: short forms and English alternatives.
/plugin/publistx/bib2tpl/
H A Dbibtex_converter.php450 $patterns = array();
459 $patterns []= '/@'.$key.'@/';
463 $patterns []= '/@'.$key.'@/';
468 return preg_replace($patterns, $replacements, $result);
H A Dchangelog12 through patterns: short forms and English alternatives.
/plugin/s5reloaded/ui/effects_support/
H A Dprototype.js3231 var e = this.expression, ps = Selector.patterns, h = Selector.handlers,
3262 var e = this.expression, ps = Selector.patterns,
3313 var e = this.expression, ps = Selector.patterns, as = Selector.assertions;
3415 var e = m[6], p = Selector.patterns,
3492 patterns: [
/plugin/ssocas/
H A D.hgeol4 [patterns]
/plugin/statistics/inc/
H A DBrowscap.php60 * Options for regex patterns.
62 * REGEX_DELIMITER: Delimiter of all the regex patterns in the whole class.
622 * This gives us patterns with "(\d)" only in places that differ for some matches.
665 * Converts browscap match patterns into preg match patterns.
685 * Converts preg match patterns back to browscap match patterns.
732 $this->_patterns = $patterns;
747 $cacheTpl = "<?php\n\$source_version=%s;\n\$cache_version=%s;\n\$properties=%s;\n\$browsers=%s;\n\$userAgents=%s;\n\$patterns=%s;\n";
/plugin/strata/helper/
H A Dsyntax.php17 * syntax patterns, and should be without captures. Do not assume any
31 * Patterns used to extract information from captured fragments. These patterns
132 public static $patterns; variable in helper_plugin_strata_syntax
137 * This static method exists because we want to keep the static $patterns
141 self::$patterns = new helper_plugin_strata_syntax_RegexHelper();
157 return self::$patterns;
353 // extract patterns and split them in triples and filters
354 $patterns = $this->extractText($root);
370 // split patterns into triples and filters
371 list($patterns,
[all...]
H A Dutil.php25 $this->patterns = helper_plugin_strata_syntax::$patterns;
79 $p = $this->patterns;
/plugin/strata/
H A Dmanual.txt71 **Patterns**: You can use variables and literals to describe what data you want to match. The patterns should be written down in lines, with each line formatted like ''subject field: value''.
120 **Optional matches**: Normally, all patterns must be matched for the results to be shown. You can use an ''optional'' block to indicate that some of the patterns are optional, and need not be matched for the results to be shown. All patterns in an optional block must match for the optional block to be used. If any pattern in the block doesn't match, none of the patterns in the block will be used.
124 **Exclusions**: With the ''minus'' block, you can declare that the data is not allowed to match certain patterns. In this case, the results are not allowed to have contact information.
296 Optional blocks can be used to optionally match extra patterns.
302 An optional block must contain at least a [[#patterns|pattern]]. Filters and other query blocks are also possible. An optional block is only used if all patterns in the block match.
307 You can tell the wiki to combine two patterns
[all...]
/plugin/struct/helper/
H A Dimexport.php30 * Delete all existing assignment patterns of a schema and replace them with the provided ones.
33 * @param string[] $patterns
35 public function replaceSchemaAssignmentPatterns($schemaName, $patterns)
46 foreach ($patterns as $pattern) {
57 * Returns array of patterns for the given Schema
70 $patterns = $this->sqlite->queryAll($sql, $schemaName);
71 return array_map(static fn($elem) => $elem['pattern'], $patterns);
31 replaceSchemaAssignmentPatterns($schemaName, $patterns) global() argument
/plugin/struct/lang/en/
H A Dassignments_intro.txt3 Here you can define patterns to automatically assign schemas to pages. Whenever a page matches one of the patterns here, the appropiate schemas will be shown.
/plugin/struct/meta/
H A DAssignments.php21 /** @var array All the assignments patterns */
22 protected $patterns;
58 * Load existing assignment patterns
63 $this->patterns = $this->sqlite->queryAll($sql);
79 // reload patterns
100 // reload patterns
119 * Rechecks all assignments of a given page against the current patterns
125 // reload patterns
144 * Clear all patterns - deassigns all pages
163 // reload patterns
20 protected $patterns; global() variable in dokuwiki\\plugin\\struct\\meta\\Assignments
[all...]
/plugin/structautolink/
H A Drenderer.php128 $patterns = [];
132 $patterns[] = '(?P<p' . ($num++) . '>' . join('|', $terms) . ')';
135 $this->regex = '/\b(?:' . implode('|', $patterns) . ')\b/';
/plugin/structnotification/action/
H A Dnotification.php226 $patterns = [];
232 $patterns[] = "/@@$schema.$label@@/";
236 return preg_replace($patterns, $replacements, $message);
/plugin/structpublish/meta/
H A DAssignments.php20 /** @var array All the assignments patterns */
21 protected $patterns; variable in dokuwiki\\plugin\\structpublish\\meta\\Assignments
56 * Load existing assignment patterns
61 $this->patterns = $this->sqlite->queryAll($sql);
78 // reload patterns
116 // reload patterns
133 * Updates all assignments of a given page against the current patterns
154 * Clear all patterns - deassigns all pages
173 // reload patterns
213 return $this->patterns;
[all...]
/plugin/stylingpages/
H A Daction.php55 $patterns = array();
64 $patterns[] = $parts[1];
70 if (count($patterns) > 0 && auth_quickaclcheck($page) >= AUTH_WRITE) {
72 $this->update($patterns, $wikitext);
80 public function update($patterns, $wikitext) argument
111 foreach ($patterns as $pattern) {
126 foreach ($patterns as $pattern) {
/plugin/symbols4odt/
H A Ddokuwiki_plugin_page.wiki50 On the code level, the plugin is readily extendible by inserting patterns into the ''getPatterns()'…
60 This entry is an element of the array stored in ''$this->patterns''.
62 …e used internally and must be unique in respect to the plugin's list of patterns. This string maps…
H A Dsyntax.php155 private $patterns; variable in syntax_plugin_symbols4odt
159 if (!isset($this->patterns)) {
160 $this->patterns = array(
180 return $this->patterns;
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshCore.js854 self.union = function (patterns, flags) { argument
874 if (!(isType(patterns, "array") && patterns.length)) {
877 for (i = 0; i < patterns.length; ++i) {
878 pattern = patterns[i];
/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js1818 XRegExp.union = function (patterns, flags) {
1845 if (!(isType(patterns, 'Array') && patterns.length)) {
1849 for (i = 0; i < patterns.length; ++i) {
1850 pattern = patterns[i];
H A Dsyntaxhighlighter.js.map1patterns","parts","numCaptures","numPriorCaptures","rewrite","paren","origLastIndex","apply","argu…
/plugin/templater/
H A Dsyntax.php209 $patterns = array('!<div class="toc">.*?(</div>\n</div>)!s',
213 $text = preg_replace($patterns, $replace, $text);
/plugin/tuxquote/
H A Dquotes.txt1115 …ertain characteristically masculine, by which I mean stupid, behavioral patterns that can produce …
/plugin/webdav/vendor/sabre/event/
H A DCHANGELOG.md50 can be used to implement strategy patterns.

1234567