saxon extensions - GUI interface

Having trouble installing Oxygen? Got a bug to report? Post it all here.
sylvisaker
Posts: 1
Joined: Thu Aug 23, 2012 1:43 am

saxon extensions - GUI interface

Post by sylvisaker »

I am trying to use a saxon extension saxon:output for a chunker utility to produce .epub chunks from docbook. I am using developer 13.2 and running using the GUI.

The following is returning "false":

<xsl:when test="element-available('saxon:output')">

I think I need to some how turn on access to saxon extensions and I believe I have done that properly by adding the following to the extensions dialog: ${frameworks}/docbook/xsl/extensions/ as directed in the documentation. But it isn't working. Any suggestions

Steve
george
Site Admin
Posts: 2095
Joined: Thu Jan 09, 2003 2:58 pm

Re: saxon extensions - GUI interface

Post by george »

Hi Steve,

That extension works only with Saxon 6.5 for XSLT 1.0. For XSLT 2.0 and Saxon 9 please use xsl:result-document instead.

You do not need to set any extension library, saxon:output is built-in in Saxon 6.5. Please make sure the "saxon" namespace prefix is defined as

Code: Select all


xmlns:saxon="http://icl.com/saxon"
and that you use Saxon 6.5 as the XSLT engine for that transformation.

Best Regards,
George
George Cristian Bina
Post Reply