xsl-list
[Top] [All Lists]

Re: [xsl] Using values from one node tree to iterate/recurse over another set of nodes. (Newbie Question)

2008-02-27 09:21:06
Thanks for your speedy reply!

On 27 Feb 2008, at 15:45, Florent Georges wrote:

   <xsl:function name="my:record-field" as="element()">
      <xsl:param name="r" as="element(record)"/>
      <xsl:param name="f" as="element(field)"/>
      <xsl:sequence select="$r/*[local-name() eq $f/@name]"/>
   </xsl:function>


I think this may be an XSLT 1.0 issue, but I get

   xsltStylePreCompute: unknown xsl:function

and

   xsltStylePreCompute: unknown xsl:sequence

:-(

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--