ai schrieb:
I found code like <xsl:variable name="metadata"
select="xalan:nodeset($md)/*[1]"/> but i don't know what that's
meaning.Someone please help me. Thank's before.=^D

Hi Ai,

xalan:nodeset( $rtf ) is an extension function used to convert a
so-called result tree fragment, often abbreviated as RTF, into a
so-called node-set, which is a structure that many XSL/XPath functions
can handle.

The presence of RTFs in XSL 1.0 can be considered a quirk. In XSL 2.0,
they're gone; but Xalan (both C and Java) does only XSL 1.0.

BTW, first hit in Google when searching for "xalan:nodeset":

http://xml.apache.org/xalan-c/extensionslib.html#nodeset

See also EXSLT for more extension functions.

http://exslt.org/

Michael Ludwig

Reply via email to