[docbook-apps] Missing toc levels in Javahelp

2010-03-02 Thread Michael Fuchs
Hello, I tried to generate some javahelp from the file docsrc/reference.xml.included from the DocBook XSL packages for usage with the dbdoclet gui. I run into a problem, because the generated navigation tree always ended at the part level. It never showed the reference level or anything deeper ne

Re: [docbook-apps] Forcing a chapter to start on new page (FO)

2010-03-02 Thread Jeffrey Trimble
Bob, Thanks. I tried it, but I got numerous FO errors. Here's some specifics that may be why I got the errors: Docbook.xml 4.5 FOP .94 In my pint.xsl style sheet I have the following reference: http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl "/> It seems to have been t

Re: [docbook-apps] Convert OpenDocument Presentation [.odp] to docbook

2010-03-02 Thread Mathieu Malaterre
On Wed, Feb 24, 2010 at 1:40 PM, Mathieu Malaterre wrote: > On Wed, Feb 24, 2010 at 1:19 PM, Markus Hoenicka > wrote: >> Mathieu Malaterre was heard to say: >> >>>  After reading the recent post about converting OpenOffice document >>> to docbook. I tried using OO to convert an old presentation

[docbook-apps] More on double-sided mystery error

2010-03-02 Thread Jeffrey Trimble
Here's the output when I attempt to transform my docbook into a PDF. This output error came up: WARNING: Mismatch: root (http://www.w3.org/1999/XSL/Format) vs. page- sequence (http://www.w3.org/1999/XSL/Format) Mar 2, 2010 8:55:57 AM org.apache.fop.fo.FOTreeBuilder fatalError SEVERE: javax.x

RE: [docbook-apps] Compile xsl with xalan

2010-03-02 Thread Mauritz Jeanson
| -Original Message- | From: Compagnon Christopher | | I try to compile a docbook xsl with xalan and XSLTC option | but it does not work. | | java -jar E:\Programmes\xalan-j_2_7_1\xalan.jar -XSLTC -XJ | bk2html.jar -XSL | E:\Programmes\docbook\docbook-xsl-1.75.0\xhtml-1_1\doc

Re: [docbook-apps] Compile xsl with xalan

2010-03-02 Thread Remko Tronçon
> XSLTC is known to have problems with DocBook-XSL. I have tried to make it > work, but without success. Same here. I don't know what the speedups of XSLTC tend to be, but if they're significant, that would be an interesting GSoC project (although maybe not for the DocBook project). cheers, Remko

Re: [docbook-apps] Compile xsl with xalan

2010-03-02 Thread Carlos Araya
Do you have to do Java? In my experience XSLTproc is consistently faster in converting a large XML file (150kb or larger) than a Java processor is (even with compiled style sheets) for all 3 of my use cases, single HTML file, HTML chunks and FO. It is available for Linux, Mac and Windows. If Jav

Re: [docbook-apps] Forcing a chapter to start on new page (FO)

2010-03-02 Thread Bob Stayton
Hi Jeff, I would suggest you download the stylesheets and change this reference to a local file path. Trying to run the stylesheets from a remote site is slow and subject to network glitches. Bob Stayton Sagehill Enterprises b...@sagehill.net - Original Message - From: Jeffrey Tr

Re: [docbook-apps] Footer odd/even page problem when chapters do not begin on an odd page

2010-03-02 Thread Bob Stayton
Hi, I'm not quite clear on this problem. You said: - My book has parts and my first part falls on an odd page (left). In my experience, odd pages are right-hand pages, so I don't understand what you mean here. I think you mean that your first part falls on a left-hand page, and you want it

Re: [docbook-apps] Compile xsl with xalan

2010-03-02 Thread Remko Tronçon
> Do you have to do Java? Unless you know of a free FO renderer written in another language, I most of the time eventually do. cheers, Remko - To unsubscribe, e-mail: docbook-apps-unsubscr...@lists.oasis-open.org For additional

Re: [docbook-apps] Compile xsl with xalan

2010-03-02 Thread Stefan Kost
Am 03.03.2010 09:15, schrieb Remko Tronçon: >> Do you have to do Java? > > Unless you know of a free FO renderer written in another language, I > most of the time eventually do. > > cheers, > Remko > If your target is pdf, I found dblatex superior to e.g. fop. Stefan --

Re: [docbook-apps] Compile xsl with xalan

2010-03-02 Thread Carlos Araya
There are 2 steps to producing PDF from Docbook XML. 1. Convert the XML to FO which can be done with any XSLT processor and that usually is the most time/resource intensive part. 2. Then you use FOP or any other FO processor to covert the FO file into PDF. While FOP allows you to do b