Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 76) sorted by path

1234

/dokuwiki/
H A D.htaccess.dist22 ## $conf['userewrite'] = 1 - not needed for rewrite mode 2
H A DCOPYING313 when it starts in an interactive mode:
/dokuwiki/inc/Action/
H A DExport.php30 * data['mode'] -- requested export mode
52 $mode = substr($this->actionname, 7);
53 switch ($mode) {
90 $output = p_cached_output(wikiFN($ID, $REV), $mode, $ID);
91 $headers = p_get_metadata($ID, "format $mode");
98 $data['mode'] = $mode;
/dokuwiki/inc/Cache/
H A DCacheParser.php11 public $mode = ''; // input mode (represents the processing the input file will undergo)
18 * @param string $mode input mode
20 public function __construct($id, $file, $mode)
28 $this->mode = $mode;
31 parent::__construct($file . $INPUT->server->str('HTTP_HOST') . $INPUT->server->str('SERVER_PORT'), '.' . $mode);
12 public $mode = ''; // input mode (represents the processing the input file will undergo) global() variable in dokuwiki\\Cache\\CacheParser
21 __construct($id, $file, $mode) global() argument
H A DCacheRenderer.php74 $files = [DOKU_INC . 'inc/parser/' . $this->mode . '.php'];
/dokuwiki/inc/Extension/
H A DSyntaxPlugin.php25 * Needs to return one of the mode types defined in $PARSER_MODES in Parser.php
34 * Defines the mode types for other dokuwiki markup that maybe nested within the
35 * plugin's own markup. Needs to return an array of one or more of the mode types
108 * @param string $mode
111 public function accepts($mode)
129 return parent::accepts($mode);
112 accepts($mode) global() argument
/dokuwiki/inc/
H A DJpegMeta.php1741 * @param string $mode
1745 function _readIFD($data, $base, $offset, $isBigEndian, $mode) {
1746 $EXIFTags = $this->_exifTagNames($mode);
1900 if (($mode == 'ifd0') && ($tag == 0x8769)) { // ExifIFDOffset
1902 } elseif (($mode == 'ifd0') && ($tag == 0x8825)) { // GPSIFDOffset
1904 } elseif (($mode == 'ifd1') && ($tag == 0x0111)) { // TIFFStripOffsets
1906 } elseif (($mode == 'ifd1') && ($tag == 0x0117)) { // TIFFStripByteCounts
1908 } elseif (($mode == 'ifd1') && ($tag == 0x0201)) { // TIFFJFIFOffset
1910 } elseif (($mode == 'ifd1') && ($tag == 0x0202)) { // TIFFJFIFLength
1912 } elseif (($mode
1742 _readIFD($data, $base, $offset, $isBigEndian, $mode) global() argument
2071 _getIFDEntries($isBigEndian, $mode) global() argument
2682 _exifTagNames($mode) global() argument
2832 _exifTagTypes($mode) global() argument
2982 _exifNameTags($mode) global() argument
[all...]
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php27 /** @var array mode "rewrites" */
47 * Adds a token search pattern for a particular parsing mode.
49 * The pattern does not change the current mode.
53 * @param string $mode Should only apply this
57 public function addPattern($pattern, $mode = "accept")
59 if (! isset($this->regexes[$mode])) {
60 $this->regexes[$mode] = new ParallelRegex($this->case);
62 $this->regexes[$mode]->addPattern($pattern);
66 * Adds a pattern that will enter a new parsing mode.
71 * @param string $mode Shoul
58 addPattern($pattern, $mode = 'accept') global() argument
75 addEntryPattern($pattern, $mode, $new_mode) global() argument
89 addExitPattern($pattern, $mode) global() argument
107 addSpecialPattern($pattern, $mode, $special) global() argument
121 mapHandler($mode, $handler) global() argument
184 dispatchTokens($unmatched, $matched, $mode, $initialPos, $matchPos) global() argument
216 isModeEnd($mode) global() argument
228 isSpecialMode($mode) global() argument
239 decodeSpecial($mode) global() argument
[all...]
/dokuwiki/inc/Parsing/
H A DParser.php26 /** @var bool mode connections may only be set up once */
40 * Adds the base mode and initialized the lexer
54 * Add a new syntax element (mode) to the parser
83 foreach (array_keys($this->modes) as $mode) {
85 if ($mode == 'base') {
88 $this->modes[$mode]->preConnect();
91 if ($this->modes[$cm]->accepts($mode)) {
92 $this->modes[$mode]->connectTo($cm);
96 $this->modes[$mode]->postConnect();
/dokuwiki/inc/Parsing/ParserMode/
H A DAbstractMode.php28 public function connectTo($mode)
38 public function accepts($mode)
40 return in_array($mode, (array) $this->allowedModes);
26 connectTo($mode) global() argument
36 accepts($mode) global() argument
H A DAcronym.php33 public function connectTo($mode) argument
38 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'acronym');
H A DCamelcaselink.php8 public function connectTo($mode)
12 $mode,
9 connectTo($mode) global() argument
H A DCode.php8 public function connectTo($mode)
10 $this->Lexer->addEntryPattern('<code\b(?=.*</code>)', $mode, 'code');
9 connectTo($mode) global() argument
H A DEmaillink.php8 public function connectTo($mode)
11 $this->Lexer->addSpecialPattern('<' . PREG_PATTERN_VALID_EMAIL . '>', $mode, 'emaillink');
9 connectTo($mode) global() argument
H A DEntity.php35 public function connectTo($mode)
40 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'entity');
36 connectTo($mode) global() argument
H A DEol.php8 public function connectTo($mode)
11 if (in_array($mode, $badModes)) {
16 $this->Lexer->addSpecialPattern('(?:^[ \t]*)?\n', $mode, 'eol');
9 connectTo($mode) global() argument
H A DExternallink.php33 public function connectTo($mode) argument
37 $this->Lexer->addSpecialPattern($pattern, $mode, 'externallink');
H A DFile.php8 public function connectTo($mode)
10 $this->Lexer->addEntryPattern('<file\b(?=.*</file>)', $mode, 'file');
9 connectTo($mode) global() argument
H A DFilelink.php23 public function connectTo($mode)
27 $mode,
25 connectTo($mode) global() argument
H A DFootnote.php26 public function connectTo($mode)
30 $mode,
27 connectTo($mode) global() argument
H A DFormatting.php80 public function connectTo($mode)
84 if ($mode == $this->type) {
90 $mode,
85 connectTo($mode) global() argument
H A DHeader.php8 public function connectTo($mode)
13 $mode,
9 connectTo($mode) global() argument
H A DHr.php8 public function connectTo($mode)
10 $this->Lexer->addSpecialPattern('\n[ \t]*-{4,}[ \t]*(?=\n)', $mode, 'hr');
9 connectTo($mode) global() argument
H A DInternallink.php8 public function connectTo($mode)
11 $this->Lexer->addSpecialPattern("\[\[.*?\]\](?!\])", $mode, 'internallink');
9 connectTo($mode) global() argument
H A DLinebreak.php8 public function connectTo($mode)
10 $this->Lexer->addSpecialPattern('\x5C{2}(?:[ \t]|(?=\n))', $mode, 'linebreak');
9 connectTo($mode) global() argument

1234