Lines Matching refs:this

80         $this->base = DOKU_BASE.'lib/plugins/revealjs/';
81 $this->doc = '<!DOCTYPE html>
93 <link rel="stylesheet" href="'.$this->base.'css/reveal.css">
94 … <link rel="stylesheet" href="'.$this->base.'css/theme/'.$this->getConf('theme').'.css" id="theme">
95 <link rel="stylesheet" href="'.$this->base.'doku-substitutes.css">
98 <link rel="stylesheet" href="'.$this->base.'lib/css/zenburn.css">
100 ' . ($this->getConf('show_image_borders') ?
110 …= window.location.search.match( /print-pdf/gi ) ? \''.$this->base.'css/print/pdf.css\' : \''.$this
115 <script src='.$this->base.'"lib/js/html5shiv.js"></script>
134 $this->doc = preg_replace('#<p>\s*</p>#','',$this->doc);
137 $this->doc = preg_replace('/<blockquote>&ldquo;\s*/u','<blockquote>&ldquo;',$this->doc);
140 $this->close_slide_container();
142 $show_controls = $this->getConf('controls') ? 'true' : 'false';
143 $show_progress_bar = $this->getConf('show_progress_bar') ? 'true' : 'false';
144 $size = explode("x", $this->getConf('size'));
145 $auto_slide = $this->getConf('auto_slide');
146 $loop = $this->getConf('loop') ? 'true' : 'false';
147 $this->doc .= '
153 <script src="'.$this->base.'lib/js/head.min.js"></script>
154 <script src="'.$this->base.'js/reveal.js"></script>
165 transition: \''.$this->getConf('transition').'\', // none/fade/slide/convex/concave/zoom
171 …{ src: \''.$this->base.'lib/js/classList.js\', condition: function() { return !document.body.class…
172 …{ src: \''.$this->base.'plugin/markdown/marked.js\', condition: function() { return !!document.que…
173 …{ src: \''.$this->base.'plugin/markdown/markdown.js\', condition: function() { return !!document.q…
174 …{ src: \''.$this->base.'plugin/highlight/highlight.js\', async: true, condition: function() { retu…
175 …{ src: \''.$this->base.'plugin/zoom-js/zoom.js\', async: true, condition: function() { return !!do…
176 …{ src: \''.$this->base.'plugin/notes/notes.js\', async: true, condition: function() { return !!doc…
178 { src: \''.$this->base.'plugin/math/math.js\', async: true }
190 $this->close_slide_container();
191 $this->doc .= '<section>'.DOKU_LF;
192 $this->column_open = true;
199 $this->close_slide();
200 $this->doc .= ' <section';
201 if ($this->next_slide_background_color) {
202 $this->doc .= ' data-background-color="'.$this->next_slide_background_color.'"';
203 $this->next_slide_background_color = '';
205 if ($this->next_slide_background_image) {
206 $this->doc .= ' data-background-image="'.$this->next_slide_background_image.'"';
207 $this->next_slide_background_image = '';
209 if ($this->next_slide_background_size) {
210 $this->doc .= ' data-background-size="'.$this->next_slide_background_size.'"';
211 $this->next_slide_background_size = '';
213 if ($this->next_slide_background_position) {
214 $this->doc .= ' data-background-position="'.$this->next_slide_background_position.'"';
215 $this->next_slide_background_position = '';
218 if ($this->next_slide_background_repeat) {
219 $this->doc .= ' data-background-repeat="'.$this->next_slide_background_repeat.'"';
220 $this->next_slide_background_repeat = '';
222 if ($this->next_slide_background_transition) {
223 … $this->doc .= ' data-background-transition="'.$this->next_slide_background_transition.'"';
224 $this->next_slide_background_transition = '';
226 if ($this->next_slide_transition) {
227 $this->doc .= ' data-transition="'.$this->next_slide_transition.'"';
228 $this->next_slide_transition = '';
230 if ($this->next_slide_transition_speed) {
231 $this->doc .= ' data-transition-speed="'.$this->next_slide_transition_speed.'"';
232 $this->next_slide_transition_speed = '';
234 if ($this->next_slide_no_footer) {
235 $this->doc .= ' data-state="no-footer"';
236 $this->next_slide_no_footer = false;
238 $this->doc .= '>'.DOKU_LF;
241 $this->slide_open = true;
248 $this->close_slide();
249 if ($this->column_open) {
250 $this->doc .= '</section>'.DOKU_LF;
251 $this->column_open = false;
259 if ($this->slide_open) {
260 $this->doc .= ' </section>'.DOKU_LF;
261 $this->slide_open = false;
276 $footnote = $this->doc;
277 $this->doc = $this->store;
278 $this->store = '';
285 $this->doc .= $this->_xmlEntities($acronym);
297 $this->_counter['row_counter'] = 0;
307 $class .= ' '.$this->startSectionEdit($pos, $sectionEditStartData);
309 $this->doc .= '<table class="doku_revealjs_table">'.
319 $this->doc .= '</table>'.DOKU_LF;
326 $this->doc .= DOKU_TAB.'<thead>'.DOKU_LF;
333 $this->doc .= DOKU_TAB.'</thead>'.DOKU_LF;
340 $this->doc .= DOKU_TAB.'<tr>'.DOKU_LF.DOKU_TAB.DOKU_TAB;
347 $this->doc .= DOKU_LF.DOKU_TAB.'</tr>'.DOKU_LF;
358 $class = 'class="col'.$this->_counter['cell_counter']++;
363 $this->doc .= '<th ';
365 $this->_counter['cell_counter'] += $colspan - 1;
366 $this->doc .= ' colspan="'.$colspan.'"';
369 $this->doc .= ' rowspan="'.$rowspan.'"';
371 $this->doc .= '>';
378 $this->doc .= '</th>';
389 $class = 'class="col'.$this->_counter['cell_counter']++;
394 $this->doc .= '<td ';
396 $this->_counter['cell_counter'] += $colspan - 1;
397 $this->doc .= ' colspan="'.$colspan.'"';
400 $this->doc .= ' rowspan="'.$rowspan.'"';
402 $this->doc .= '>';
409 $this->doc .= '</td>';
422 if( !$this->notes_open
423 && !$this->no_fragment_list_open
424 && ($this->getConf('build_all_lists') || $this->fragment_list_open) ) {
425 …$this->doc .= '<li class="fragment' . ($this->fragment_style ? ' '.$this->fragment_style : '') . '…
428 $this->doc .= '<li>';
437 if (!$this->quote_open) {
438 $this->doc .= '<blockquote>&ldquo;';
439 $this->quote_open = true;
447 if ($this->quote_open) {
448 $this->doc .= '&rdquo;</blockquote>'.DOKU_LF;
449 $this->quote_open = false;
474 $this->doc .= '<dl class="'.$type.'">'.DOKU_LF;
475 …$this->doc .= '<dt><a href="'.exportlink($ID, 'code', array('codeblock' => $this->_codeblock)).'" …
476 $this->doc .= hsc($filename);
477 $this->doc .= '</a></dt>'.DOKU_LF.'<dd>';
489 $this->doc .= '<pre><code>'.$this->_xmlEntities($text).'</code></pre>'.DOKU_LF;
492 …$this->doc .= '<pre><code class="'.$language.'">'.$this->_xmlEntities($text).'</code></pre>'.DOKU_…
496 $this->doc .= '</dd></dl>'.DOKU_LF;
499 $this->_codeblock++;