View Single Post
  #3  
Old 09-24-2007, 07:44 AM
mvermeulen mvermeulen is online now
Registered User
 
Join Date: 07-15-2003
Posts: 56
Send a message via Yahoo to mvermeulen
The <pre> tags actually did the trick! I have been using a modified version of this for couple of years and had not looked at the standard transform for quite some time.

Below is a section of the xslt with the <pre> tags now added...

<xsl:for-each select="$BuildStatusFilter">
<xsl:for-each select="step[@action='Subversion']">
<xsl:if test="name='Subversion Log'">
<tr>
<td class="NormalBold">:</td>
<td class="Normal">
<pre><xsl:value-of select="output"/></pre>
</td> </tr> </xsl:if>
</xsl:for-each> </xsl:for-each>

Thanks!
Reply With Quote