Skip to content
Snippets Groups Projects
Commit c781e223 authored by jlanuti's avatar jlanuti
Browse files

fix for adopter breakage report declared build test output

parent c1e8944e
No related branches found
No related tags found
No related merge requests found
......@@ -4,34 +4,45 @@
<xsl:template match="/">
<html>
<body>
<p>
<b>Contact info: <xsl:value-of select="references/@contactInfo"/></b>
</p>
<table border="1">
<tr>
<th>Name</th>
<th>Reference</th>
<th>Subclass</th>
<th>Implement</th>
<th>Instantiate</th>
</tr>
<xsl:for-each select="references/plugin">
<xsl:sort select="@name"/>
<xsl:apply-templates select="." />
</xsl:for-each>
</table>
<xsl:for-each select="breakageReport/references">
<xsl:apply-templates select="." />
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template match="references">
<p>
<b>Contact info: <xsl:value-of select="@contactInfo"/></b>
</p>
<table border="1">
<tr>
<th>Name</th>
<th>Reference</th>
<th>Subclass</th>
<th>Implement</th>
<th>Instantiate</th>
</tr>
<xsl:for-each select="plugin">
<xsl:sort select="@name"/>
<xsl:apply-templates select="." />
</xsl:for-each>
</table>
</xsl:template>
<xsl:template match="plugin">
<tr>
<td><b>Plugin : <xsl:value-of select="@id"/></b></td>
<td bgcolor="c8c8c8" colspan="4">&#160;</td>
</tr>
<xsl:for-each select="class">
<xsl:sort select="@name"/>
<xsl:apply-templates select="." />
</xsl:for-each>
<xsl:choose>
<xsl:when test="starts-with(@id,'org.eclipse.wst.rdb.')">
</xsl:when>
<xsl:otherwise>
<tr>
<td><b>Plugin : <xsl:value-of select="@id"/></b></td>
<td bgcolor="c8c8c8" colspan="4">&#160;</td>
</tr>
<xsl:for-each select="class">
<xsl:sort select="@name"/>
<xsl:apply-templates select="." />
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="class">
<tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment