<xslTutorial creator="nicmila@idoox.com">
<index keywords='name() local-name() namespace-uri()'/>

<description>Functions name, local-name, and namespace-uri() are used to get informations about element and attribute names and namespaces.
</description>

<topAttributes> version='1.0' xmlns:zvon="http://www.zvon.org"   version='1.0' xmlns:ict="http://www.idoox.com"</topAttributes>
<xmlSource id="id1">
<zvon:id>ZvonAAA</zvon:id>
<zvon:size>258</zvon:size>
<ict:id>ICT1258</ict:id>
</xmlSource>

<attValues>
<value match=''></value>
</attValues>

<xslStylesheet id="id2">
<xsl:template match="/">
<TABLE border="1">
<TR><TH>name</TH><TH>local</TH><TH>URI</TH></TR>
<xsl:apply-templates select="//*"/>
</TABLE>
</xsl:template>

<xsl:template match="*">
<TR>
<TD><xsl:value-of select="name()"/></TD>
<TD><xsl:value-of select="local-name()"/></TD>
<TD><xsl:value-of select="namespace-uri()"/></TD>
</TR>
</xsl:template>
</xslStylesheet>

</xslTutorial>