value-of

Outputting value of xsl:variable with xsl:value-of problem.

I think I may have a misunderstanding of <xsl:variable\> and <xsl:value-of\> so perhaps someone can correct me! I'm attempting to tweak some hardcoded banners to be a bit cleaner so I thought it would be a good idea to create an <xsl:variable> containing the banner link and image code, then use <xml:value-of> at the various places where...

XSL for-each and value-of

Given the xml: <element>text</element> ... <element>text</element> And xsl: <xsl:for-each select="element"> ... </xsl:for-each> What do I need to put inside the for-each loop to access the text? There doesn't seem to be a corresponding xsl:value-of because select="", select="/", and select="element" are all wrong. ...

xsl literal with <xsl:if>

Hi, I have to write a very simple code in xsl: IF column=0 if result = .34 set background color to green and write $result, but if result = 0.10 set background color to white and write the word "QQQ" and what doesn't work is: <xsl:if test="$result = 0.35 and $column = 0"> <xsl:attribute name='background-color'>#669933</xs...

Counting nodes with certain attribute values in XSLT

Suppose I have some XML like this: <section name="SampleSection"> <item name="ScoredItem1"> <attributes> <scored data_type="boolean" value="true"/> </attributes> </item> <item name="UnscoredItem1"> <attributes> <scored data_type="boolean" val...