|
I forgot to add one template into eclipse.xsl stylesheet. Sorry for that. If you are using eclipse.xsl with DocBook stylesheets prior to version 1.63 add following template in order to get sample working.
<xsl:template name="href.target.with.base.dir">
<xsl:param name="object" select="."/>
<xsl:value-of select="$base.dir"/>
<xsl:call-template name="href.target">
<xsl:with-param name="object" select="$object"/>
</xsl:call-template>
</xsl:template>
|