This is the mail archive of the docbook@lists.oasis-open.org mailing list for the DocBook project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Fop-0.20.1 Image Problems


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
jeff.iezzi@semanticedge.com

-- EOF --

----------------------------------------------------------------
To subscribe or unsubscribe from this elist use the subscription
manager: <http://lists.oasis-open.org/ob/adm.pl>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]