[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Filtering new tags

Subject: Re: Filtering new tags
From: buddhi <buddhi@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 25 Jan 2008 12:39:04 +0530
Re:  Filtering new tags
hi Gandi and all,

yes you are absolutely correct but I am not getting only newly added text, I am getting old tags + newly added tags. I am using MS XSLT

- Buddhi -

Mukul Gandhi wrote:
I think, you want (records from new file - records from old file),
i.e. difference.

Your stylesheet looks fine to me. I get correct output with Xalan-J 2.7.1.

Probably, you need to explain more clearly about the requirement.

On 1/25/08, buddhi <buddhi@xxxxxxxxxxxxxxxxxxx> wrote:
Hi

I have a xml file with following tag sets

 <data name="DE">
    <value>Drawing Editor</value>
    <comment>DE</comment>
  </data>

I have two xml files with this, but both are not equivalent. One is a
old file and other one is the new file, where set of those tag set are
added here and there in the doc (not only to the end of the document) I
wanted to extract those newly added tag sets to a separate file after
transformation. I mad ea one XSL, but it takes the old file and append
new tags to it. I want only the new tags.

<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[@name = $temp/@name])">
          <xsl:copy-of select="$temp" />
        </xsl:if>
      </xsl:for-each>
    </newtags>
  </xsl:template>
</xsl:stylesheet>


Please help me on this.


- Buddhi -

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.