libreofficeドキュメントは、(とりわけ) いくつかの XML ファイルを含む zip ファイルです。
s$ unzip -t test.odp
Archive: test.odp
testing: mimetype OK
testing: Configurations2/statusbar/ OK
testing: Configurations2/accelerator/current.xml OK
testing: Configurations2/floater/ OK
testing: Configurations2/popupmenu/ OK
testing: Configurations2/progressbar/ OK
testing: Configurations2/menubar/ OK
testing: Configurations2/toolbar/ OK
testing: Configurations2/images/Bitmaps/ OK
testing: content.xml OK
testing: styles.xml OK
testing: meta.xml OK
testing: settings.xml OK
testing: META-INF/manifest.xml OK
No errors detected in compressed data of test.odp.
次のようなxml ファイルからXSLT (および xsltproc + 要素)を使用して ODP スライドショーを動的に生成したいと考えています。<xsl:document/>
<slideshow>
<slide>
<title>Slide 1</title>
<content>blablablablablablablabal</content>
</slide>
<!-- (....) --->
<slide>
<title>Slide N</title>
<content>blablablablablablablabal</content>
</slide>
</slidesho>
このための既存の XSLT スタイルシートはありますか?
ファイルcontent.xmlは複雑です。機能する odp、HelloWorld.odp の最小限のコンテンツは何でしょうか?