xsl-list
[Top] [All Lists]

Re: Converting TabLibs into XSLT

2004-01-06 10:50:59

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



<Prev in Thread] Current Thread [Next in Thread>