/dokuwiki/inc/Parsing/Lexer/ |
H A D | Lexer.php | 60 if (! isset($this->regexes[$mode])) { 77 if (! isset($this->regexes[$mode])) { 189 if ($this->isModeEnd($mode)) { 195 if ($this->isSpecialMode($mode)) { 202 if (is_string($mode)) { 203 $this->modeStack->enter($mode); 213 * @param string $mode Mode to test. 216 protected function isModeEnd($mode) argument 218 return ($mode === "__exit"); 225 * @param string $mode Mode to test. [all …]
|
/dokuwiki/inc/Parsing/ParserMode/ |
H A D | ModeInterface.php | 27 * @param string $mode 30 public function connectTo($mode); argument 42 * @param string $mode 45 public function accepts($mode); argument
|
H A D | Quotes.php | 9 public function connectTo($mode) argument 19 $mode, 24 $mode, 29 $mode, 36 $mode, 41 $mode,
|
H A D | Eol.php | 9 public function connectTo($mode) argument 12 if (in_array($mode, $badModes)) { 17 $this->Lexer->addSpecialPattern('(?:^[ \t]*)?\n', $mode, 'eol');
|
H A D | AbstractMode.php | 26 public function connectTo($mode) argument 36 public function accepts($mode) argument 38 return in_array($mode, (array) $this->allowedModes);
|
H A D | Unformatted.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addEntryPattern('<nowiki>(?=.*</nowiki>)', $mode, 'unformatted'); 12 $this->Lexer->addEntryPattern('%%(?=.*%%)', $mode, 'unformattedalt');
|
H A D | Preformatted.php | 9 public function connectTo($mode) argument 12 $this->Lexer->addEntryPattern('\n (?![\*\-])', $mode, 'preformatted'); 13 $this->Lexer->addEntryPattern('\n\t(?![\*\-])', $mode, 'preformatted');
|
H A D | Linebreak.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addSpecialPattern('\x5C{2}(?:[ \t]|(?=\n))', $mode, 'linebreak');
|
H A D | Nocache.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addSpecialPattern('~~NOCACHE~~', $mode, 'nocache');
|
H A D | Multiplyentity.php | 12 public function connectTo($mode) argument 17 $mode,
|
H A D | Rss.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addSpecialPattern("\{\{rss>[^\}]+\}\}", $mode, 'rss');
|
H A D | Camelcaselink.php | 9 public function connectTo($mode) argument 13 $mode,
|
H A D | Header.php | 9 public function connectTo($mode) argument 14 $mode,
|
H A D | Hr.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addSpecialPattern('\n[ \t]*-{4,}[ \t]*(?=\n)', $mode, 'hr');
|
H A D | Internallink.php | 9 public function connectTo($mode) argument 12 $this->Lexer->addSpecialPattern("\[\[.*?\]\](?!\])", $mode, 'internallink');
|
H A D | Media.php | 9 public function connectTo($mode) argument 12 $this->Lexer->addSpecialPattern("\{\{(?:[^\}]|(?:\}[^\}]))+\}\}", $mode, 'media');
|
H A D | Notoc.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addSpecialPattern('~~NOTOC~~', $mode, 'notoc');
|
H A D | Listblock.php | 24 public function connectTo($mode) argument 26 $this->Lexer->addEntryPattern('[ \t]*\n {2,}[\-\*]', $mode, 'listblock'); 27 $this->Lexer->addEntryPattern('[ \t]*\n\t{1,}[\-\*]', $mode, 'listblock');
|
H A D | Emaillink.php | 9 public function connectTo($mode) argument 12 $this->Lexer->addSpecialPattern('<'.PREG_PATTERN_VALID_EMAIL.'>', $mode, 'emaillink');
|
H A D | Code.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addEntryPattern('<code\b(?=.*</code>)', $mode, 'code');
|
H A D | File.php | 9 public function connectTo($mode) argument 11 $this->Lexer->addEntryPattern('<file\b(?=.*</file>)', $mode, 'file');
|
H A D | Windowssharelink.php | 17 public function connectTo($mode) argument 21 $mode,
|
H A D | Table.php | 24 public function connectTo($mode) argument 26 $this->Lexer->addEntryPattern('[\t ]*\n\^', $mode, 'table'); 27 $this->Lexer->addEntryPattern('[\t ]*\n\|', $mode, 'table');
|
/dokuwiki/inc/Cache/ |
H A D | CacheParser.php | 12 public $mode = ''; // input mode (represents the processing the input file will undergo) variable in dokuwiki\\Cache\\CacheParser 19 * @param string $mode input mode 21 public function __construct($id, $file, $mode) argument 29 $this->mode = $mode; 32 …struct($file . $INPUT->server->str('HTTP_HOST') . $INPUT->server->str('SERVER_PORT'), '.' . $mode);
|
/dokuwiki/inc/ |
H A D | cache.php | 26 public function __construct($id, $file, $mode) argument 29 parent::__construct($id, $file, $mode); 40 public function __construct($id, $file, $mode) argument 43 parent::__construct($id, $file, $mode);
|