I have confirmed your problem with the 1.40 style sheets and it
looks like graphics.xsl is not getting the value of the fop.extensions
parameter.
Set the fop.extensions in docbook.xsl as follows:
<xsl:param name="fop.extensions" select="1"/>
In graphics.xsl, try the following debugging snippet:
<xsl:template name="process.image">
<xsl:if test="$fop.extensions = 0">
<xsl:message terminate="yes">
<xsl:text>Parameter is not set to use FOP
extensions</xsl:text>
</xsl:message>
</xsl:if>
If set to null (as above), FOP halts once it reaches an image. If set
to non-nill (1 or !=0), FOP keeps trying to perform the conversion
and indeed sets the name of the file to src="url(file.gif)".
[:>|
Jeff Iezzi
[EMAIL PROTECTED]
-- EOF --
----------------------------------------------------------------
To subscribe or unsubscribe from this elist use the subscription
manager: <http://lists.oasis-open.org/ob/adm.pl>