Commit 88fe0bd3 authored by Davis King's avatar Davis King

updated docs

parent 76230b99
......@@ -1228,6 +1228,9 @@
<td><a href="dlib/gui_widgets/widgets_abstract.h.html#open_file_box"><img src="guipics/open_file_box.png"/></a></td>
<td><a href="dlib/gui_widgets/widgets_abstract.h.html#save_file_box"><img src="guipics/save_file_box.png"/></a></td>
</tr>
<tr>
<td colspan='3'><a href="dlib/gui_widgets/widgets_abstract.h.html#perspective_window"><img src="guipics/perspective_window.png"/></a></td>
</tr>
</table>
</description>
......@@ -1235,6 +1238,7 @@
<examples>
<example>gui_api_ex.cpp.html</example>
<example>image_ex.cpp.html</example>
<example>3d_point_cloud_ex.cpp.html</example>
<example>surf_ex.cpp.html</example>
<example>bayes_net_gui_ex.cpp.html</example>
</examples>
......
......@@ -302,6 +302,10 @@
<name>Matrix_Expressions</name>
<link>matrix_expressions_ex.cpp.html</link>
</item>
<item>
<name>3D_Point_Cloud</name>
<link>3d_point_cloud_ex.cpp.html</link>
</item>
<item>
<name>Image</name>
<link>image_ex.cpp.html</link>
......
......@@ -923,9 +923,16 @@ function BigToggle(node)
</xsl:if>
</xsl:template>
<xsl:template match="td">
<td align="center">
<xsl:apply-templates/>
</td>
<xsl:if test="@colspan">
<td align="center" colspan="{@colspan}">
<xsl:apply-templates/>
</td>
</xsl:if>
<xsl:if test="not(@colspan)">
<td align="center">
<xsl:apply-templates/>
</td>
</xsl:if>
</xsl:template>
<xsl:template match="tr">
<tr>
......
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