I'm trying to merge Sandcastle Help File Builder log file into
dashboard. I've created xsl stylesheet,

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/
Transform">
        <xsl:template match="/">
                  <html>
                        <body>
                        <h2>Sandcastle Help Builder log</h2>
                        <table border="1">
                        <tr bgcolor="#9acd32"  align="center">
                                <td>Product</td>
                                <td>Version</td>
                                <td>Project File</td>
                        </tr>
                        <tr>
                                <td><xsl:value-of 
select="/shfbBuild/@product"/></td>
                                <td><xsl:value-of 
select="/shfbBuild/@version"/></td>
                                <td><xsl:value-of 
select="/shfbBuild/@projectFile"/></td>
                        </tr>
                        </table>
                        <br />
                        <table border="1">
                                <tr bgcolor="#9acd32"  align="center">
                                        <td  colspan="2">Build steps</td>
                                </tr>
                                <xsl:for-each select="/shfbBuild/buildStep">
                                        <tr>
                                                <td><xsl:value-of 
select="@step"/></td>
                                                <td><xsl:value-of select="." 
/></td>
                                        </tr>
                                </xsl:for-each>
                        </table>
                        </body>
                   </html>
        </xsl:template>
</xsl:stylesheet>

which works fine when eg. shown in IE, or in Stylus studio, with
example report http://btekielski.googlepages.com/SandcastleHFB.xml
however, in dashboard is not populated with data from report (ie shows
only table headers).
I think I might have missed something, but I don't know what this
could be :/

Reply via email to