xsl-list
[Top] [All Lists]

Re: node's full content + some modifications in that

2004-07-21 05:35:44
Hi Thomas,
 This might help -

<?xml version="1.0" encoding="ISO-8859-1"?> 
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:template match="/">
  <html>
  <body>
    <table>
      <xsl:for-each select="catalog/cd">
        <tr>
          <td>
            <xsl:apply-templates select="artist"/>
          </td>
        </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>

<xsl:template match="artist">
  <xsl:apply-templates />
</xsl:template>

<xsl:template match="tab">
  <xsl:text>&#xA0;</xsl:text>
</xsl:template>

<xsl:template match="b">
  <xsl:copy-of select="." />
</xsl:template>

</xsl:stylesheet>

Regards,
Mukul

--- Földényi Tamás <ftomi(_at_)1982(_dot_)hu> wrote:
Hello,

I'm new in xslt.
I have an xml such as

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl"
href="cdcatalog.xsl"?>
<catalog>
 <cd>
  <artist><b>Eros</b> <tab/> Ramazzotti</artist>
 </cd>
</catalog>

I want to write out the full content of the node
artist, but also want some
modificiation in that markup:
I wanna write out <b>Eros</b>
     Ramazotti. (convert
<tab /> to some non-breaking space)
I figured out that <xsl:copy-of> echo the full
content of a node, but in
this case, there is no way to do more modification
in it, at least I don't
know how to do it. So my current version writes out
<b>Eros</b> <tab/>
Ramazzotti.

Current xsl:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:template match="/">
  <html>
  <body>
    <table>
      <xsl:for-each select="catalog/cd">
      <tr>
        <td>
  <xsl:copy-of select="artist"/>
 </td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

In the artist node, there could be more nodes such
as <i> <strike>, or
something totally differrent, and more special tags
like <tab/> that I want
to convert to non breaking spaces, or something
else.

Can you point me what to do?

Thanks, Thomas



        
                
__________________________________
Do you Yahoo!?
Vote for the stars of Yahoo!'s next ad campaign!
http://advision.webevents.yahoo.com/yahoo/votelifeengine/


<Prev in Thread] Current Thread [Next in Thread>