Lines Matching full:mode
14 {[url:mode!http://toto?value=]}
15 {[url:mode!inline]}
16 {[url:mode!wiki]}
19 {[mode!texte|affich�]}
50 …function connectTo($mode) { $this->Lexer->addSpecialPattern('{\([^}]*\)}',$mode,'plugin_embedover'… argument
58 if (preg_match('/{\(url\:((?<mode>.*)!)?(?<text>[^|]*)\)}/', $match, $matches))
60 if (!$matches[mode]) $matches[mode] = 'default';
61 $this->urls[$matches[mode]] = $matches[text];
65 … else if (preg_match('/{\(style\:((?<mode>.*)!)?(?<text>[^|]*)\)}/', $match, $matches))
67 if (!$matches[mode]) $matches[mode] = 'default';
68 $this->styles[$matches[mode]] = $matches[text];
71 … else if (preg_match('/{\(((?<mode>.*)!)?(?<text>[^|]*)(\|(?<aff>.*))?\)}/', $match, $matches))
74 if (!$matches[mode]) $matches[mode] = 'default';
75 $dest = $this->urls[$matches[mode]] . urlencode($matches[text]);
76 $style = $this->styles[$matches[mode]];
88 function render($mode, Doku_Renderer $renderer, $data) argument
90 if($mode == 'xhtml'){