up vote 0 down vote favorite
share [g+] share [fb]

I have a item list and for each item I want to make it an url.

List:

 <root>
   <tags>
     <tag>open source</tag>
     <tag>open</tag>
     <tag>advertisement</tag>
     <tag>ad</tag>
   </tags>
 </root>

XSLT:

<xsl:template match="*">
    <div class="tags">
      <xsl:for-each select="/post/tags/tag">
          <a href="#">
            <xsl:value-of select="//tag"/>
          </a>
      </xsl:for-each>
    </div>
</xsl:template>

Output:

  <div class="tags"> 
    <a href="#">open source</a> 
    <a href="#">open source</a> 
    <a href="#">open source</a> 
    <a href="#">open source</a> 
  </div>

What am I doing wrong?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

What you are doing with the value-of expression is selecting all of the tag nodes in the xml document:

<xsl:value-of select="//tag"/>

The effect of that is that only the first selected node will be used for the value.

You can use the following instead:

<xsl:value-of select="."/>

Where select="." will select the current node from the for-each.

link|improve this answer
Thank you! I tried <xsl:value-of select="tag"/> at first and it did nothing... – Four May 9 '09 at 21:59
Thanks for letting me know - removed the incorrect usage. – Oded May 10 '09 at 8:09
feedback

A more XSLT way of doing the correct thing is add a "tag" template and modify your original:

<xsl:template match="*">
    <div class="tags">
        <xsl:apply-templates select="tag" />
    </div>
</xsl:template>

<xsl:template match="tag">
      <a href="#">
        <xsl:value-of select="."/>
      </a>
</xsl:template>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.