Revision 5878
Added by Jing Tao almost 14 years ago
resultset.xsl | ||
---|---|---|
291 | 291 |
<td class="text_plain"> |
292 | 292 |
<xsl:for-each select="./param[@name='karEntry/karEntryXML/entity/@name']"> |
293 | 293 |
|
294 |
<xsl:value-of select="./"/>
|
|
294 |
<xsl:value-of select="."/> |
|
295 | 295 |
<xsl:if test="position() != last()"> |
296 | 296 |
<xsl:value-of select="', '"/> |
297 | 297 |
</xsl:if> |
... | ... | |
300 | 300 |
|
301 | 301 |
<td class="text_plain"> |
302 | 302 |
<xsl:for-each select="./param[@name=concat('karEntry/karEntryXML/entity/property[@name=', $sq, 'author', $sq, ']/configure')]"> |
303 |
<xsl:value-of select="./"/>
|
|
303 |
<xsl:value-of select="."/> |
|
304 | 304 |
<xsl:if test="position() != last()"> |
305 | 305 |
<xsl:value-of select="', '"/> |
306 | 306 |
</xsl:if> |
... | ... | |
309 | 309 |
|
310 | 310 |
<td class="text_plain"> |
311 | 311 |
<xsl:for-each select="./param[@name=concat('karEntry/karEntryXML/entity/property[@name=', $sq, 'KeplerDocumentation', $sq, ']/property[@name=', $sq, 'version', $sq, ']/configure')]"> |
312 |
<xsl:value-of select="./"/>
|
|
312 |
<xsl:value-of select="."/> |
|
313 | 313 |
<xsl:if test="position() != last()"> |
314 | 314 |
<xsl:value-of select="', '"/> |
315 | 315 |
</xsl:if> |
Also available in: Unified diff
Using <xsl:value-of select="."/> to replace <xsl:value-of select="./"/>. Somehow, the latter is not valid anymore.