Home
last modified time | relevance | path

Searched refs:docx (Results 1 – 25 of 36) sorted by relevance

12

/plugin/wordimport/docx/
DDocument.php3 namespace dokuwiki\plugin\wordimport\docx;
20 $xml = $this->docx->loadXMLFile('/word/document.xml');
58 return new Table($this->docx, $p);
63 … if (in_array($match[0]->attributes('w', true)->ascii, $this->docx->getConf('codefonts'))) {
64 return new CodeBlock($this->docx, $p);
69 …if ($this->docx->getStyles()->hasStyle($p, ['heading 1', 'heading 2', 'heading 3', 'heading 4', 'h…
70 return new Heading($this->docx, $p);
74 if ($this->docx->getStyles()->hasStyle($p, ['list paragraph'])) {
75 return new ListItem($this->docx, $p);
80 return new Image($this->docx, $p);
[all …]
DAbstractParagraph.php3 namespace dokuwiki\plugin\wordimport\docx;
11 protected $docx; variable in dokuwiki\\plugin\\wordimport\\docx\\AbstractParagraph
16 * @param DocX $docx The main docx object for accessing shared data
19 public function __construct(DocX $docx, \SimpleXMLElement $p) argument
21 $this->docx = $docx;
DAbstractXMLFile.php3 namespace dokuwiki\plugin\wordimport\docx;
12 protected $docx; variable in dokuwiki\\plugin\\wordimport\\docx\\AbstractXMLFile
15 * @param DocX $docx The DocX object to work on
17 public function __construct(DocX $docx) argument
19 $this->docx = $docx;
DTextRun.php3 namespace dokuwiki\plugin\wordimport\docx;
26 protected $docx; variable in dokuwiki\\plugin\\wordimport\\docx\\TextRun
32 public function __construct(Docx $docx, \SimpleXMLElement $tr, $newline = '\\\\ ') argument
34 $this->docx = $docx;
104 … if (in_array($child->attributes('w', true)->ascii, $this->docx->getConf('codefonts'))) {
DImage.php3 namespace dokuwiki\plugin\wordimport\docx;
39 $src = $this->docx->getRelationships()->getTarget('image', $this->rId);
40 $src = $this->docx->getFilePath($src);
49 $pageid = $this->docx->getPageId();
DDocX.php3 namespace dokuwiki\plugin\wordimport\docx;
33 * @param string $docx path to the DOCX file
36 public function __construct(string $docx, array $config) argument
39 $zip->open($docx);
DNumbering.php3 namespace dokuwiki\plugin\wordimport\docx;
22 $xml = $this->docx->loadXMLFile($this->docx->getRelationships()->getTarget('numbering'));
DCodeBlock.php3 namespace dokuwiki\plugin\wordimport\docx;
22 $tr = new TextRun($this->docx, $run, "\n"); // use real line breaks
DTable.php3 namespace dokuwiki\plugin\wordimport\docx;
24 $cell = new TableCell($this->docx, $cell);
DHeading.php3 namespace dokuwiki\plugin\wordimport\docx;
28 …$this->level = substr($this->docx->getStyles()->getStyleName($styleID), -1); // translates to "he…
DListItem.php3 namespace dokuwiki\plugin\wordimport\docx;
26 $this->type = $this->docx->getNumbering()->getType($id, $this->level);
DRelationships.php3 namespace dokuwiki\plugin\wordimport\docx;
20 $xml = $this->docx->loadXMLFile('word/_rels/document.xml.rels');
DTableCell.php3 namespace dokuwiki\plugin\wordimport\docx;
36 $p = new Paragraph($this->docx, $paragraph);
DStyles.php3 namespace dokuwiki\plugin\wordimport\docx;
20 $xml = $this->docx->loadXMLFile('word/styles.xml');
DParagraph.php3 namespace dokuwiki\plugin\wordimport\docx;
32 $textRun = new TextRun($this->docx, $tr);
/plugin/wordimport/
Dcli.php4 use dokuwiki\plugin\wordimport\docx\DocX;
35 [$docx, $page] = $options->getArgs();
36 $doc = new DocX($docx, $this->conf);
/plugin/wordimport/action/
Dui.php8 use dokuwiki\plugin\wordimport\docx\DocX;
85 $docx = new DocX($file, $this->conf);
86 $docx->import($page);
/plugin/file2dw/
Dplugin.info.txt6 desc Import from file (docx, odt, pdf...) to dokuwiki
/plugin/odtplus2dw/
DREADME.md11 …rom odt2dw to add doc/docx support). This plugin lets you import a document into Dokuwiki. It supp…
62 - Added doc/docx support.
/plugin/latexit/tests/dw_orig_test_files/
Dtest9.txt12 {{:test:ebec_2014_tz_kdo_se_stane_nejschopnejsim_technikem_na_cvut-.docx|}}
/plugin/fckg/fckeditor/editor/css/images/fileicons/
Dicon_files.txt11 docx.png
Ddir.txt11 docx.png
Dicons.txt113 background-image: url(images/fileicons/docx.png);
/plugin/elasticsearch/lang/en/
Dconfmanager_description.txt11 docx http://givemetext.okfnlabs.org/tika/rmeta
/plugin/elasticsearch/conf/
Delasticsearch.conf.example13 docx http://givemetext.okfnlabs.org/tika/rmeta

12