Hi, I have solved my problem.
I wanted to use multiple XML files for the documentation instead of writing a big manual.xml file. I wanted to break up the file into chapters like chapter1.xml, so on and so forth. I tried with xi:include stuff and failed. Today I stunbled upon the jboss maven plugin for docbook and saw they have used ENTITY defication for mutiple file inclusion and tried it with DBF also, and it worked What I did: I defined an ENTITY like follows: <!ENTITY chapter1 SYSTEM "chapter1.xml" > in the main DOCTYPE defination and included the entity in the document like: &chapter1; where I wanted the chapter to be inserted and this worked. I am happy. Thanks to all who read my mails and replied patiently. with regards Tushar On Wed, Aug 20, 2008 at 12:22 PM, Will Glass-Husain <[EMAIL PROTECTED]>wrote: > Hi Tushar, > > I don't have a good answer for the xi:include issue. Do appreciate the > detailed discussion of your dilemma. Henning is our DBF maven, let's see > if > he's around to chime in. > > We would certainly welcome any patches or contributions you wanted to make > on this. > > Best, WILL > > On Mon, Aug 18, 2008 at 1:49 PM, Tushar Joshi <[EMAIL PROTECTED] > >wrote: > > > Hi Michael, > > > > > > 1. My primary objective was to use the velocity docbook framework for > > generating documentation in HTML and PDF using multiple XML files. > >
