|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: ***********Transformation of an XML document conta
>I really don't understand this !
Neither do I. That stylesheet is not valid because you haven't declared
the test namespace. Try this.
<xsl:stylesheet version="1.0" xmlns="http://www.e-xmlmedia.com/test/"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:test="http://www.e-xmlmedia.com/test/"
exclude-result-prefixes="test"
>
<xsl:template match="test:element">
<ELEMENT xmlns="http://www.e-xmlmedia.com/test/">
<xsl:apply-templates />
</ELEMENT>
</xsl:template>
<xsl:template match="test:titi">
<TITI>
<xsl:value-of select="." />
</TITI>
</xsl:template>
<xsl:template match="test:toto">
<TOTO>
<xsl:value-of select="." />
</TOTO>
</xsl:template>
<xsl:template match="test:tata">
<TATA>
<xsl:value-of select="." />
</TATA>
</xsl:template>
</xsl:stylesheet>
Ciao Chris
XML/XSL Portal
http://www.bayes.co.uk/xml
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
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








