|
Subject: Re: [xsl] questions. From: "Christopher R. Maden" <crism@xxxxxxxxx> Date: Fri, 28 Sep 2001 02:31:40 -0700 |
I am trying to write a diff-patch tool for xml data in which i will be doing the patching using xslt. I have some questions regarding this.
consider the two xml files as
a a | / | \ b m b n | / | c z c
The edit script that i will be generating will be
1. Add subtree at m as first child of a 2. Add node n as the third child of n
How i can i achieve this in xslt ? (I know that xslt will generate a completely new file. )
1. Copy a. Within a: 2. Create m. 3. Copy the first child of a. 4. Create n. 5. Copy the 2nd and following children of a.
<xsl:template match="a">
<xsl:copy>
<xsl:copy-of select="@*"/>
<m/>
<xsl:apply-templates select="*[1]"/>
<n/>
<xsl:apply-templates select="*[position() >= 2]"/>
</xsl:copy>
</xsl:template>HTH, Chris -- Christopher R. Maden, Principal Consultant, HMM Consulting Int'l, Inc. DTDs/schemas - conversion - ebooks - publishing - Web - B2B - training <URL: http://www.hmmci.com/ > <URL: http://crism.maden.org/consulting/ > PGP Fingerprint: BBA6 4085 DED0 E176 D6D4 5DFC AC52 F825 AFEC 58DA
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| [xsl] questions., Mihir D. Gore | Thread | Re: [xsl] questions., Christopher R. Maden |
| RE: [xsl] SAXON and UTF-8, Tony Graham | Date | Re: [xsl] questions., Steve Muench |
| Month |