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: Florent Georges <lists@xxxxxxxxxxxx>
Date: Wed, 8 Oct 2008 10:58:39 +0200 (CEST)
"J. S. Rawat" wrote:

> <xsl:copy-of select="$temp/child::*[not(self::product)]"/>

  That's a matter of taste, but you can write is as:

    <xsl:copy-of select="$temp/*[not(self::product)]"/>

or in XSLT 2.0:

    <xsl:copy-of select="$temp/(* except product)"/>

  Regards,

--drkm

Current Thread