I am trying to learn xslt but have no good tutorials where i can find all info together
please help me here...
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:attribute namespace="{namespace-uri()}" name="{name()}"/>
</xsl:template>
this is some code which i found at stackOverFlow But i dont understand , what "exactly" the expressions "@|node()", "@", "{namespace-uri()}", "name()"
means...help me.....