On 11/12/2018 05:40, Bob Stayton wrote:
...
   <xsl:variable name="nodeset" select="exsl:node-set($req)"/>

   <xsl:apply-templates select="$nodeset"/>
...
Also, the nodeset approach won't work for FO output because the informaltable in the nodeset is treated as a separate document, and so the stylesheet will generate fo:root for the table within a fo:page-sequence, which is invalid in the XSL-FO processor.
I am not in a position to try it, but how does this not avoid the problem:

   <xsl:apply-templates select="$nodeset/*"/>

?

Regards,


Tony Graham.
--
Senior Architect
XML Division
Antenna House, Inc.
----
Skerries, Ireland
tgra...@antenna.co.jp

---------------------------------------------------------------------
To unsubscribe, e-mail: docbook-apps-unsubscr...@lists.oasis-open.org
For additional commands, e-mail: docbook-apps-h...@lists.oasis-open.org

Reply via email to