0 byte index.html on chunked docbook output
Posted: Sun Apr 03, 2005 8:31 pm
Hi,
i have a weird problem over here. I have the xml below to generate my documentation. If i am creating PDFs, everything is fine, my Xincludes seem to be resolved and voila.
If i am transforming to chunked HTML with the default chunk.xsl supplied with docbook. Everything is created correctly, but not my main index.html, this main file is 0 bytes. All the other chapter HTMLs are correct.
I tried several XSLT tranformators in the Oxygen Settings without any difference.
Thanks for any info on this.
i have a weird problem over here. I have the xml below to generate my documentation. If i am creating PDFs, everything is fine, my Xincludes seem to be resolved and voila.
If i am transforming to chunked HTML with the default chunk.xsl supplied with docbook. Everything is created correctly, but not my main index.html, this main file is 0 bytes. All the other chapter HTMLs are correct.
I tried several XSLT tranformators in the Oxygen Settings without any difference.
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.docbook.org/xml/4.3/docbookx.dtd" [
<!ENTITY % xinclude SYSTEM "file:/C:/Programme/Oxygen%205.1/frameworks/docbook/dtd/xinclude.mod">
<!ENTITY preface "preface.xml">
<!ENTITY intro "chap_intro.xml">
<!ENTITY installation "chap_installation.xml">
%xinclude;
]>
<book lang="de">
<title>VersysNG - Benutzerhandbuch</title>
<subtitle>Versandsystem </subtitle>
<bookinfo>
<author>
<affiliation>
<orgname>Logentis e.K.</orgname>
</affiliation>
</author>
<edition>0.1</edition>
<copyright>
<year>2005</year>
<holder>Logentis e.K.</holder>
</copyright>
</bookinfo>
<xi:include href="&preface;" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<xi:include href="&intro;" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<xi:include href="&installation;" xmlns:xi="http://www.w3.org/2001/XInclude"/>
</book>