Home
last modified time | relevance | path

Searched +full:toc +(+path:plugin +path:siteexport) -(+path:plugin +path:siteexport +path:lang) (Results 1 – 13 of 13) sorted by relevance

/plugin/siteexport/inc/
H A Djavahelp.php4 require_once(DOKU_PLUGIN . 'siteexport/inc/toc.php');
13 private $tocName = 'toc.xml';
35 $toc = new siteexport_toc($this->functions, $this->NS);
36 $toc->debug("### Starting to create TOC Files ###");
53 $toc->debug($lang . " -> " . $data[$i]['id'] );
74 $toc->translation = &$this->translation;
77 $toc->translation = null;
86 // Create toc and map for each lang
104 $toc->debug("THE END", true);
136 <name>TOC</name>
[all …]
H A Dtoc.php66 * Build the Java Documentation TOC XML
142 $this->debug("#### Writing TOC Tree ####");
144 $this->debug("#### DONE: Writing TOC Tree ####");
155 * Prepare the TOC Tree
182 * Create a single TOC Item
186 $this->debug("creating toc item");
197 * Create a single TOC Item
205 * Write the whole TOC TREE
260 * Build the Eclipse Documentation TOC XML
286 * Load the topic Tree for the TOC - recursive
[all …]
H A Dfilewriter.php30 * Wrapper for fetching the Context or the TOC for Eclipse Documentation
33 public function __moveDataToZip($DATA, $FILENAME = 'toc.xml', $ZIP = null, $JUSTWRITE = false) {
H A Dmpdf.php119 Only when the toc is being generated
/plugin/siteexport/
H A DREADME.md90 Exports the pages into PDF files, one per page. There are options ([TOC](#table-of-contents-definit…
105 #### Use TOC file in Namespace
106 …to be structured like your DokuWiki is, you can create a file called <code>toc</code> in the names…
139 …to be structured like your DokuWiki is, you can create a file called <code>toc</code> in the names…
146 &lt;toc&gt;
153 &lt;/toc&gt;
156 The &lt;toc&gt; tag support several options:
160 notoc | hide the user defined TOC in the document
162 merge | this will merge all the defined documents from the TOC into the current document.
167 You have to define the options like this: <code>&lt;toc notoc merge&gt;</code>
[all …]
/plugin/siteexport/action/
H A Daggregate.php87 // Generate a TOC that can be exported
88 $TOC = "<toc merge mergeheader";
92 $TOC .= " mergehint";
95 $TOC .= ">\n";
101 $TOC .= " * [[{$id}|{$title}]]\n";
104 $TOC .= "</toc>";
111 $ID = (string) cleanID($originalID . '-toc-' . implode('-', array_filter($thema)));
117 if (empty($TOC)) { return true; }
123 $html = p_render($renderer, p_get_instructions($TOC), $INFO);
H A Dmove.php28 * Handle rewrites for the move plugin. Currently only the link/toc syntax is handled.
H A Dajax.php24 require_once(DOKU_PLUGIN . 'siteexport/inc/toc.php');
391 // Check, which TOC to take
399 // Create Data of the TOC File should be used instead
400 $opts['query'] = 'toc.txt';
444 // Create Eclipse Documentation Pages - TOC.xml, Context.xml
450 $toc = new siteexport_toc($this->functions, $NS);
452 $this->filewriter->__moveDataToZip($toc->__getTOCXML($data), 'toc.xml');
457 $toc->createTOCFiles($data);
459 /* $toc = new siteexport_toc($this->functions);
460 list($tocData, $mapData) = $toc->__getJavaHelpTOCXML($data);
[all …]
/plugin/siteexport/renderer/
H A Dpdf.php38 'toc' => true, // render the TOC?
51 global $TOC, $ID, $INFO;
58 // $TOC = $this->toc = $newMeta; // 2010-08-23 doubled the TOC
59 $TOC = $newMeta;
67 // Prepare the TOC
68 global $TOC, $ID;
73 $TOC = $this->toc = array();
74 $meta['internal']['toc'] = false;
79 $TOC = $this->toc;
82 $meta['internal']['toc'] = true;
[all …]
/plugin/siteexport/syntax/
H A Dsiteexport.php44 $renderer->info['toc'] = false;
H A Dtoc.php36 $this->Lexer->addEntryPattern('<toc>(?=.*?</toc>)', $mode, 'plugin_siteexport_toc');
37 $this->Lexer->addEntryPattern('<toc .+?>(?=.*?</toc>)', $mode, 'plugin_siteexport_toc');
128 // TOC Title
147 $renderer->header($lang['toc'], 1, $data['pos']);
156 // Close TOC
167 if (is_array($toc)) {
168 foreach ($toc as $tocItem) {
288 * pull apart the ID and create an Entry for the TOC
332 //renderer information(TOC build / Cache used)
336 //Remove TOC`s, section edit buttons and tags
[all …]
H A Daggregate.php73 $renderer->info['toc'] = false;
/plugin/siteexport/_test/
H A Dplugin_siteexport_move.test.php19 saveWikiText('pagetomove', '<toc>
24 </toc>', 'testcase created');
27 $this->assertEquals('<toc>
32 </toc>',rawWiki('test:movedpage'));