Next in thread → Next in month →

RE: [docbook-apps] Error while recovering Images

From
Mauritz Jeanson <>
Date
2007-07-13T19:38:04+00:00
ID
000601c7c585$4a9269a0$71ea1a51@D7MZ171J
Thread
RE: [docbook-apps] Error while recovering Images
> -----Original Message-----
> From: Dishaa 

> 'gif' does not work either. I have shown the excerpt of the 
> stylesheet below. Even fop1.extensions does not render the 
> bookmarks in PDF. Maybe I am doing something wrong. 


There are many tricky details that you need to get exactly right. See below
for help.


> <xsl:import 
> href="/home/dganapathy/Files/stylesheets/docbook-xsl-1.68.1/fo
> /docbook.xsl"/>


fop1.extensions does not work with docbook-xsl-1.68.1. You need to upgrade
to a newer version (preferably 1.72.0).


> <xsl:param name="admon.graphics.extension" select='gif'/>


You need both double and single quotes here, and a leading period:

 <xsl:param name="admon.graphics.extension" select="'.gif'"/>
                                                   

> <xsl:param name="admon.graphics.path" 
> select="/home/dganapathy/images"/>


Use the same quoting style as above and add a trailing slash:

 <xsl:param name="admon.graphics.path" select="'/home/dganapathy/images/'"/>


/MJ
Next in thread → Next in month →