Home
last modified time | relevance | path

Searched refs:doc (Results 1 – 24 of 24) sorted by relevance

/dokuwiki/lib/plugins/info/
H A Dsyntax.php77 $renderer->doc .= $this->renderSyntaxModes();
80 $renderer->doc .= $this->renderSyntaxTypes();
110 $renderer->doc .= date('r');
113 $renderer->doc .= "no info about " . htmlspecialchars($data[0]);
181 … $doc = '<h2><a name="' . $hid . '" id="' . $hid . '">' . hsc($info['name']) . '</a></h2>';
182 $doc .= '<div class="level2">';
183 $doc .= '<p>' . strtr(hsc($info['desc']), ["\n" => "<br />"]) . '</p>';
184 $doc .= '<pre class="code">$' . $p . " = plugin_load('helper', '" . $p . "');</pre>";
185 $doc .= '</div>';
189 $doc .= '<h3><a name="' . $hid . '" id="' . $hid . '">' . hsc($title) . '</a></h3>';
[all …]
/dokuwiki/_test/tests/Remote/OpenApiDoc/
H A DDocBlockMethodTest.php32 $doc = new DocBlockMethod($reflect);
34 $this->assertEquals('This is a test', $doc->getSummary());
35 $this->assertEquals("With more information\nin several lines", $doc->getDescription());
56 $doc->getTag('param')
59 $params = $doc->getParameters();
69 $doc->getTag('return')
72 $return = $doc->getReturn();
80 $doc->getTag('something')
87 $doc->getTag('another')
H A DDocBlockClassTest.php30 $doc = new DocBlockClass($reflect);
32 $this->assertStringContainsString('Test cases for DocBlockClass', $doc->getSummary());
33 $this->assertStringContainsString('used in the tests itself', $doc->getDescription());
35 $property = $doc->getPropertyDocs()['dummyProperty1'];
43 $method = $doc->getMethodDocs()['testClass'];
/dokuwiki/_test/tests/Feed/
H A DFeedMediaProcessorTest.php77 $doc = new Document();
78 $doc->html($proc->getBody('diff'));
79 $th = $doc->find('table th');
82 $doc = new Document();
83 $doc->html($proc->getBody('htmldiff'));
84 $th = $doc->find('table th');
87 $doc = new Document();
88 $doc->html($proc->getBody('html'));
89 $home = $doc->find('img');
/dokuwiki/inc/parser/
H A Dxhtmlsummary.php31 $this->doc .= DOKU_LF . '<div>' . DOKU_LF;
37 $this->doc = $this->sum_summary;
38 $this->doc .= DOKU_LF . '</div>' . DOKU_LF;
53 $this->doc .= DOKU_LF . '<h' . $level . '>';
54 $this->doc .= $this->_xmlEntities($text);
55 $this->doc .= "</h$level>" . DOKU_LF;
70 $this->sum_summary .= $this->doc;
89 $this->sum_summary .= $this->doc;
H A Dxhtml.php114 $this->doc .= '<!-- EDIT' . hsc(json_encode($data, JSON_THROW_ON_ERROR)) . ' -->';
153 $this->doc .= '<div class="footnotes">' . DOKU_LF;
159 $this->doc .= '<div class="fn">';
160 … $this->doc .= '<sup><a href="#fnt__' . $id . '" id="fn__' . $id . '" class="fn_bot">';
161 $this->doc .= $id . ')</a></sup> ' . DOKU_LF;
168 … $this->doc .= ', <sup><a href="#fnt__' . ($ref) . '" id="fn__' . ($ref) . '" class="fn_bot">';
169 $this->doc .= ($ref) . ')</a></sup> ' . DOKU_LF;
173 $this->doc .= '<div class="content">' . $footnote . '</div>';
174 $this->doc .= '</div>' . DOKU_LF;
177 $this->doc .= '</div>' . DOKU_LF;
[all …]
H A Dmetadata.php99 $this->doc = trim($this->doc);
100 if (strlen($this->doc) > self::ABSTRACT_MAX) {
101 $this->doc = PhpString::substr($this->doc, 0, self::ABSTRACT_MAX) . '…';
103 $this->meta['description']['abstract'] = $this->doc;
112 $this->doc = '';
129 $this->doc .= $text;
227 $this->store = $this->doc;
228 $this->doc = '';
249 $this->doc = $this->store;
499 $this->doc .= $name;
[all …]
H A Drenderer.php55 public $doc = ''; variable in Doku_Renderer
66 $this->doc = '';
/dokuwiki/_test/tests/inc/parser/
H A Dlexer.test.php418 $doc = "aaa<file>bcd</file>eee";
421 ["<file>", DOKU_LEXER_ENTER, strpos($doc, '<file>')],
422 ["b", DOKU_LEXER_SPECIAL, strpos($doc, 'b')],
423 ["c", DOKU_LEXER_MATCHED, strpos($doc, 'c')],
424 ["d", DOKU_LEXER_UNMATCHED, strpos($doc, 'd')],
425 ["</file>", DOKU_LEXER_EXIT, strpos($doc, '</file>')],
444 $this->assertTrue($lexer->parse($doc));
448 $doc = "aaa<file>bcd</file>eee";
451 ["<file>", DOKU_LEXER_ENTER, strpos($doc, '<file>')],
452 ["b", DOKU_LEXER_SPECIAL, strpos($doc, 'b')],
[all …]
H A Drenderer_xhtml.test.php30 $this->assertEquals($expected, $this->R->doc);
37 $this->assertEquals($expected, $this->R->doc);
44 $this->assertEquals($expected, $this->R->doc);
51 $this->assertEquals($expected, $this->R->doc);
58 $this->assertEquals($expected, $this->R->doc);
65 $this->assertEquals($expected, $this->R->doc);
121 $this->assertEquals($expected, $this->R->doc);
186 $this->assertEquals($expected, $this->R->doc);
251 $this->assertEquals($expected, $this->R->doc);
257 $this->assertEquals($expected, trim($this->R->doc));
[all …]
/dokuwiki/inc/Parsing/
H A DParser.php105 * @param string $doc the wiki syntax text
108 public function parse($doc) argument
112 $doc = "\n" . str_replace("\r\n", "\n", $doc) . "\n";
113 $this->lexer->parse($doc);
/dokuwiki/inc/Remote/OpenApiDoc/
H A DOpenAPIGenerator.php365 $doc = new DocBlockClass(new ReflectionClass($baseType));
367 foreach ($doc->getPropertyDocs() as $property => $propertyDoc) {
/dokuwiki/conf/
H A Dmime.conf35 doc !application/msword
/dokuwiki/
H A D.gitignore82 vendor/*/*/doc/*
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php85 $doc = new \DOMDocument();
86 @$doc->loadHTML($data);
87 $xpath = new \DOMXpath($doc);
H A DSimplePie.php1838 $doc = new \DOMDocument();
1839 @$doc->loadHTML($file->body);
1840 $xpath = new \DOMXpath($doc);
/dokuwiki/inc/
H A Dparserutils.php699 $data = [$mode, & $Renderer->doc];
701 return $Renderer->doc;
/dokuwiki/lib/scripts/
H A Dfileuploader.js1059 var doc = iframe.contentDocument ? iframe.contentDocument: iframe.contentWindow.document,
1063 this.log("innerHTML = " + doc.body.innerHTML);
1066 response = eval("(" + doc.body.innerHTML + ")");
/dokuwiki/vendor/simplepie/simplepie/
H A DREADME.markdown25 [Symfony](https://symfony.com/doc/current/components/cache.html)
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
/dokuwiki/vendor/splitbrain/slika/
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
/dokuwiki/_test/
H A Dcomposer.lock4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG29 * Haskell: Updated doc links and types from Prelude (Jeremy Singer)