|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: xsl:function
> > I'm trying to > > pad the string out to a given length to output in fixedwidth > > format. The <xsl:variable/> on line 5 doesnt seem to work - > > xsl:variable doesn't take an "expr" attribute, and Saxon > throws this out > as a syntax error, so presumably the code you're showing us isn't the > code you ran? > actually the saxon documentation gives the following example for xsl:variable... <xsl:variable name="title">A really exciting document"</xsl:variable> <xsl:variable name="backcolor" expr="'#FFFFCC'" /> <xsl:template match="/*"> <HTML><TITLE<xsl:value-of select="$title"/></TITLE> <BODY BGCOLOR='{$backcolor}'> ... </BODY></HTML> </xsl:template> also, Saxon doesnt throw out <xsl:variable name="x" expr="    ......"/> but it *does* throw out <xsl:variable name="x" select="    ......"/> as an *Unexpected EOF* XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






