Re: [xsl] Converting TabLibs into XSLT

Subject: Re: [xsl] Converting TabLibs into XSLT
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 6 Jan 2004 17:50:59 GMT
don't you just wantg

<xsl:template match="foo:myframe">
  .....
  <xsl:apply-templates/>
   ...
</xsl:template>

<xsl:template match="foo:myheader">
  .....
  <xsl:apply-templates/>
   ...
</xsl:template>

<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*/>
 <xsl:apply-templates/>
</xsl:copy>
</xsl:template>

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread