mirror of https://github.com/davisking/dlib.git
merged
This commit is contained in:
commit
d37699e64a
|
@ -550,7 +550,7 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<name>Download dlib</name>
|
<name>Download dlib</name>
|
||||||
<link>http://sourceforge.net/projects/dclib/files/latest/download</link>
|
<link>http://dlib.net/files/dlib-<current_release/>.tar.bz2</link>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<name>Who uses dlib?</name>
|
<name>Who uses dlib?</name>
|
||||||
|
@ -571,12 +571,6 @@
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<web>
|
|
||||||
|
|
||||||
<a href="http://sourceforge.net/projects/dclib"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=130373&type=9" width="80" height="15" border="0" alt="Get dlib C++ Library at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
</web>
|
|
||||||
Last Modified:<br/>
|
Last Modified:<br/>
|
||||||
<last_modified_date/>
|
<last_modified_date/>
|
||||||
<br/>
|
<br/>
|
||||||
|
|
|
@ -474,7 +474,8 @@ function BigToggle(node)
|
||||||
<xsl:when test="sub">
|
<xsl:when test="sub">
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="link">
|
<xsl:when test="link">
|
||||||
<a href="{link}" style="float:right"><img src="right.gif" border="0"/></a>
|
<xsl:variable name="linktext"><xsl:apply-templates select="link"/></xsl:variable>
|
||||||
|
<a href="{$linktext}" style="float:right"><img src="right.gif" border="0"/></a>
|
||||||
<a onclick="Toggle(this)" style="cursor: pointer;margin-left:-9px" ><img src="plus.gif" border="0"/><font color="green"><u><xsl:value-of select="name"/></u></font></a>
|
<a onclick="Toggle(this)" style="cursor: pointer;margin-left:-9px" ><img src="plus.gif" border="0"/><font color="green"><u><xsl:value-of select="name"/></u></font></a>
|
||||||
<xsl:apply-templates select="sub">
|
<xsl:apply-templates select="sub">
|
||||||
<xsl:with-param name="file_name" select="$file_name" />
|
<xsl:with-param name="file_name" select="$file_name" />
|
||||||
|
@ -492,7 +493,8 @@ function BigToggle(node)
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="link">
|
<xsl:when test="link">
|
||||||
<a href="{link}"><xsl:value-of select="name"/></a>
|
<xsl:variable name="linktext"><xsl:apply-templates select="link"/></xsl:variable>
|
||||||
|
<a href="{$linktext}"><xsl:value-of select="name"/></a>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<a href="{$file_name}#{name}"><xsl:value-of select="name"/></a>
|
<a href="{$file_name}#{name}"><xsl:value-of select="name"/></a>
|
||||||
|
|
Loading…
Reference in New Issue