| Subject: [xsl] Deleting a node depending on contents of a grandfather attribute and a child node From: "John Reid" <John.Reid@xxxxxxxxxxxxxxx> Date: Thu, 31 Jul 2003 06:26:38 +1000 | 
Could I put this q up again?
:o)
i have tried a number of approaches but with various but not correct
results. I want to delete the absent node (and everything below it)
where $vardate = from and @pword $varpword.
Starting with:
<player pword='82345'>
<absentia>
<absent type="C">
	<to>20030921</to>
	<from>20030901</from>
</absent>
<absent type="D">
	<to>20030801</to>
	<from>20030103</from>
</absent>
</absentia>
<player>
ending with:
<player pword='82345'>
<absentia>
<absent type="D">
	<to>20030801</to>
	<from>20030103</from>
</absent>
</absentia>
<player>
tried this (along with about 10 variations):
<xsl:param name="vardate" select="0" />
<xsl:param name="varpword" select="0" />
<xsl:template match="@*|node()">
<xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>
<xsl:template match="absent">
    <xsl:variable name="date1" select="./from"/>
    <xsl:variable name="pword" select="ancestor::@pword"/>
    <xsl:copy>
      <xsl:apply-templates select="@*|node()[not($date1 = $vardate and
$pword = $varpword)]"/>
  </xsl:copy>
</xsl:template>
 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
| Current Thread | 
|---|
| 
 | 
| <- Previous | Index | Next -> | 
|---|---|---|
| [xsl] Deleting a node depending on , John Reid | Thread | Re: [xsl] Deleting a node depending, J.Pietschmann | 
| RE: RE: [xsl] xsl:output method=xml, Frank J. Buono | Date | [xsl] Re: template problem...ignori, John Liebermann | 
| Month |