DOCBOOK-APPS: Jade MIF builds

2002-05-02 Thread Andrew Westcombe
Toolchain: SGML DocBook 3.1/Jade/DSSSL At the moment, we create our printed output by building RTF files as per the above toolchain, and formatting in MSWord. Unfortunately, MSWord misbehaves very badly with very long (200 pg) documents, refusing to recognise images. I've found that

DOCBOOK-APPS: prohibit to chunk

2002-05-02 Thread Szarvas Zoltn
Hi Can somebody help me about, how can I prohibit to chunk some sections of my doc. I use xsl stylesheet 1.50EXP Thanks Szazo

DOCBOOK-APPS: Removing the box for notes for PDF

2002-05-02 Thread Christopher J. Graham
How can I remove the box in the notes section? Ever better, is there a way to move the note to be in the margin area? I am using DSSSL. Thanks in advance. Christopher Graham [EMAIL PROTECTED] PGP Fingerprint: F765 CCB5

RE: DOCBOOK-APPS: prohibit to chunk

2002-05-02 Thread David Cramer
Not sure if this is what you need, but with parameters, you can control the depth of chunking: http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.sectio n.depth.html and whether the first section chunks: http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.first.

DOCBOOK-APPS: Keeping entities in a transformation

2002-05-02 Thread Jeff Beal
Im working an an XSL script to clean up my DocBook XML. Im running into problems because all of the entities are declared in a top-level driver file, and the content resides in about 3,000 external entities, which do not include DOCTYPE declarations. I need to maintain our current file

DOCBOOK-APPS: FOP images formats

2002-05-02 Thread O'Donnell, Vincent
I used xalan, FOP (both from apache) and the docbook stylesheet to turn my docbook XML into pdf. This seemed to work fine. I really want to have images in my final pdf which are composed of a photo with text callouts. If possible I would like the callouts and text to be scalable objects rather

RE: DOCBOOK-APPS: Keeping entities in a transformation

2002-05-02 Thread David Cramer
I've always wanted to know if there's a right way to do that myself. I've resorted to using sed to obfuscate the entities before processing, then unobfuscating them afterwards. For each file, sed "s/\(\w*\.*\w*\);/%%\1%%/g" $file $file.tmp1.xml the run the xsl on the file, then sed

Re: DOCBOOK-APPS: Keeping entities in a transformation

2002-05-02 Thread Camille Bégnis
Hi Jeff, Jeff Beal wrote: I?m working an an XSL script to clean up my DocBook XML. I?m running into problems because all of the entities are declared in a top-level driver file, and the content resides in about 3,000 external entities, which do not include DOCTYPE declarations. I need

Re: DOCBOOK-APPS: Keeping entities in a transformation

2002-05-02 Thread Dave Pawson
At 11:47 02/05/2002 -0400, Jeff Beal wrote: I m working an an XSL script to clean up my DocBook XML. I m running into problems because all of the entities are declared in a top-level driver file, and the content resides in about 3,000 external entities, which do not include DOCTYPE

RE: DOCBOOK-APPS: Keeping entities in a transformation

2002-05-02 Thread Dave Pawson
At 11:16 02/05/2002 -0500, David Cramer wrote: urn:schemas-microsoft-com:office:office xmlns:w = urn:schemas-microsoft-com:office:word I've always wanted to know if there's a right way to do that myself. I've resorted to using sed to obfuscate the entities before processing, then unobfuscating

RE: DOCBOOK-APPS: FOP images formats

2002-05-02 Thread Rankine, Alastair J (Alastair)
The only vector graphics format supported by FOP is SVG. I don't have any specific recommendations for you, but you may find the following somewhat helpful (with an emphasis on Visio-produced graphics): http://sources.redhat.com/ml/docbook-apps/2002-q2/msg00082.html HTH.

FW: DOCBOOK-APPS: FOP images formats

2002-05-02 Thread Jeff Beal
Oops - hit 'Reply' Jeff Beal Ansys, Inc. (724)514-3150 [EMAIL PROTECTED] -Original Message- From: Jeff Beal Sent: Thursday, May 02, 2002 1:16 PM To: 'O'Donnell, Vincent' Subject: RE: DOCBOOK-APPS: FOP images formats The only vector graphic format FOP supports is SVG. Mayura Draw is a

DOCBOOK-APPS: ant, resolver and catalogs

2002-05-02 Thread Dave Pawson
I've posted a new page, describing ant and . I'd appreciate comments/improvements from 'seasoned' resolver class users if you have the time please. http://www.dpawson.co.uk/docbook/ant.html TIA, DaveP

DOCBOOK-APPS: RE: Need TOC Example Best Method for Rendering html/pdf

2002-05-02 Thread STEWARD, Curtis (Jamestown)
Title: RE: Need TOC Example Best Method for Rendering html/pdf Docbook html and fo XSL stylesheets with fop is the methodology I'm using. Below is bare-bones example out of many scenarios I've tried. HTML as well as PDF comes up with all expected content except for the toc. I thought that

Re: DOCBOOK-APPS: Notes on graphics and HTML

2002-05-02 Thread Paul Grosso
At 12:41 2002 05 01 -0700, Norman Walsh wrote: I spent some time today working on new code to map DocBook V4.2 image semantics (a superset of previous semantics) to HTML. A number of compromises were required along the way. I probably won't be able to post the new code until I get back home, but

DOCBOOK-APPS: FOP images formats

2002-05-02 Thread O'Donnell, Vincent
I used xalan, FOP (both from apache) and the docbook stylesheet to turn my docbook XML into pdf. This seemed to work fine. I really want to have images in my final pdf which are composed of a photo with text callouts. If possible I would like the callouts and text to be scalable objects rather

DOCBOOK-APPS: D'oh!

2002-05-02 Thread Michael D. Crawford
Answered my own question before I could post. Whenever I ran jade on my DocBook XML document it would hit the net to retrieve my DTD. I couldn't work with it with an unconnected laptop in a cafe, so I hardwired in the pathname of the DTD as the system identifier. This broke when I moved

DOCBOOK-APPS: Newbie troubles with Docbook/XML + XHTML

2002-05-02 Thread John Levon
moz xhtml 286 xsltproc --version Using libxml 20413, libxslt 10010 and libexslt 703 xsl-stylesheets-1.48-3 installed at /usr/share/sgml/docbook xsltproc http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl in.xml I get a couple of problems : 1) dt

RE: DOCBOOK-APPS: Newbie troubles with Docbook/XML + XHTML

2002-05-02 Thread David Cramer
John, I don't know about #1--doesn't seem like the xmlns should be a problem, but you can satisfy #2 and #3 with a simple customization layer. In order to get the output you want, you pretty much have to have an xsl where you change some parameters, but it's easy to maintain--just change the path

Re: DOCBOOK-APPS: Newbie troubles with Docbook/XML + XHTML

2002-05-02 Thread John Levon
On Thu, May 02, 2002 at 10:37:42PM -0500, David Cramer wrote: I don't know about #1--doesn't seem like the xmlns should be a problem, Well for one it bloats the filesize. Is validator.w3.org incorrect in rejecting it as valid XHTML ? Note that I /don't/ get the xmlns on every tag with