/plugin/dbquery/syntax/ |
H A D | query.php | 76 * @param Doku_Renderer $R 78 public function renderStatus($result, $html, Doku_Renderer $R) argument 82 $R->doc .= $html; 89 * @param Doku_Renderer $R 91 public function renderResultTable($result, Doku_Renderer $R) argument 96 $R->cdata($lang['nothingfound']); 100 $R->table_open(); 101 $R->tablethead_open(); 102 $R->tablerow_open(); 104 $R 131 renderTransposedResultTable($result, Doku_Renderer $R) global() argument 169 cellFormat($content, Doku_Renderer $R) global() argument [all...] |
/plugin/strata/syntax/ |
H A D | table.php | 27 function render($mode, Doku_Renderer $R, $data) { argument 30 $R->table_open(); 31 $R->tablerow_open(); 32 $R->tablecell_open(); 33 $this->displayError($mode, $R, $data); 34 $R->tablecell_close(); 35 $R->tablerow_close(); 36 $R->table_close(); 61 $this->ui_container_open($mode, $R, $data, array('strata-container', 'strata-container-table')); 62 $R [all...] |
H A D | list.php | 23 function render($mode, Doku_Renderer $R, $data) { argument 26 $R->listu_open(); 27 $R->listitem_open(1); 28 $R->listcontent_open(); 29 $this->displayError($mode, $R, $data); 30 $R->listcontent_close(); 31 $R->listitem_close(); 32 $R->listu_close(); 45 $R->listu_open(); 46 $R [all...] |
H A D | entry.php | 246 function render($mode, Doku_Renderer $R, $data) { 277 if($mode == 'xhtml') { $R->doc .= '<div class="strata-entry" id="'.Clean::deaccent(strtolower($heading)).'">'; } 278 if($mode == 'odt' && isset($currentPosition) && method_exists ($R, 'insertBookmark')) { 279 $R->insertBookmark($currentPosition, false); 281 $R->table_open(); 282 $R->tablerow_open(); 283 $R->tableheader_open(2); 285 $R->cdata($heading); 289 $R->emphasis_open(); 290 $R 242 render($mode, Doku_Renderer $R, $data) global() argument [all...] |
H A D | info.php | 75 public function render($mode, Doku_Renderer $R, $data) { argument 79 $R->listu_open(); 81 $R->listitem_open(1); 82 $R->listcontent_open(); 84 $R->strong_open(); 85 $R->cdata($data['name']); 86 $R->strong_close(); 89 $R->cdata(' ('.$kind.' hint: '. $data['meta']['hint'] .')'); 91 // $R->emphasis_open(); 92 // $R [all...] |
/plugin/slider/ |
H A D | syntax.php | 167 * @param Doku_Renderer $R 180 $R->keepdoc = $R->doc; 181 $R->doc = ''; 191 $R->doc = preg_replace('/<p>\s*$/','',$R->doc); 192 $R->doc = preg_replace('/^\s*<\/p>\s*/','',$R->doc); 193 $R->doc = trim($R->doc); 196 if($R->doc){ 197 $R->doc = '<div class="plugin_slider_content li">'.$R->doc.'</div>'; 201 $R->doc = $R->keepdoc . $R->doc; 202 unset($R->keepdoc); [all …]
|
/plugin/davcal/syntax/ |
H A D | table.php | 219 $R->table_open(); 220 $R->tablethead_open(); 221 $R->tableheader_open(); 223 $R->tableheader_close(); 230 $R->tableheader_open(); 232 $R->tableheader_close(); 245 $R->tableheader_open(); 247 $R->tableheader_close(); 248 $R->tablethead_close(); 251 $R->tablerow_open(); [all …]
|
/plugin/translationbuddy/ |
H A D | syntax.php | 80 function _showData(&$R, $data){ argument 137 $R->listu_open(); 139 $R->listitem_open(1); 143 $R->listitem_close(); 145 $R->listu_close(); 149 $R->doc .= '<table>'; 155 $R->doc .= '<tr>'; 159 $R->toc_additem('translationbuddy__'.$lc, $lc, $R->lastlevel+1); 203 $R->doc .= '<tr>'; 209 $R->doc .= '</tr>'; [all …]
|
/plugin/starred/ |
H A D | syntax.php | 50 $R->info['cache'] = false; 64 $R->doc .= '<p>'; 66 $R->p_close(); 68 $R->doc .= '</div>'; 72 $R->doc .= '<ul>'; 74 $R->listitem_open(1); 75 $R->listcontent_open(); 82 $R->listcontent_close(); 83 $R->listitem_close(); 85 $R->listu_close(); [all …]
|
/plugin/statdisplay/helper/ |
H A D | table.php | 17 private $R = null; variable in helper_plugin_statdisplay_table 20 * @param Doku_Renderer $R 28 $this->R = $R; 149 $this->R->table_open(); 188 $this->R->table_close(); 201 $this->R->table_open(); 279 $this->R->table_close(); 290 $this->R->table_open(); 370 $this->R->table_open(); 430 $this->R->cdata($data); [all …]
|
/plugin/abbrlist/ |
H A D | syntax.php | 115 $R->table_open(); 116 $R->tablethead_open(); 117 $R->tableheader_open(); 119 $R->tableheader_close(); 120 $R->tableheader_open(); 122 $R->tableheader_close(); 123 $R->tablethead_close(); 126 $R->tablerow_open(); 128 $R->doc .= $key; 131 $R->doc .= $val; [all …]
|
/plugin/dig/ |
H A D | syntax.php | 48 public function render($mode, Doku_Renderer $R, $data) 52 $R->table_open(); 53 $R->tablethead_open(); 54 $R->tablerow_open(); 55 $R->tableheader_open(); 56 $R->cdata($this->getLang('host')); 57 $R->tableheader_close(); 58 $R->tableheader_open(); 59 $R->cdata($this->getLang('ip')); 60 $R 46 render($mode, Doku_Renderer $R, $data) global() argument [all...] |
/plugin/strata/helper/ |
H A D | util.php | 161 * @param R the renderer 165 function renderPredicate($mode, &$R, &$T, $p) { argument 167 $this->renderField($mode, $R, $T, $p, $typename, $hint); 176 * @param R the renderer 183 function renderValue($mode, &$R, &$T, $value, $typename, $hint=null, &$type=null) { argument 188 $this->openValue($mode, $R, $typename); 189 $type->render($mode, $R, $T, $value, $hint); 190 $this->closeValue($mode, $R); 199 * @param R the renderer 208 function renderField($mode, &$R, argument 226 openField($mode, & $R, $field = null) global() argument 230 closeField($mode, & $R) global() argument 234 openValue($mode, & $R, $typename) global() argument 238 closeValue($mode, & $R) global() argument 242 renderCaptions($mode, & $R, $fields) global() argument [all...] |
/plugin/tabbox/ |
H A D | syntax.php | 128 * @param Doku_Renderer_xhtml $R 145 …$R->doc .= DOKU_LF . '<h' . $level . ' class="hl '. $R->startSectionEdit($pos, 'section', $name) … 147 $R->doc .= $R->_xmlEntities($name); 148 $R->doc .= "</h$level>" . DOKU_LF; 156 * @param Doku_Renderer_xhtml $R 160 $R->finishSectionEdit($pos); 161 $R->doc .= DOKU_LF.'</div>'.DOKU_LF; 168 * @param Doku_Renderer_xhtml $R 170 protected function _openBox(Doku_Renderer_xhtml $R) { argument 178 * @param Doku_Renderer_xhtml $R [all …]
|
/plugin/youtrack/ |
H A D | helper.php | 248 $R->table_open(count($cols)); 249 $R->tablethead_open(); 250 $R->tablerow_open(); 253 $R->cdata($col); 256 $R->tablerow_close(); 257 $R->tablethead_close(); 259 $R->tabletbody_open(); 263 $R->tablerow_open(); 273 $R->tablerow_close(); 277 $R->tabletbody_close(); [all …]
|
/plugin/davcard/syntax/ |
H A D | card.php | 99 function render($format, Doku_Renderer $R, $data) { argument 137 $R->doc .= sprintf($this->getLang('contact_not_found'), $srch); 143 $R->doc .= '<span class="plugin_davcard_popup vcard">'; 146 $R->doc .= '<span class="adr">'; 172 $R->doc .= '</span>'; 176 $R->doc .= '<span class="tel">'; 184 $R->doc .= hsc($dat['number']).'<br>'; 186 $R->doc .= '</span>'; 195 $R->doc .= '</span>'; 198 $R->doc .= '</span>'; [all …]
|
H A D | book.php | 124 function render($format, Doku_Renderer $R, $data) argument 195 $R->doc .= '<span class="adr">'; 221 $R->doc .= '</span>'; 223 $R->doc .= '</td><td>'; 226 $R->doc .= '<span class="tel">'; 236 $R->doc .= '</span>'; 238 $R->doc .= '</td><td>'; 246 $R->doc .= '</td></tr>'; 249 $R->doc .= '</table>'; 256 $R->doc .= '</select></div>'; [all …]
|
/plugin/changes/ |
H A D | syntax.php | 177 render($mode, Doku_Renderer $R, $data) global() argument 377 renderPageList($changes, & $R, $flags) global() argument 405 dayheader(& $R, $date) global() argument 424 renderSimpleList($changes, & $R, $flags = null) global() argument
|
/plugin/navi/ |
H A D | syntax.php | 75 $R->doc .= '</div>'; 95 $R = new \Doku_Renderer_xhtml(); 96 $this->render('xhtml', $R, [ 103 return $R->doc; 222 $R->listu_open(); 266 $R->listitem_close(); 271 $R->listu_open(); 277 $R->listcontent_open(); 284 $R->listcontent_close(); 287 $R->listitem_close(); [all …]
|
/plugin/blog/syntax/ |
H A D | autoarchive.php | 98 * @param object reference $R - the XHTML renderer 103 function _buildTimeChooser(&$R, &$entries, $now){ argument 120 $R->doc .= '<div class="autoarchive_selector">'; 122 $R->listu_open(); 123 $R->listitem_open(1); 124 $R->listcontent_open(); 125 $R->doc .= $y.'<span>:</span>'; 126 $R->listcontent_close(); 129 $R->listu_open(); 130 $R [all...] |
/plugin/struct/types/ |
H A D | Media.php | 46 * @param \Doku_Renderer $R the renderer currently used to render the data 50 public function renderValue($value, \Doku_Renderer $R, $mode) argument 57 if (!empty($R->info['struct_table_hash'])) { 64 if (is_a($R, '\Doku_Renderer_xhtml')) { 65 /** @var \Doku_Renderer_xhtml $R */ 66 $html = $R->internalmedia($value, null, null, $width, $height, null, 'direct', true); 68 $R->internalmedia($value, null, null, $width, $height, null, 'direct'); 70 } elseif (is_a($R, '\Doku_Renderer_xhtml')) { 71 /** @var \Doku_Renderer_xhtml $R */ 72 $html = $R 129 renderTagCloudLink($value, \\Doku_Renderer $R, $mode, $page, $filter, $weight) global() argument [all...] |
/plugin/unblink/ |
H A D | syntax.php | 45 function render($mode, Doku_Renderer $R, $data) { argument 51 $R->cdata($title?$title:$login); 60 $R->cdata($title?$title:$login); 80 $R->doc .= hsc($title); 82 $R->doc .= '<span class="unblink_popup" title="Visit Profile">'; 84 $R->doc .= '<b>'.hsc($uinfo['name']).'</b><br />'; 85 if($uinfo['name'] != $login) $R->doc .= '<i>'.hsc($login).'</i><br />'; 86 $R->doc .= '<br />'; 87 $R->doc .= hsc($uinfo['location']); 88 $R->doc .= '</span>'; [all …]
|
/plugin/structsection/ |
H A D | syntax.php | 84 public function render($mode, \Doku_Renderer $R, $handlerData) argument 113 $R->finishSectionEdit($pos - 1); 114 $R->doc .= self::XHTML_OPEN; 137 $R->header($field->getColumn()->getTranslatedLabel(), $lvl, $pos); 139 $R->section_open($lvl); 142 $R->doc = substr($R->doc, 0, -2) . ' ' . $structDataAttribute . '>' . "\n"; 144 $field->render($R, $mode); 145 $R->section_close(); 150 $R->finishSectionEdit($pos); 151 $R->doc .= self::XHTML_CLOSE; [all …]
|
/plugin/structautolink/_test/ |
H A D | RendererTest.php | 17 $R = new \renderer_plugin_structautolink(); 18 $R->setGlossary([ 26 $result = $R->findMatchingTokens($text); 53 $R = new \renderer_plugin_structautolink(); 54 $R->setGlossary([ 61 …$R->cdata('Was wir über Künstliche Intelligenz wissen, kann uns nur Machine Learning beantworten.'… 62 $R->cdata('Künstliche Intelligenz ist KI'); // should not be linked again 63 $R->cdata('dl ist egal.'); // lowercase != uppercase 64 $result = $R->doc;
|
/plugin/indexmenu2/cms/ |
H A D | cms.js | 15 …R){if(!isUndefined(i.loadedStylesheets[R]))return;q.appendChild(document.createElementExt('link',{… function
|