Re: [xsl] Read directory and its contents and put it to another file

Subject: Re: [xsl] Read directory and its contents and put it to another file
From: "J. S. Rawat" <jrawat@xxxxxxxxxxxxxx>
Date: Tue, 07 Oct 2008 17:56:54 +0530
Hi Mukul,
I forget one issue, if you could suggest the syntax. The tables which i want to call have following structure
<table id="a" a="" b="">
<tagnotwanted/>
...
</table>


and don't want <tagnotwant> element and some attributes of table. Output should be
<table id="a">
...
</table>


At 04:42 PM 10/7/2008, Mukul Gandhi wrote:
<xsl:template match="span">
  <xsl:variable name="idVal" select="@id" />
  <xsl:copy-of select="$inputFiles/*[contains(base-uri(.), $idVal)]" />
</xsl:template>

Current Thread