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
--~------------------------------------------------------------------
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>
--~--