xsl-list
[Top] [All Lists]

RE: [xsl] Special characters and Transformation

2006-05-05 03:33:07
"Khorasani, Houman" wrote:

2) For some reason I can't even reproduce the problem.
I only get a root with namespace and all elements are
empty underneath.

I tried this:
 <?xml version="1.0" encoding="us-ascii"?>
 <xsl:stylesheet version="1.0" 
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
      <xsl:output method="xml" version="1.0" encoding="us-ascii"
indent="yes"/>
      <xsl:template match="/">
              <xsl:element name="root" namespace="http://www.fo.com";>
                      <xsl:for-each select="Text">
                              <xsl:element name="Text">
                                      <xsl:element name="tag">
                                              <xsl:value-of select="tag"/>
                                      </xsl:element>
                              </xsl:element>
                      </xsl:for-each>
              </xsl:element>
      </xsl:template>
 </xsl:stylesheet>

  You don't have any 'Text' children of your root node (in the sample
you provided).  Use instead:

    <xsl:for-each select="root/Text">

  BTW, I suggest you to take a look at "Literal Result Elements",
"Template Rules", and maybe the "Modified Identity Tranformation
Pattern".

  Regards,

--drkm


























        

        
                
___________________________________________________________________________ 
Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement vos 
services préférés : vérifiez vos nouveaux mails, lancez vos recherches et 
suivez l'actualité en temps réel. 
Rendez-vous sur http://fr.yahoo.com/set

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--