Re: New XT release

Subject: Re: New XT release
From: "Jon Smirl" <jonsmirl@xxxxxxxxxxxx>
Date: Mon, 11 Oct 1999 11:38:48 -0400
> In E. R. Harold's XML Bible, I did not notice any mention of the
> "name=value..." part on p. 441 re. using XT with IE 5.  As I'm not yet

The name=value is a new XSL feature which allows parameters to be passed to
the stylesheet.
Check out <xsl:param> in the spec. http://www.w3.org/TR/WD-xslt

> elements <data></data>-- in which there are some as <data type="189"> and
> some that are <data type="213">-- if I want to only transform those

<xsl:template match="*[@type='213']">
Will match any tag with type='213'

Don't forget to update your stylesheet namespaces or XT won't work.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

Jon Smirl
jonsmirl@xxxxxxxxxxxx



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


Current Thread