This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: ***********Transformation of an XML document containing a default namespace ************


Thanks guys for all your answers. I know that this would be a solution, I
tested it and it works. But the problem is that in my "result.xml" file I
won't obtain the default namespace in my element tag : <ELEMENT
xmlns="www.e-xmlmedia.com/test"> but the test namespace like this : <ELEMENT
xmlns:test="www.e-xmlmedia.com/test"> and I don't want this to occur, I want
to keep my default namespace !
How can I do ? Is this possible ?


-----Message d'origine-----
De : owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]De la part de Chris Bayes
Envoye : mercredi 24 octobre 2001 11:12
A : xsl-list@lists.mulberrytech.com
Objet : RE: [xsl] ***********Transformation of an XML document
containing a default namespace ************



>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




 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]