"tests/git@developer.sourcefind.cn:OpenDAS/mmcv.git" did not exist on "1ee5315ea20d845952e8938a57b7ecd85ed14a15"
Commit e8a859ce authored by Davis King's avatar Davis King
Browse files

Changed the style sheet so that it can use the link attribute of the spec_file tag even

when inside an extension tag.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403348
parent 8cdb68e8
......@@ -426,7 +426,16 @@
<xsl:apply-templates select="description"/>
<BR/>
<BR/>
<b><font style='font-size:1.3em' color='#007700'>Specification: </font></b> <a href="{spec_file}.html"><xsl:value-of select="spec_file"/></a>
<xsl:choose>
<xsl:when test="spec_file/@link = 'true'">
<b><font style='font-size:1.3em' color='#007700'>Specification: </font></b> <a href="{spec_file}.html#{name}"><xsl:value-of select="spec_file"/></a>
</xsl:when>
<xsl:otherwise>
<b><font style='font-size:1.3em' color='#007700'>Specification: </font></b> <a href="{spec_file}.html"><xsl:value-of select="spec_file"/></a>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="examples"/>
<xsl:apply-templates select="implementations">
<xsl:with-param name="checked" select="$checked" />
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment