|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: generating namespace attributes in result
> Iam using <xsl:for-each select="namespace:*"> to iterate over all
> namespace attributes on the input element
namespace decarations are not attributes to xpath.
The above doesn't just iterate over any explict xmlns=... that appear in
the source but rather it iterates over all namespace nodes, that are on
that element which includes any namespaces declared on any ancestor
element.
<xsl:attribute name="$attrname">
<xsl:value-of select=$attrval"/>
</xsl:attribute>
You can not generate namespace nodes with xsl:attribute. In XSLT2 you
could use xsl:namespace to generate namespace nodes but in XSLT1 you
have to copy then from the source or generate elements or attributes in
the correct namespace using xsl:element.
So for example if your source is
<xxx>
<name>zzz</zzz>
<ns>http://www.example.com</ns>
</xx>
and you want to generate
<zzz xmlns="http://www.example.com"/>
Then you want to do
<xsl:template match="xxx">
<xsl:element name="{name}" namespace="{ns}"/>
</xsl:template>
> Hope this is clear.
The FAQ has more examples of generating namespace nodes.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








