Home
last modified time | relevance | path

Searched refs:R (Results 26 – 50 of 501) sorted by relevance

12345678910>>...21

/plugin/diagramsnet/lib/img/lib/allied_telesis/computer_and_terminals/
H A DPersonal_Computer.svg1R{fill:#fefefe}.S{fill:#231f20}.T{fill:#626366}.U{fill:none}.V{stroke-linejoin:round}.W{stroke:#62…
/plugin/nslist/
H A Dsyntax.php82 function render($format, Doku_Renderer $R, $data) { argument
106 $R->listu_open();
108 $R->listitem_open(1);
109 $R->listcontent_open();
110 $R->internallink(':'.$item['id']);
111 if($data['date']) $R->cdata(' '.dformat($item['mtime']));
113 $R->listcontent_close();
114 $R->listitem_close();
116 $R->listu_close();
/plugin/structprogress/types/
H A DProgress.php57 public function renderValue($value, \Doku_Renderer $R, $mode) argument
66 …$R->doc .= '<div title="' . hsc($value) . '" class="struct_progress-background_' . hsc($this->co…
68 … $R->doc .= '<p>' . hsc($this->config['prefix'] . $value . $this->config['postfix']) . '</p>';
69 $R->doc .= '</div>';
70 $R->doc .= '</div>';
72 $R->cdata($value);
81 public function renderMultiValue($values, \Doku_Renderer $R, $mode) argument
84 $R->doc .= '<div title="Multi-Value" class="struct_progress-multi">';
86 $this->renderValue($value, $R, $mode);
88 $R->doc .= '</div>';
[all …]
/plugin/datatemplate/syntax/
H A Dlist.php110 function render($format, Doku_Renderer $R, $data) { argument
118 $this->dtc->removeMeta($R);
122 $R->info['cache'] = false;
129 return parent::render($format, $R, $data);
172 * @param Doku_Renderer_xhtml $R the dokuwiki renderer
190 $R->doc .= '<div class="datatemplatelist">';
193 $R->doc .= '</div>';
209 $R->doc .= "<div class=\"${data['classes']}\">";
259 $R->doc .= $text;
260 $R->doc .= '</div>';
[all …]
/plugin/pagehere/
H A Dsyntax.php41 public function render($mode, Doku_Renderer $R, $data) { argument
42 $R->info['cache'] = false;
50 $R->doc .= '<form class="plugin_pagehere" action="'.script().'" method="GET">';
51 $R->doc .= '<input name="id" type="hidden" value="'.hsc($ID).'" />';
52 $R->doc .= '<input name="pagehere" class="edit" type="text" id="page__here" />';
53 $R->doc .= '<input type="submit" value="'.$this->getLang('submit').'" class="btn" />';
54 $R->doc .= '</form>';
/plugin/sequencediagram/bower_components/raphael/dev/
H A Draphael.svg.js1 define(["./raphael.core"], function(R) { argument
2 if (R && !R.svg) {
15 eve = R.eve,
27 R.toString = function () {
77 var vector = [0, 0, math.cos(R.rad(angle)), math.sin(R.rad(angle))],
672 this.matrix = R.matrix();
715 elproto = R.el;
919 R._tear(this, paper);
1141 R._toback(this, this.paper);
1309 container = new R._Paper;
[all …]
H A Draphael.vml.js1 define(["./raphael.core"], function(R) { argument
2 if (R && !R.vml) {
16 eve = R.eve,
63 var m = R.matrix();
111 R.toString = function () {
427 this.id = R._oid++;
433 this.matrix = R.matrix();
450 var elproto = R.el;
927 R._engine.initWin(R._g.win);
939 var res = new R._Paper,
[all …]
H A Draphael.core.js57 return R._engine.create[apply](R, first.splice(0, 3 + R.is(first[0], nu))).add(first);
63 f.call(R._engine.create[apply](R, args));
66 return R._engine.create[apply](R, arguments);
71 R.eve = eve;
312 R._g = g;
343 R.svg = !(R.vml = R.type == "VML");
371 R.fn = paperproto = Paper.prototype = R.prototype;
372 R._id = 0;
946 }, R);
3373 var out = R._engine.path(R.format[apply](R, arguments), this);
[all …]
/plugin/do/syntax/
H A Ddo.php183 public function render($mode, Doku_Renderer $R, $data) argument
208 $R->info['cache'] = false;
212 $R->externalmedia(DOKU_URL . "lib/plugins/do/pix/${pre}done.png");
217 $R->cdata(' (' . $data['task']['msg'] . ')');
246 $R->doc .= '</span>'
252 $R->doc .= ' <span class="plugin_do_meta">(';
254 $R->doc .= $this->getLang('user');
261 $R->doc .= ', ';
265 $R->doc .= '. ';
271 $R->doc .= ')</span>';
[all …]
H A Ddolist.php94 * @param Doku_Renderer $R reference to the current renderer object
99 public function render($mode, Doku_Renderer $R, $data) argument
104 $R->info['cache'] = false;
111 $R->tablerow_open();
112 $R->tablecell_open(6, 'center');
113 $R->cdata($this->getLang('none'));
114 $R->tablecell_close();
115 $R->tablerow_close();
116 $R->doc .= '</table>';
120 $R->doc .= $this->buildTasklistHTML($tasks, isset($data['user']), isset($data['creator']));
/plugin/semanticdata/syntax/
H A Dtable.php178 $R->info['cache'] = false;
200 $R->doc .= $this->before_item;
202 $R->doc .= $this->before_val;
207 $R->doc .= $this->after_val;
209 $R->doc .= $this->after_item;
214 $this->nullList($data, $clist, $R);
266 $R->tablerow_open();
268 $R->cdata($this->getLang('none'));
269 $R->tablecell_close();
270 $R->tablerow_close();
[all …]
/plugin/struct/types/
H A DColor.php34 public function renderValue($value, \Doku_Renderer $R, $mode) argument
37 $R->doc .= '<div title="' . hsc($value) . '" style="background-color:' . hsc($value) . ';"
40 $R->cdata($value);
49 public function renderMultiValue($values, \Doku_Renderer $R, $mode) argument
53 $this->renderValue($value, $R, $mode);
56 $R->cdata(implode(', ', $values));
85 public function renderTagCloudLink($value, \Doku_Renderer $R, $mode, $page, $filter, $weight, $showCount = null) argument
91 $R->doc .= "<a class='struct_color_tagcloud' href='$url' style='$style'>
96 $R->internallink("$page?$filter", $color);
/plugin/aclinfo/
H A Dsyntax.php59 function render($format, Doku_Renderer $R, $data) { argument
70 $R->listu_open();
72 $R->listitem_open(1);
73 $R->listcontent_open();
74 $R->cdata(sprintf($this->getLang('perm'.$p), urldecode($who)));
75 $R->listcontent_close();
76 $R->listitem_close();
78 $R->listu_close();
/plugin/photogallery/
H A Dsyntax.php314 $this->_poster($files,$data,$R);
317 $this->_poster($files,$data,$R);
322 $R->doc .= '</div>'.DOKU_LF;
581 $R->doc .= '</div>'.DOKU_LF;
582 $R->doc .= '</a>'.DOKU_LF;
593 $R->doc .= '});'.DOKU_LF;
599 $R->doc .= '</div>'.DOKU_LF;
621 $R->doc .= '<p>';
625 $R->doc .= $info;
629 $R->doc .= '</p>';
[all …]
/plugin/chessdiagram/
H A Dsyntax.php139 case 'R':
221 'R' => '<img src="'
259 'R' => (strpos($params, 'R') !== false));
271 if ($border['R'])
315 if ($border['R'])
316 $xhtml .= $table_xhtml['R'];
326 if ($border['R'])
/plugin/callflow/
H A Draphael.js455 return R._engine.create[apply](R, first.splice(0, 3 + R.is(first[0], nu))).add(first);
461 f.call(R._engine.create[apply](R, args));
464 return R._engine.create[apply](R, arguments);
708 R._g = g;
739 R.svg = !(R.vml = R.type == "VML");
767 R.fn = paperproto = Paper.prototype = R.prototype;
768 R._id = 0;
769 R._oid = 0;
1343 }, R);
3748 var out = R._engine.path(R.format[apply](R, arguments), this);
[all …]
/plugin/advrack/
H A Draphael.js455 return R._engine.create[apply](R, first.splice(0, 3 + R.is(first[0], nu))).add(first);
461 f.call(R._engine.create[apply](R, args));
464 return R._engine.create[apply](R, arguments);
708 R._g = g;
739 R.svg = !(R.vml = R.type == "VML");
767 R.fn = paperproto = Paper.prototype = R.prototype;
768 R._id = 0;
769 R._oid = 0;
1343 }, R);
3748 var out = R._engine.path(R.format[apply](R, arguments), this);
[all …]
/plugin/scrape/
H A Dsyntax.php72 public function render($mode, Doku_Renderer $R, $data)
79 $data['url'] = $R->_resolveInterWiki($iw, $ref);
85 $R->doc .= 'This URL is not allowed for scraping';
94 $R->doc .= 'Failed to load remote ressource';
106 $R->externalmedia($data['url'], $data['title']);
114 $R->doc .= $this->cleanHTML($data, $resp);
119 $R->preformatted($resp);
122 $R->doc .= 'Failed to handle mime type ' . hsc($mime);
65 render($mode, Doku_Renderer $R, $data) global() argument
123 display_html($data, $resp, & $R) global() argument
/plugin/strata/syntax/
H A Dselect.php277 * @param R the renderer
280 function render($mode, Doku_Renderer $R, $data) {
290 * @param R the renderer
294 function ui_container_open($mode, &$R, $data, $additionalClasses=array()) {
326 $R->doc .= '<div class="' . $classes . '" ' . $properties . '>' . DOKU_LF;
329 function ui_container_close($mode, &$R) {
332 $R->doc .= '</div>' . DOKU_LF;
335 protected function displayError($mode, &$R, $data) {
339 $R->doc .= '<div class="strata-debug-message '.$style.'">';
340 $R
278 render($mode, Doku_Renderer $R, $data) global() argument
292 ui_container_open($mode, & $R, $data, $additionalClasses = array()) global() argument
327 ui_container_close($mode, & $R) global() argument
333 displayError($mode, & $R, $data) global() argument
[all...]
/plugin/seqdia/
H A Dsyntax.php101 function render($format, &$R, $data) { argument
104 $R->doc .= '<img src="'.$img.'" class="media'.$data['align'].'" alt=""';
105 if($data['width']) $R->doc .= ' width="'.$data['width'].'"';
106 if($data['height']) $R->doc .= ' height="'.$data['height'].'"';
107 if($data['align'] == 'right') $R->doc .= ' align="right"';
108 if($data['align'] == 'left') $R->doc .= ' align="left"';
109 $R->doc .= '/>';
113 $R->_odtAddImage($src,$data['width'],$data['height'],$data['align']);
/plugin/davcal/syntax/
H A Dcalendar.php176 function render($format, Doku_Renderer $R, $data) { argument
184 …$R->doc .= '<div id="fullCalendarTimezoneWarning">'.sprintf($this->getLang('this_calendar_uses_tim…
185 $R->doc .= '<div id="fullCalendar" data-calendarpage="'.$ID.'"></div>';
186 …$R->doc .= '<div id="fullCalendarTimezoneList" class="fullCalendarTimezoneList" style="display:non…
187 $R->doc .= '<select id="fullCalendarTimezoneDropdown">';
188 $R->doc .= '<option value="local">'.$this->getLang('local_time').'</option>';
191 $R->doc .= '<option value="'.$tz.'">'.$tz.'</option>';
193 $R->doc .= '</select></div>';
196 …$R->doc .= '<div class="fullCalendarSettings"><a href="#" class="fullCalendarSettings"><img src="'…
/plugin/data-au/syntax/
H A Dlist.php74 * @param Doku_Renderer $R
76 function nullList($dataau, $clist, $R) { argument
77 …$R->doc .= '<div class="dataaggregation"><p class="dataauplugin_list ' . $dataau['classes'] . '">';
78 $R->cdata($this->getLang('none'));
79 $R->doc .= '</p></div>';
H A Dtable.php248 $R->info['cache'] = false;
293 $R->doc .= $this->before_item;
297 $R->doc .= $rownum + 1;
307 $cval, $R
326 $R->doc .= $this->after_item;
470 * @param Doku_Renderer $R
474 $R->tablerow_open();
476 $R->cdata($this->getLang('none'));
477 $R->tablecell_close();
478 $R->tablerow_close();
[all …]
/plugin/data/syntax/
H A Dlist.php77 * @param Doku_Renderer $R
79 public function nullList($data, $clist, $R)
81 $R->doc .= '<div class="dataaggregation"><p class="dataplugin_list ' . $data['classes'] . '">';
82 $R->cdata($this->getLang('none'));
83 $R->doc .= '</p></div>';
74 nullList($data, $clist, $R) global() argument
/plugin/todo/syntax/
H A Dlist.php355 private function htmlShort($R, $todopages, $data) { argument
367 $R->cdata("($done/$todo)");
373 * @param Doku_Renderer_xhtml $R
377 private function htmlTodoTable($R, $todopages, $data) { argument
379 $R->table_open();
382 $R->tablerow_open();
383 $R->tableheader_open();
384 $R->internallink(':'.$page['id'], ($data['header']=='firstheader' ? p_get_first_heading($page['id']) : $page['id']));
385 $R->tableheader_close();
386 $R
[all...]

12345678910>>...21