If you put the icons in "C:\Program
Files\CruiseControl.NET\webdashboard\images" (or whatever path you installed
it to) and change the xslt so the icon src is something like
"{$applicationPath}/images/Populator.png" (see attached) it "should" work.

On 02/05/07, carel <[EMAIL PROTECTED] > wrote:
>
>
> Hi
>
> I've managed to get hold of the .png files that the MbUnit stylesheets
> use for creating the MbUnit dashboard reports in CruiseControl.NET.
> I've tried copying these images to all the possible different
> directories, but they still do not show up in my build reports.
>
> Any ideas?
>
> Thanks
> Carel
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MbUnit.User" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/MbUnitUser?hl=en
-~----------~----~----~----~------~----~------~--~---

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>    
	<!--
	    format a number in to display its value in percent
	    @param value the number to format
	-->
	<xsl:template name="display-time-second">
		<xsl:param name="value"/>
		<span class="time"><xsl:value-of select="format-number($value,'0.00')"/>s</span>
	</xsl:template>

    <!--
	    format a number in to display its value in percent
	    @param value the number to format
	-->
	<xsl:template name="display-time">
		<xsl:param name="value"/>
		<span class="time"><xsl:value-of select="format-number($value*1000,'0.000')"/>ms</span>
	</xsl:template>
	<!--
	    format a number in to display its value in percent
	    @param value the number to format
	-->
	<xsl:template name="display-percent">
		<xsl:param name="value"/>
		<xsl:value-of select="format-number($value,'0.00 %')"/>
	</xsl:template>
	<!--
	    format a number in to display its value in Kb
	    @param value the number to format
	-->
	<xsl:template name="display-memory">
		<xsl:param name="value"/>
		<xsl:variable name="kbvalue">
			<xsl:value-of select="$value * 0.0001"/>
		</xsl:variable>
		<xsl:value-of select="format-number($kbvalue,'0.00 Kb')"/>
	</xsl:template>
	<!--
	template that will convert a carriage return into a br tag
	@param word the text from which to convert CR to BR tag
	-->
	<xsl:template name="br-replace">
		<xsl:param name="word"/>
		<xsl:choose>
			<xsl:when test="contains($word,'&#xA;')">
				<xsl:value-of select="substring-before($word,'&#xA;')"/>
				<br/>
				<xsl:call-template name="br-replace">
					<xsl:with-param name="word" select="substring-after($word,'&#xA;')"/>
				</xsl:call-template>
			</xsl:when>
			<xsl:otherwise>
				<xsl:value-of select="$word"/>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
	<!--
	Scales value
	-->
	<xsl:template name="scale">
		<xsl:param name="origLength"/>
		<xsl:param name="targetLength"/>
		<xsl:param name="value"/>
		<xsl:value-of select="($value div $origLength) * $targetLength"/>
	</xsl:template>

	<!--
	Graphical result bar
	-->
	<xsl:template name="counter-progressbar">
		<xsl:param name="width"/>
		<xsl:param name="height"/>
		<div>
			<xsl:attribute name="style">position:relative;background-color:#DDDDDD;border-color:black;width:<xsl:value-of select="$width"/>px;height:<xsl:value-of select="$height"/>px;</xsl:attribute>
			<!-- success -->
			<xsl:if test="@success-count > 0">
			<div>
				<xsl:attribute name="style">position:absolute;top:0px;left:0px;height:<xsl:value-of select="$height"/>px;background-color:lightgreen;font-size:1px;width:<xsl:call-template name="scale">
						<xsl:with-param name="origLength" select="@run-count"/>
						<xsl:with-param name="targetLength" select="$width"/>
						<xsl:with-param name="value" select="@success-count"/>
					</xsl:call-template>px;</xsl:attribute>
			</div>
			</xsl:if>
			<!-- failure -->
			<xsl:if test="@failure-count > 0">
			<div>
				<xsl:attribute name="style">position:absolute;top:0px;left:<xsl:call-template name="scale">
						<xsl:with-param name="origLength" select="@run-count"/>
						<xsl:with-param name="targetLength" select="$width"/>
						<xsl:with-param name="value" select="@success-count"/>
					</xsl:call-template>px;height:<xsl:value-of select="$height"/>px;background-color:red;font-size:1px;width:<xsl:call-template name="scale">
						<xsl:with-param name="origLength" select="@run-count"/>
						<xsl:with-param name="targetLength" select="$width"/>
						<xsl:with-param name="value" select="@failure-count"/>
					</xsl:call-template>px;</xsl:attribute>
			</div>
			</xsl:if>
			<!-- skip -->
			<xsl:if test="@skip-count > 0">
			<div>
				<xsl:attribute name="style">position:absolute;top:0px;left:<xsl:call-template name="scale">
						<xsl:with-param name="origLength" select="@run-count"/>
						<xsl:with-param name="targetLength" select="$width"/>
						<xsl:with-param name="value" select="@[EMAIL PROTECTED]"/>
					</xsl:call-template>px;height:<xsl:value-of select="$height"/>px;background-color:blueviolet;font-size:1px;width:<xsl:call-template name="scale">
						<xsl:with-param name="origLength" select="@run-count"/>
						<xsl:with-param name="targetLength" select="$width"/>
						<xsl:with-param name="value" select="@skip-count"/>
					</xsl:call-template>px;</xsl:attribute>
			</div>
			</xsl:if>
			<!-- ignore -->
			<xsl:if test="@ignore-count > 0">
			<div>
				<xsl:attribute name="style">position:absolute;top:0px;left:<xsl:call-template name="scale">
						<xsl:with-param name="origLength" select="@run-count"/>
						<xsl:with-param name="targetLength" select="$width"/>
						<xsl:with-param name="value" select="@[EMAIL PROTECTED]@skip-count"/>
					</xsl:call-template>px;height:<xsl:value-of select="$height"/>px;background-color:orange;font-size:1px;width:<xsl:call-template name="scale">
						<xsl:with-param name="origLength" select="@run-count"/>
						<xsl:with-param name="targetLength" select="$width"/>
						<xsl:with-param name="value" select="@ignore-count"/>
					</xsl:call-template>px;</xsl:attribute>
			</div>
			</xsl:if>
			<div>
				<xsl:attribute name="style">position:absolute;top:0px;left:<xsl:value-of select="$width +2"/>px;height:<xsl:value-of select="$height"/>px;font-size:<xsl:value-of select="$height - 2"/>px;font-family:Verdana;</xsl:attribute><xsl:value-of select="@run-count"/>/<xsl:value-of select="@success-count"/>/<xsl:value-of select="@failure-count"/>/<xsl:value-of select="@skip-count"/>/<xsl:value-of select="@ignore-count"/>/<xsl:value-of select="@assert-count"/></div>
		</div>
	</xsl:template>

	<xsl:template name="counter-literal">
		<xsl:value-of select="@run-count"/> test,
		<xsl:value-of select="@success-count"/> success,
		<xsl:value-of select="@failure-count"/> failures,
        <xsl:value-of select="@skip-count" /> skipped,
		<xsl:value-of select="@ignore-count"/> ignored,
		<xsl:value-of select="@assert-count"/> asserts
	</xsl:template>


	<xsl:template name="icon">
		<xsl:param name="src"/>
		<img width="16" height="16" border="0">
			<xsl:attribute name="src"><xsl:value-of select="$src"/></xsl:attribute>
		</img>
	</xsl:template>

	<xsl:template name="assembly-icon">
		<xsl:call-template name="icon">
			<xsl:with-param name="src">{$applicationPath}/images/Populator.png</xsl:with-param>
		</xsl:call-template>
	</xsl:template>

	<xsl:template name="fixture-icon">
		<xsl:call-template name="icon">
			<xsl:with-param name="src">{$applicationPath}/images/Fixture.png</xsl:with-param>
		</xsl:call-template>
	</xsl:template>

	<xsl:template name="namespace-icon">
		<xsl:call-template name="icon">
			<xsl:with-param name="src">{$applicationPath}/images/Category.png</xsl:with-param>
		</xsl:call-template>
	</xsl:template>

	<xsl:template name="run-icon">
		<xsl:call-template name="icon">
			<xsl:with-param name="src">{$applicationPath}/images/Test.png</xsl:with-param>
		</xsl:call-template>
	</xsl:template>

	<xsl:template name="assemblyid">
		<xsl:param name="name"/>
		as<xsl:value-of select="$name"/>
	</xsl:template>

	<xsl:template name="exceptionid">
		<xsl:param name="name"/>
		ex<xsl:value-of select="$name"/>
	</xsl:template>

    <!--
        MbUnit main method.
    -->
    <xsl:template match="/">
		<div id="mbunit">
			<script>function ToggleVisible(blockId) {
				var block = document.all.item(blockId);
				var plus = document.all.item(blockId + '.plus');
				if (block.style.display=='none') {
					block.style.display='block';
					plus.innerText='- ';
				} else {
					block.style.display='none';
					plus.innerText='+ ';
					}
				}
				</script> 		
        	<xsl:apply-templates select="//report-result" />
		</div>
    </xsl:template>
    
	<xsl:template match="report-result">
            <table cellpadding="2" cellspacing="0" border="0" width="98%">
            <tr>
                <td class="unittests-sectionheader" colspan="3">
                    MbUnit Tests run:
                    <xsl:value-of select="counter/@run-count" /> tests,
                    <xsl:value-of select="counter/@success-count" /> success,
                    <xsl:value-of select="counter/@failure-count" /> failure,
                    <xsl:value-of select="counter/@ignore-count" /> ignored,
                    <xsl:value-of select="counter/@skip-count" /> skipped,                    
                    <xsl:value-of select="format-number(counter/@duration,'##.##')" /> s
                    </td>
            </tr>
            <tr>
                <td>
        		<xsl:call-template name="report-summary" />
		    <xsl:if test="count(//warnings)>0">
				<br/>
				<xsl:call-template name="warnings" />
			</xsl:if> 
			<br/>
			<xsl:call-template name="assemblies" />
                </td>
            </tr>
            </table>
	</xsl:template>

	<xsl:template name="report-summary">
		<table border="0" cellpadding="1" cellspacing="1">
		<tr class="titles">
		<td>Total</td>
		<td>
					<xsl:for-each select="counter">
					<xsl:call-template name="counter-progressbar">
						<xsl:with-param name="width">100</xsl:with-param>
						<xsl:with-param name="height">14</xsl:with-param>
					</xsl:call-template>
					</xsl:for-each>
		</td>
		</tr>
			<xsl:call-template name="assembly-summary"/>
		</table>
	</xsl:template>

	<xsl:template name="assembly-summary">
			<xsl:for-each select="//assemblies/assembly">
				<tr class="titles">
				<td>
					<a>
					<xsl:attribute name="href">#<xsl:value-of select="@name"/>Assembly</xsl:attribute>
					<xsl:call-template name="assembly-icon"/>
					<xsl:value-of select="@name"/>
					</a>
				</td>
				<td>
					<xsl:for-each select="counter">
					<xsl:call-template name="counter-progressbar">
						<xsl:with-param name="width">100</xsl:with-param>
						<xsl:with-param name="height">12</xsl:with-param>
					</xsl:call-template>
					</xsl:for-each>
				</td>
				</tr>
				<xsl:call-template name="fixture-summary" />
			</xsl:for-each>
	</xsl:template>

<xsl:template name="fixture-id"><xsl:param name="name" /><xsl:value-of select="$name" /></xsl:template>

	<xsl:template name="fixture-summary">
			<xsl:for-each select="descendant::fixture">
			<tr class="fixtureSummary">
			<td>
			<a>
				<xsl:attribute name="href">#<xsl:call-template name="fixture-id"><xsl:with-param name="name">
							<xsl:value-of select="@type" />.<xsl:value-of select="@name" />
						</xsl:with-param></xsl:call-template>
				</xsl:attribute>
				<xsl:call-template name="fixture-icon"/>
				<xsl:value-of select="@type" />.<xsl:value-of select="@name" />
			</a>
			</td>
			<td>
				<xsl:for-each select="counter">
				<xsl:call-template name="counter-progressbar">
					<xsl:with-param name="width">100</xsl:with-param>
					<xsl:with-param name="height">10</xsl:with-param>
				</xsl:call-template>
				</xsl:for-each>
			</td>
			</tr>
			</xsl:for-each>
	</xsl:template>

    <xsl:template name="warnings">
<table> 
<xsl:for-each select="//warning">
<tr>
    <xsl:attribute name="class">
		<xsl:choose>
	        <xsl:when test="position() mod 2 = 1">failureOdd</xsl:when>
		    <xsl:otherwise>failureEven</xsl:otherwise>
		</xsl:choose>
    </xsl:attribute>
    <td><xsl:call-template name="run-icon"/>
        <xsl:value-of select="ancestor::run/@name" /></td>
    <td><xsl:value-of select="text()"/></td>
</tr>
</xsl:for-each>
</table>
    </xsl:template>
    
	<xsl:template name="assemblies">
		<xsl:for-each select="assemblies/assembly">
			<xsl:call-template name="assembly-detail" />
		</xsl:for-each>
	</xsl:template>

	<xsl:template name="assembly-detail">
		<h2><xsl:attribute name="id"><xsl:value-of select="@name"/>Assembly</xsl:attribute>
			<xsl:call-template name="assembly-icon"/>
			<xsl:value-of select="@name"/>
        </h2>
		<ul>
		<li><strong>Full Name:</strong> <xsl:value-of select="@full-name"/></li>
		<li><strong>Results:</strong>
			<xsl:for-each select="counter">
				<xsl:call-template name="counter-literal"/>
			</xsl:for-each>
		</li>
        <li><strong>Duration:</strong>
				<xsl:call-template name="display-time-second">
					<xsl:with-param name="value" select="counter/@duration"/>
				</xsl:call-template>
        </li>
		</ul>
		<xsl:if test="set-up|tear-down">
	<table>
		<tr class="assemblysetupteardown" ><td>Assembly SetUp and TearDown</td></tr>
		<xsl:apply-templates select="set-up"/>
		<xsl:apply-templates select="tear-down"/>
	</table>
		</xsl:if>
		<xsl:call-template name="namespaces-table" />
	</xsl:template>
	
	<xsl:template name="namespaces-table">
		<xsl:apply-templates select="namespaces" />
		<xsl:apply-templates select="namespace" />
	</xsl:template>
	
	<xsl:template match="namespaces">
		<xsl:apply-templates select="namespace" />
	</xsl:template>
	
	<xsl:template match="namespace">
		<xsl:apply-templates select="namespaces" />
		<xsl:apply-templates select="fixtures" />
	</xsl:template>
	
	<xsl:template match="fixtures">
		<table width="800" border="0" cellpadding="1" cellspacing="1">
				<col width="700"/>
				<col width="50"/>
				<col width="50"/>
			<xsl:apply-templates select="fixture" />
		</table>
	</xsl:template>
	
	<xsl:template match="fixture">
		<tr>
			<xsl:attribute name="id"><xsl:call-template name="fixture-id"><xsl:with-param name="name">
						<xsl:value-of select="@type" />.<xsl:value-of select="@name" />
					</xsl:with-param></xsl:call-template>
			</xsl:attribute>
			<td>
				<xsl:for-each select="counter">
					<xsl:call-template name="counter-progressbar">
						<xsl:with-param name="width" select="100" />
						<xsl:with-param name="height" select="10" />
					</xsl:call-template>
				</xsl:for-each>
			</td>
		</tr>
		<tr class="fixture" >
			<td>
				<xsl:call-template name="fixture-icon"/>
				<xsl:value-of select="@type" />.<xsl:value-of select="@name"/>

		    	(<xsl:call-template name="display-time-second">
	    		    <xsl:with-param name="value" select="counter/@duration"/>
    			</xsl:call-template>)
			</td>
		</tr>
		<xsl:if test="set-up|tear-down">
			<tr class="fixturesetupteardown"><td>Fixture SetUp and TearDown</td></tr>
			<xsl:apply-templates select="set-up"/>
			<xsl:apply-templates select="tear-down"/>
		</xsl:if>
		<tr>
			<td>
				<xsl:apply-templates select="runs" />
			</td>
		</tr>
	</xsl:template>
	<xsl:template match="runs">
		<table width="100%" border="0" cellpadding="1" cellspacing="1">
			<xsl:apply-templates select="*" />
		</table>
	</xsl:template>

<xsl:template match="set-up">
    <xsl:call-template name="set-up-or-tear-down" />
</xsl:template>
<xsl:template match="tear-down">
    <xsl:call-template name="set-up-or-tear-down" />
</xsl:template>
<xsl:template name="set-up-or-tear-down">
		<tr>
			<!-- Choosing style and alternate -->
			<xsl:attribute name="class">
				<xsl:choose>
					<xsl:when test="@result = 'success'">successEven</xsl:when>
					<xsl:when test="@result = 'failure'">failureEven</xsl:when>
				</xsl:choose>
			</xsl:attribute>
			<td>
				<xsl:value-of select="@name"/>
			</td>
			<td>
				<xsl:call-template name="display-time">
					<xsl:with-param name="value" select="@duration"/>
				</xsl:call-template>
			</td>
			<td>
				<xsl:call-template name="display-memory">
					<xsl:with-param name="value" select="@memory"/>
				</xsl:call-template>
			</td>
		</tr>
		<!-- Adding execption log -->
		<xsl:if test="@result = 'failure'">
			<xsl:call-template name="exception-log"/>
		</xsl:if>
		<!-- Adding console out, error -->
		<xsl:call-template name="console-output" />
</xsl:template>

	<!--

	Run template

	-->
	<xsl:template match="run">
		<tr>
			<!-- Choosing style and alternate -->
			<xsl:attribute name="class">
				<xsl:choose>
					<xsl:when test="@result = 'success'">
						<xsl:choose>
							<xsl:when test="position() mod 2 = 1">successOdd</xsl:when>
							<xsl:otherwise>successEven</xsl:otherwise>
						</xsl:choose>
					</xsl:when>
					<xsl:when test="@result = 'failure'">
						<xsl:choose>
							<xsl:when test="position() mod 2 = 1">failureOdd</xsl:when>
							<xsl:otherwise>failureEven</xsl:otherwise>
						</xsl:choose>
					</xsl:when>
					<xsl:when test="@result = 'skip'">
						<xsl:choose>
							<xsl:when test="position() mod 2 = 1">skippedOdd</xsl:when>
							<xsl:otherwise>skippedEven</xsl:otherwise>
						</xsl:choose>
					</xsl:when>
					<xsl:when test="@result = 'ignore'">
						<xsl:choose>
							<xsl:when test="position() mod 2 = 1">ignoreOdd</xsl:when>
							<xsl:otherwise>ignoreEvent</xsl:otherwise>
						</xsl:choose>
					</xsl:when>
				</xsl:choose>
			</xsl:attribute>
			<td>
				<xsl:call-template name="run-icon"/>
				<xsl:value-of select="@name"/>
			</td>
			<td>
				<xsl:call-template name="display-time">
					<xsl:with-param name="value" select="@duration"/>
				</xsl:call-template>
			</td>
			<td>
				<xsl:call-template name="display-memory">
					<xsl:with-param name="value" select="@memory"/>
				</xsl:call-template>, <xsl:value-of select="@assert-count" />
			</td>
		</tr>
		<!-- Adding execption log -->
		<xsl:if test="@result = 'failure'">
			<xsl:call-template name="exception-log"/>
		</xsl:if>
		<!-- Adding console out, error -->
		<xsl:call-template name="console-output" />
	</xsl:template>
	<xsl:template name="exception-log">
		<tr class="failure-exception">
			<td>

			<div style="display;">
				<table border="0" cellpadding="1" cellspacing="1" width="600">
					<xsl:apply-templates select="exception" />
				</table>
			</div>
			</td>
		</tr>
	</xsl:template>
	<xsl:template match="exception">
		<tr class="exceptionType">
			<td>
				<strong>Type:</strong>
				<xsl:value-of select="@type"/>
			</td>
		</tr>
		<tr>
			<td>
				<strong>Message:</strong>
				<xsl:value-of select="message"/>
			</td>
		</tr>
		<tr>
			<td>
				<strong>Source:</strong>
				<xsl:value-of select="source"/>
			</td>
		</tr>
        <xsl:for-each select="properties/property">
		<tr>
			<td>
				<bold><xsl:value-of select="@name"/>:</bold>
				<xsl:value-of select="@value"/>
			</td>
		</tr>
        </xsl:for-each>            
		<tr>
			<td  width="80">
				<strong>StackTrace:</strong>
				<br/>
				<pre class="stackTrace"  width="80">
					<xsl:value-of select="stack-trace"/>
				</pre>
			</td>
		</tr>
		<xsl:apply-templates select="exception" />
	</xsl:template>
	<xsl:template name="console-output">
		<xsl:apply-templates select="console-out"/>
		<xsl:apply-templates select="console-error"/>
	</xsl:template>
	<xsl:template match="console-out">
		<xsl:call-template name="console">
			<xsl:with-param name="name">Console Output</xsl:with-param>
		</xsl:call-template>
	</xsl:template>
	<xsl:template match="console-error">
		<xsl:call-template name="console">
			<xsl:with-param name="name">Console Error</xsl:with-param>
		</xsl:call-template>
	</xsl:template>
	<xsl:template name="console">
		<xsl:param name="name" />
		<xsl:if test="string-length( text() ) != 0">
			<tr>
				<td>
					<table>
						<tr><td><strong><xsl:value-of select="$name"/></strong></td></tr>
						<tr>
							<td>
								<pre class="console"><xsl:value-of select="text()"/></pre>
							</td>
						</tr>
					</table>
				</td>
			</tr>
		</xsl:if>
	</xsl:template>
</xsl:stylesheet>

Reply via email to