mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
Display implemented/unimplemented icon for functions
svn path=/trunk/; revision=16856
This commit is contained in:
parent
e4bb3b1573
commit
14344dd176
1 changed files with 7 additions and 7 deletions
|
@ -116,17 +116,17 @@
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
<xsl:call-template name="toggle"/>
|
<xsl:call-template name="toggle"/>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="./node() and local-name() != 'component' and @i = 'true'">
|
<xsl:when test="local-name() != 'component' and @i = 'true'">
|
||||||
<img src="i.gif" class="i"/>
|
<img src="i.gif" class="i"/>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:when test="./node() and local-name() != 'component' and @i = 'false'">
|
<xsl:when test="local-name() != 'component' and @i = 'false'">
|
||||||
<img src="u.gif" class="u"/>
|
<img src="u.gif" class="u"/>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:when test="./node() and local-name() = 'component' and @complete >= 100">
|
<xsl:when test="local-name() = 'component' and @complete >= 100">
|
||||||
<img src="sc.gif"/>
|
<img src="sc.gif"/>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<img src="tb.gif" with="12" height="12"/>
|
<xsl:value-of select="@i"/><img src="tb.gif" with="12" height="12"/>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
|
|
Loading…
Reference in a new issue