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

added detailed method and field info to combined results

parent 69395f26
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@
<xsl:template match="class">
<tr>
<td><xsl:value-of select="@name"/></td>
<td><b><xsl:value-of select="@name"/></b></td>
<td><xsl:value-of select="@internal"/></td>
<td><xsl:value-of select="@api"/></td>
<xsl:for-each select="source">
......@@ -57,10 +57,34 @@
<xsl:apply-templates select="."/>
</xsl:for-each>
</tr>
<xsl:for-each select="method">
<xsl:sort select="@name"/>
<xsl:apply-templates select="."/>
</xsl:for-each>
<xsl:for-each select="field">
<xsl:sort select="@name"/>
<xsl:apply-templates select="."/>
</xsl:for-each>
</xsl:template>
<xsl:template match="source">
<td><xsl:value-of select="@internal"/></td>
</xsl:template>
<xsl:template match="method">
<tr>
<td>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Method : <xsl:value-of select="@name"/>(...)</td>
<td><xsl:value-of select="@internal"/></td>
<td> &#160;</td>
</tr>
</xsl:template>
<xsl:template match="field">
<tr>
<td>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Field : <xsl:value-of select="@name"/></td>
<td><xsl:value-of select="@internal"/></td>
<td> &#160;</td>
</tr>
</xsl:template>
</xsl:stylesheet>
\ No newline at end of file
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