Re: [xsl] Why Are My Tunnel Parameters Not Working?

Subject: Re: [xsl] Why Are My Tunnel Parameters Not Working?
From: Florent Georges <lists@xxxxxxxxxxxx>
Date: Thu, 6 Mar 2008 16:26:31 +0100 (CET)
Andrew Welch wrote:

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

> which is the same as:

> <xsl:apply-templates select="(@*, node())"/>

  Which is the same as:

    <xsl:apply-templates select="@*, node()"/>

which is the same as:

    <xsl:apply-templates select="@*|node()"/>

or even as:

    <xsl:apply-templates select="node()|@*"/>

:-)

  About the initial problem, there is no sample input neither...

  Regards,

--drkm

























      _____________________________________________________________________________ 
Envoyez avec Yahoo! Mail. Une boite mail plus intelligente http://mail.yahoo.fr

Current Thread