xsl-list
[Top] [All Lists]

Re: [xsl] Filtering new tags using XSL

2007-09-14 04:31:59
Hi ,

Thankx  for the reply.

I have to transform this with new.xml...??

- Buddhi -

Mukul Gandhi wrote:
Here is a simple stylesheet, which will let you identify the differences.

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

  <xsl:variable name="old-doc" select="document('old.xml')" />

  <xsl:template match="/root">
    <newtags>
      <xsl:for-each select="data">
        <xsl:variable name="temp" select="." />
        <xsl:if test="not($old-doc/root/data[(_at_)name = $temp/@name])">
          <xsl:copy-of select="$temp" />
        </xsl:if>
      </xsl:for-each>
    </newtags>
  </xsl:template>

</xsl:stylesheet>

(not tested..)

On 9/14/07, Buddhi Dananjaya <buddhi(_at_)exceltech-lanka(_dot_)com> wrote:
Hi,

Even XSLT is ok. I can transform and get the newly added tags.

- Buddhi -





--~------------------------------------------------------------------
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>
--~--