| /dokuwiki/_test/tests/inc/parser/ |
| H A D | parser_code.test.php | 20 $this->P->parse('Foo <code>Test</code> Bar'); 36 $this->P->parse('Foo <code bash>Test</code> Bar'); 52 $this->P->parse('Foo <code bash script.sh>Test</code> Bar'); 68 $this->P->parse('Foo <code2>Bar</code2><code>Test</code>'); 81 $this->P->parse('Foo <code C [enable_line_numbers]>Test</code> Bar'); 99 … $this->P->parse('Foo <code C [enable_line_numbers highlight_lines_extra="3"]>Test</code> Bar'); 118 $this->P->parse('Foo <code C [unknown="I will be deleted/ignored!"]>Test</code> Bar'); 134 $this->P->parse('Foo <code C [enable_line_numbers]>Test</code> Bar'); 152 $this->P->parse('Foo <code C [enable_line_numbers="1"]>Test</code> Bar'); 170 $this->P->parse('Foo <code C [enable_line_numbers="0"]>Test</code> Bar'); [all …]
|
| H A D | parser_replacements.test.php | 16 $this->P->parse('abc FOOBAR xyz'); 33 $this->P->parse('abcFOOBARxyz'); 48 $this->P->parse('FOOBAR FOO'); 65 $this->P->parse('abc FOO def BAR xyz'); 85 $this->P->parse('FOO A.FOO FOO.1 A.FOO.1'); 108 $this->P->parse('FOO A.FOO FOO.1 A.FOO.1'); 131 $this->P->parse('abc:-)xyz'); 146 $this->P->parse('abc :-) xyz'); 163 $this->P->parse('abc:-)x^_^yz'); 178 $this->P->parse('abc :-) x ^_^ yz'); [all …]
|
| H A D | parser_headers.test.php | 12 $this->P->parse("abc \n ====== Header ====== \n def"); 31 $this->P->parse("abc \n ===== Header ===== \n def"); 50 $this->P->parse("abc \n ==== Header ==== \n def"); 69 $this->P->parse("abc \n === Header === \n def"); 88 $this->P->parse("abc \n == Header == \n def"); 107 $this->P->parse("abc \n ===== Header == \n def"); 126 $this->P->parse("abc \n ===== Header =========== \n def"); 145 $this->P->parse("abc \n ======= Header ======= \n def"); 164 $this->P->parse("abc \n= Header =\n def"); 178 $this->P->parse("abc \n====== == Header == ======\n def"); [all …]
|
| H A D | parser_footnote.test.php | 25 $this->P->parse('Foo (( testing )) Bar'); 43 $this->P->parse("Foo (( testing\n Bar"); 56 $this->P->parse("Foo (( testing\ntesting )) Bar"); 74 $this->P->parse('Foo (( x((y))z )) Bar'); 93 $this->P->parse("Foo \nX(( test\ning ))Y\n Bar"); 112 $this->P->parse('Foo (( **testing** )) Bar'); 135 $this->P->parse("Foo (( \n ---- \n )) Bar"); 156 $this->P->parse("Foo (( <code>Test</code> )) Bar"); 177 $this->P->parse("Foo (( \n Test\n )) Bar"); 199 $this->P->parse("Foo (( \n Test\n )) Bar"); [all …]
|
| H A D | parser_quotes.test.php | 18 $this->P->parse($raw); 36 $this->P->parse($raw); 54 $this->P->parse($raw); 72 $this->P->parse($raw); 90 $this->P->parse($raw); 110 $this->P->parse($raw); 129 $this->P->parse($raw); 149 $this->P->parse($raw); 167 $this->P->parse($raw); 191 $this->P->parse($raw); [all …]
|
| H A D | parser_links.test.php | 22 $this->P->parse("Foo http://www.google.com Bar"); 52 $this->P->parse("Foo http://123.123.3.21/foo Bar"); 110 $this->P->parse("Foo $source Bar"); 130 $this->P->parse("Foo javascript:alert('XSS'); Bar"); 143 $this->P->parse("Foo www.google.com Bar"); 172 $this->P->parse("Foo (www.google.com) Bar"); 216 $this->P->parse("Foo ftp.sunsite.com Bar"); 260 $this->P->parse("Foo <bugs@php.net> Bar"); 275 $this->P->parse("Foo <~fix+bug's.for/ev{e}r@php.net> Bar"); 290 $this->P->parse("Foo <bugs@pHp.net> Bar"); [all …]
|
| H A D | parser_table.test.php | 16 $this->P->parse(' 60 …$this->P->parse("\r\nabc\r\n| Row 0 Col 1 | Row 0 Col 2 | Row 0 Col 3 |\r\n| Row 1 C… 100 $this->P->parse(' 125 $this->P->parse(' 160 $this->P->parse(' 209 $this->P->parse(' 244 $this->P->parse(' 305 $this->P->parse(' 339 $this->P->parse(' 381 $this->P->parse(' [all …]
|
| H A D | parser_preformatted.test.php | 18 $this->P->parse('Foo <file>testing</file> Bar'); 36 $this->P->parse('Foo <code>testing</code> Bar'); 53 $this->P->parse("Foo <code \n>testing</code> Bar"); 70 $this->P->parse("Foo <code php>testing</code> Bar"); 87 $this->P->parse("F oo\n x \n y \nBar\n"); 104 $this->P->parse("F oo\r\n x \r\n y \r\nBar\r\n"); 121 $this->P->parse("F oo\n\tx\t\n\t\ty\t\nBar\n"); 138 $this->P->parse("F oo\r\n\tx\t\r\n\t\ty\t\r\nBar\r\n"); 156 $this->P->parse(" - x \n * y \nF oo\n x \n y \n -X\n *Y\nBar\n"); 191 $this->P->parse("F oo\n ==Test==\n y \nBar\n");
|
| H A D | parser_eol.test.php | 12 $this->P->parse("Foo\nBar"); 25 $this->P->parse("Foo\n\nbar\nFoo"); 41 $this->P->parse("Foo\r\nBar"); 54 $this->P->parse('Foo\\\\ Bar'); 70 $this->P->parse('Foo\\\\'."\n\n".'Bar'); 88 $this->P->parse('Foo\\\\Bar');
|
| H A D | parser_lists.test.php | 17 $this->P->parse(' 50 $this->P->parse(' 84 $this->P->parse(' 117 $this->P->parse("\r\n *A\r\n * B\r\n * C\r\n"); 146 $this->P->parse("\r\n -A\r\n - B\r\n - C\r\n"); 175 $this->P->parse("Foo -bar *foo Bar"); 189 $this->P->parse('Foo 231 $this->P->parse(' 266 $this->P->parse(' 295 $this->P->parse(' [all …]
|
| H A D | parser_i18n.test.php | 21 $this->P->parse("I**ñ**t__ë__r//n//â<sup>t</sup>i<sub>ô</sub>n''à''liz<del>æ</del>tiøn"); 62 $this->P->parse("Foo\n ==== Iñtërnâtiônàlizætiøn ==== \n Bar"); 81 $this->P->parse(' 126 $this->P->parse("Foo Iñtërnâtiônàlizætiøn Bar"); 141 $this->P->parse("Foo [[wp>Iñtërnâtiônàlizætiøn|Iñtërnâtiônàlizætiøn]] Bar"); 156 $this->P->parse("Foo [[x:Iñtërnâtiônàlizætiøn:y:foo_bar:z|Iñtërnâtiônàlizætiøn]] Bar");
|
| H A D | parser_quote.test.php | 12 $this->P->parse("abc\n> def\n>>ghi\nklm"); 35 $this->P->parse("abc\r\n> def\r\n>>ghi\r\nklm"); 58 $this->P->parse("\n> def\n>>ghi\n "); 76 $this->P->parse("abc\n> def\n>>ghi\nklm");
|
| H A D | parser_file.test.php | 15 $this->P->parse('Foo <file>Test</file> Bar'); 31 $this->P->parse('Foo <file txt test.txt>Test</file> Bar'); 47 $this->P->parse('Foo <file2>Test</file2> Bar');
|
| H A D | parser_unformatted.test.php | 11 $this->P->parse("Foo <nowiki>testing</nowiki> Bar"); 28 $this->P->parse("Foo %%testing%% Bar");
|
| H A D | lexer.test.php | 163 $this->assertFalse($lexer->parse("abcdef")); 170 $this->assertTrue($lexer->parse("")); 194 $this->assertTrue($lexer->parse("aaaxayyyaxaaaz")); 221 $this->assertTrue($lexer->parse("ababbxbaxxxxxxax")); 249 $this->assertTrue($lexer->parse("abaabxbaaaxaaaax")); 286 $this->assertTrue($lexer->parse("abaabaaa:ababbabbba")); 323 $this->assertTrue($lexer->parse("aabaab(bbabb)aab")); 352 $this->assertTrue($lexer->parse("aabaaxxbbbxx")); 371 $this->assertFalse($lexer->parse("aa)aa")); 402 $this->assertTrue($lexer->parse("aa(bbabb)b")); [all …]
|
| /dokuwiki/lib/plugins/config/_test/ |
| H A D | ConfigParserTest.php | 17 $conf = $parser->parse(__DIR__ . '/data/config.php'); 35 $conf = $parser->parse(__DIR__ . '/data/config.php');
|
| /dokuwiki/inc/Parsing/ |
| H A D | Parser.php | 108 public function parse($doc) function in dokuwiki\\Parsing\\Parser 113 $this->lexer->parse($doc);
|
| /dokuwiki/inc/Remote/IXR/ |
| H A D | Client.php | 63 if (!$this->message->parse()) {
|
| /dokuwiki/lib/plugins/config/core/ |
| H A D | Loader.php | 187 $conf = array_merge($conf, $this->parser->parse($file)); 239 $conf = $this->parser->parse($file);
|
| H A D | ConfigParser.php | 28 public function parse($file) function in dokuwiki\\plugin\\config\\core\\ConfigParser
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Misc.php | 1727 return $parser->parse($dt); 1742 return $decoder->parse(); 1986 if ($parser->parse()) { 1996 if ($parser->parse()) { 2006 if ($parser->parse()) { 2016 if ($parser->parse()) { 2026 if ($parser->parse()) {
|
| H A D | File.php | 129 if ($parser->parse()) { 194 if ($parser->parse()) { 212 if (!$decoder->parse()) {
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Client/ |
| H A D | ClientSSL.php | 212 if (!$this->message->parse()) {
|
| /dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/ |
| H A D | Entities.php | 97 public function parse() function in SimplePie_Decode_HTML_Entities
|
| /dokuwiki/lib/scripts/jquery/ |
| H A D | jquery.cookie.js | 46 return config.json ? JSON.parse(s) : s;
|