OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: 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




[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]