xsl-list
[Top] [All Lists]

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

2008-10-08 04:59:14
"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
























      

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>
  • Re: [xsl] Read directory and its contents and put it to another file, Florent Georges <=