Re: [xsl] xsl:apply-templates behaving differently depending on the node copied?

Subject: Re: [xsl] xsl:apply-templates behaving differently depending on the node copied?
From: Mukul Gandhi <mukul_gandhi@xxxxxxxxx>
Date: Wed, 11 May 2005 05:11:56 -0700 (PDT)
I think I missed a template rule :) Below is the
modified stylesheet..

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

<xsl:output method="html" indent="yes" />

<xsl:template match="node() | @*">
  <xsl:copy>
    <xsl:apply-templates select="node() | @*" />
  </xsl:copy>
</xsl:template>

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

<xsl:template match="content">
  <body>
    <div id="content">
      <xsl:apply-templates />
    </div>  
  </body>
</xsl:template>

<xsl:template match="td[normalize-space() = '']">
  <td>__NOTHING__</td>
</xsl:template>

</xsl:stylesheet>

Regards,
Mukul

--- Mukul Gandhi <mukul_gandhi@xxxxxxxxx> wrote:

> This may be done as below.. This is a modified
> identity stylesheet.
> 




		
Discover Yahoo! 
Stay in touch with email, IM, photo sharing and more. Check it out! 
http://discover.yahoo.com/stayintouch.html

Current Thread