| /plugin/flowcharts/ |
| D | renderer.php | 5 $xhtml = '<em class="u">'; 7 $xhtml = htmlentities($xhtml,ENT_NOQUOTES); 8 $xhtml = str_replace(array('"', '='), array(''', '='), $xhtml); 10 $this->doc .= $xhtml; 14 $xhtml = '</em>'; 16 $xhtml = htmlentities($xhtml,ENT_NOQUOTES); 17 $xhtml = str_replace(array('"', '='), array(''', '='), $xhtml); 19 $this->doc .= $xhtml; 23 $xhtml = parent::internallink($id, $name, $search, true, $linktype); 25 $xhtml = htmlentities($xhtml,ENT_NOQUOTES); [all …]
|
| /plugin/creole/_test/ |
| D | creole.test.php | 31 $xhtml = p_render('xhtml', $instructions, $info); 33 $this->assertEquals($expected, $xhtml); 46 $xhtml = p_render('xhtml', $instructions, $info); 48 $this->assertEquals($expected, $xhtml); 61 $xhtml = p_render('xhtml', $instructions, $info); 63 $this->assertEquals($expected, $xhtml); 77 $xhtml = p_render('xhtml', $instructions, $info); 79 $this->assertEquals($expected, $xhtml); 93 $xhtml = p_render('xhtml', $instructions, $info); 95 $this->assertEquals($expected, $xhtml); [all …]
|
| /plugin/var/ |
| D | syntax.php | 51 $xhtml = $ID; 52 $meta = $xhtml; 55 $xhtml = getNS($ID); 56 $meta = $xhtml; 65 $xhtml = strtr(noNS($ID),'_',' '); 66 $meta = $xhtml; 75 $xhtml = $_SERVER['REMOTE_USER']; 79 …$xhtml = ($_SERVER['REMOTE_USER'] ? str_replace(' ', $aliasSep, $INFO['userinfo']['name']) : $_S… 83 $xhtml = ($_SERVER['REMOTE_USER'] ? $INFO['userinfo']['name'] : clientIP()); 87 $xhtml = ($_SERVER['REMOTE_USER'] ? $INFO['userinfo']['mail'] : ''); [all …]
|
| /plugin/ckgdoku/action/ |
| D | edit.php | 388 $this->xhtml = $this->_render_xhtml($text); 390 $this->xhtml = str_replace("__IWIKI_FSLASH__", "⁄", $this->xhtml); 392 $this->xhtml = preg_replace("/FNoteINSert\d+/ms", "",$this->xhtml); 395 $this->xhtml = str_replace("CGEHASH", "#", $this->xhtml); 397 $this->xhtml = str_replace("__GESHI_QUOT__", '"', $this->xhtml); 398 $this->xhtml = str_replace("__GESHI_OPEN__", "< ", $this->xhtml); 399 $this->xhtml = str_replace('CHEVRONescC', '>>',$this->xhtml); 400 $this->xhtml = str_replace('CHEVRONescO', '<<',$this->xhtml); 401 $this->xhtml = preg_replace('/_QUOT_/ms','>',$this->xhtml); // dw quotes 402 $this->xhtml = str_replace("rss>FEED", "rss>Feed:www.",$this->xhtml); [all …]
|
| /plugin/ckgedit/action/ |
| D | edit.php | 416 $this->xhtml = $this->_render_xhtml($text); 421 $this->xhtml = preg_replace("/FNoteINSert\d+/ms", "",$this->xhtml); 424 $this->xhtml = str_replace("CGEHASH", "#", $this->xhtml); 426 $this->xhtml = str_replace("__GESHI_QUOT__", '"', $this->xhtml); 427 $this->xhtml = str_replace("__GESHI_OPEN__", "< ", $this->xhtml); 428 $this->xhtml = str_replace('CHEVRONescC', '>>',$this->xhtml); 429 $this->xhtml = str_replace('CHEVRONescO', '<<',$this->xhtml); 430 $this->xhtml = preg_replace('/_QUOT_/ms','>',$this->xhtml); // dw quotes 431 $this->xhtml = preg_replace_callback( 437 $this->xhtml [all …]
|
| /plugin/date/ |
| D | syntax.php | 154 $xhtml = date($format, $timestamp_with_now_value); 156 $xhtml = strftime($format, $timestamp_with_now_value); 171 $xhtml = date($format, $timestamp_value); 173 $xhtml = strftime($format, $timestamp_value); 180 $xhtml = date($format); 182 $xhtml = strftime($format); 190 $xhtml = strftime($dformat); 192 $xhtml = strftime($dformat, strtotime("+1 day")); 194 $xhtml = strftime($dformat, strtotime("-1 day")); 196 $xhtml = strftime('%Y'); [all …]
|
| /plugin/fckg/action/ |
| D | edit.php | 357 $this->xhtml = $this->_render_xhtml($text); 359 $this->xhtml = str_replace("__IWIKI_FSLASH__", "⁄", $this->xhtml); 361 $this->xhtml = preg_replace("/FNoteINSert\d+/ms", "",$this->xhtml); 364 $this->xhtml = str_replace("__GESHI_QUOT__", '"', $this->xhtml); 365 $this->xhtml = str_replace("__GESHI_OPEN__", "< ", $this->xhtml); 366 $this->xhtml = str_replace('CHEVRONescC', '>>',$this->xhtml); 367 $this->xhtml = str_replace('CHEVRONescO', '<<',$this->xhtml); 368 $this->xhtml = preg_replace('/_dwQUOT_/ms','>',$this->xhtml); // dw quotes 371 $this->xhtml = preg_replace_callback( 381 $this->xhtml [all …]
|
| /plugin/include/syntax/ |
| H A D | footer.php | 52 $xhtml = array(); 68 $xhtml[] = $renderer->_formatLink($link); 75 … $xhtml[] = '<abbr class="published" title="'.dformat($date, '%Y-%m-%dT%H:%M:%SZ').'">' 85 … $xhtml[] = '<abbr class="published" title="'.dformat($mdate, '%Y-%m-%dT%H:%M:%SZ').'">' 96 $xhtml[] = '<span class="vcard author">' . userlink($author) . '</span>'; 98 $xhtml[] = '<span class="vcard author">' . editorinfo($author) . '</span>'; 106 if ($disc) $xhtml[] = '<span class="comment">' . $disc . '</span>'; 112 if ($link) $xhtml[] = '<span class="linkback">' . $link . '</span>'; 115 $xhtml = implode(DOKU_LF . DOKU_TAB . '· ', $xhtml); 121 $xhtml .= '<div class="tags"><span>' . DOKU_LF [all …]
|
| /plugin/mermaid/ |
| H A D | renderer.php | 9 private function formattedXhtml(string $xhtml): string argument 11 return str_replace(['"'], ['\''], htmlentities($xhtml, ENT_NOQUOTES)); 26 $xhtml = $this->formattedXhtml(parent::internallink($id, $name, $search, true, $linktype)); 29 return $xhtml; 32 $this->doc .= $xhtml; 37 $xhtml = $this->formattedXhtml(parent::externallink($url, $name, true)); 40 return $xhtml; 43 $this->doc .= $xhtml; 48 …$xhtml = $this->formattedXhtml(parent::internalmedia($src, $title, $align, $width, $height, $cache… 51 return $xhtml; [all …]
|
| /plugin/rrdgraph/ |
| D | syntax.php | 132 $xhtml = '<ul class="rrdTabBar" id="' . "__T$graphId" . '">'; 137 $xhtml .= '<li id="'; 138 $xhtml .= '__TI' . $graphId . 'X' . $number; 139 $xhtml .= '"'; 140 if ($tabCounter ++ == $selectedTab) $xhtml .= ' class="rrdActiveTab"'; 141 $xhtml .= '><a href="javascript:rrdSwitchRange('; 142 $xhtml .= "'$graphId', $number"; 143 $xhtml .= ')">'; 144 $xhtml .= htmlentities($rangeName); 145 $xhtml .= '</a></li>'; [all …]
|
| /plugin/targetlink/ |
| D | syntax.php | 106 …function internallink(&$xhtml, $id, $name = null, $target, $search = null, $returnonly = false, $l… argument 127 $default = $xhtml->_simpleTitle($id); 130 resolve_pageid(getNS($ID), $id, $exists, $xhtml->date_at, true); 133 $name = $xhtml->_getLinkTitle($name, $default, $isImage, $id, $linktype); 147 if(!empty($hash)) $hash = $xhtml->_headerToLink($hash); 161 if($xhtml->date_at) { 162 $params = $params.'&at='.rawurlencode($xhtml->date_at); 191 function externallink(&$xhtml, $url, $name = null, $target, $schemes, $returnonly = false) { argument 194 $name = $xhtml->_getLinkTitle($name, $url, $isImage); 207 $xhtml->doc .= $name; [all …]
|
| /plugin/datepicker/_test/ |
| D | syntax.test.php | 27 $xhtml = p_wiki_xhtml($id); 28 $doc = phpQuery::newDocument($xhtml); 41 $xhtml = p_wiki_xhtml($id); 42 $doc = phpQuery::newDocument($xhtml); 61 $xhtml = p_wiki_xhtml($id); 62 $doc = phpQuery::newDocument($xhtml); 74 $xhtml = p_wiki_xhtml($id); 75 $doc = phpQuery::newDocument($xhtml); 94 $xhtml = p_wiki_xhtml($id); 95 $doc = phpQuery::newDocument($xhtml); [all …]
|
| D | ajax.test.php | 22 $xhtml = p_wiki_xhtml('test:plugin_datepicker:ajax'); 23 $doc = phpQuery::newDocument($xhtml); 39 $xhtml = p_wiki_xhtml('test:plugin_datepicker:ajax'); 40 $doc = phpQuery::newDocument($xhtml); 64 $xhtml = p_wiki_xhtml('test:plugin_datepicker:ajax'); 65 $doc = phpQuery::newDocument($xhtml);
|
| /plugin/webcomponent/_test/ |
| D | blockquote.test.php | 40 $xhtml = p_render('xhtml', $instructions, $info); 41 $this->assertEquals($expected, $xhtml); 59 $xhtml = p_render('xhtml', $instructions, $info); 60 $this->assertEquals($expected, $xhtml); 78 $xhtml = p_render('xhtml', $instructions, $info); 79 $this->assertEquals($expected, $xhtml);
|
| D | card.test.php | 36 $xhtml = p_render('xhtml', $instructions, $info); 47 $this->assertEquals($expected, $xhtml); 71 $xhtml = p_render('xhtml', $instructions, $info); 72 $this->assertEquals($expected.$expected, $xhtml);
|
| /plugin/annotate/ |
| D | anno.php | 107 list($state, $xhtml) = $data; 110 $classes = preg_split("/\s+/", $xhtml); 111 $xhtml = rtrim(implode(' ',$classes)); 114 $tip = '<span class="' . $xhtml . ' anno-dclk-over ui-widget-content">'; 117 $tip = '<span class="annotation ui-widget-content '. $xhtml . '">'; 123 $xhtml = trim($xhtml); 124 if(preg_match('/^\{\{([\w\:]+)\}\}$/',$xhtml,$matches)) { 129 …$html = html_secedit(p_render('xhtml',p_get_instructions($xhtml),$info),$secedit); //$info is … 136 list($which,$text)= explode('>',$xhtml);
|
| /plugin/bpmnio/_test/ |
| D | syntax_plugin_bpmnio_bpmnio.test.php | 27 $xhtml = p_render('xhtml', $instructions, $info); 29 $this->assertEquals($expected, $xhtml); 49 $xhtml = p_render('xhtml', $instructions, $info); 51 $this->assertEquals($expected, $xhtml);
|
| /plugin/button/ |
| D | syntax.php | 349 function dokuwiki_get_link(&$xhtml, $id, $name = NULL) argument 357 $link = $this->interwikilink($xhtml, $id, $name, $wikiName, $wikiUri, true); 365 return $this->internallink($xhtml, $id, $name); 371 return $this->internalmedia($xhtml, $id, $name); 373 return $this->internallink($xhtml, $id, $name); 379 …function internallink(&$xhtml, $id, $name = NULL, $search = NULL, $returnonly = false, $linktype =… argument 408 $default = $xhtml->_simpleTitle($id); 414 $name = $xhtml->_getLinkTitle($name, $default, $isImage, $id, $linktype); 431 $hash = $xhtml->_headerToLink($hash); 474 &$xhtml, argument [all …]
|
| /plugin/abstract/_test/ |
| D | syntax.test.php | 18 $xhtml = p_wiki_xhtml('test:plugin_abstract:syntax'); 21 $doc = phpQuery::newDocument($xhtml); 33 $xhtml = p_wiki_xhtml('test:plugin_abstract:syntax'); 36 $doc = phpQuery::newDocument($xhtml);
|
| /plugin/ifauthex/_test/ |
| D | instruction.test.php | 44 $xhtml = p_render('xhtml', $calls, $info); 47 $this->assertTrue($doc->loadHTML($xhtml)); 50 $xhtml = p_render('xhtml', $calls, $info); 53 $this->assertTrue($doc->loadHTML($xhtml));
|
| /plugin/rowmove/_test/ |
| D | ajax.test.php | 21 $xhtml = p_wiki_xhtml('test:plugin_rowmove:syntax'); 22 $doc = phpQuery::newDocument($xhtml); 40 $xhtml = p_wiki_xhtml('test:plugin_rowmove:syntax'); 41 $doc = phpQuery::newDocument($xhtml);
|
| /plugin/renderrevisions/action/ |
| H A D | save.php | 89 [$format, $xhtml] = $event->data; 109 $md5xhtml = $this->getContentHash($xhtml); 123 $storage->saveRevision($ID, filemtime(wikiFN($ID)), $xhtml); 156 $diff = $this->getRenderDiff($storage->getRevision($ID, $oldPageMtime), $xhtml); 223 * @param string $xhtml 225 protected function getContentHash(string $xhtml): string argument 227 return md5(preg_replace('/\s+/', '', strip_tags($xhtml)));
|
| /plugin/tagfilter/_test/ |
| D | syntax.test.php | 26 $xhtml = p_wiki_xhtml('test:plugin_tagfilter:start'); 27 $doc = phpQuery::newDocument($xhtml); 66 $xhtml = p_wiki_xhtml('test:plugin_tagfilter:start2'); 67 $doc = phpQuery::newDocument($xhtml); 85 $xhtml = p_wiki_xhtml('test:plugin_tagfilter:start3'); 86 $doc = phpQuery::newDocument($xhtml);
|
| /plugin/ckgdoku/syntax/ |
| D | specials.php | 74 $xhtml = ""; 102 list($state, $xhtml) = $data; 105 $renderer->doc .= DOKU_LF . $xhtml . DOKU_LF; 109 $renderer->doc .= $xhtml; break;
|
| /plugin/ckgedit/syntax/ |
| D | specials.php | 73 $xhtml = ""; 101 list($state, $xhtml) = $data; 104 $renderer->doc .= DOKU_LF . $xhtml . DOKU_LF; 108 $renderer->doc .= $xhtml; break;
|