Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
43d0bea2
Commit
43d0bea2
authored
Sep 13, 2015
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up the html a lot. The page doesn't use tables for layout anymore.
parent
af928c9a
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
141 additions
and
93 deletions
+141
-93
algorithms.xml
docs/docs/algorithms.xml
+0
-1
api.xml
docs/docs/api.xml
+0
-1
bayes.xml
docs/docs/bayes.xml
+0
-1
books.xml
docs/docs/books.xml
+0
-1
compile.xml
docs/docs/compile.xml
+0
-1
compression.xml
docs/docs/compression.xml
+0
-1
containers.xml
docs/docs/containers.xml
+0
-1
dlib.css
docs/docs/dlib.css
+99
-20
graph_tools.xml
docs/docs/graph_tools.xml
+0
-1
howto_contribute.xml
docs/docs/howto_contribute.xml
+0
-1
imaging.xml
docs/docs/imaging.xml
+0
-1
intro.xml
docs/docs/intro.xml
+0
-1
linear_algebra.xml
docs/docs/linear_algebra.xml
+0
-1
main_menu.xml
docs/docs/main_menu.xml
+0
-11
metaprogramming.xml
docs/docs/metaprogramming.xml
+0
-1
ml.xml
docs/docs/ml.xml
+0
-1
network.xml
docs/docs/network.xml
+0
-1
optimization.xml
docs/docs/optimization.xml
+0
-1
other.xml
docs/docs/other.xml
+0
-1
parsing.xml
docs/docs/parsing.xml
+0
-1
stylesheet.xsl
docs/docs/stylesheet.xsl
+42
-44
No files found.
docs/docs/algorithms.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents library components that are all basically just implementations of
This page documents library components that are all basically just implementations of
...
...
docs/docs/api.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
...
...
docs/docs/bayes.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents all the tools within the dlib library that relate
This page documents all the tools within the dlib library that relate
...
...
docs/docs/books.xml
View file @
43d0bea2
...
@@ -10,7 +10,6 @@
...
@@ -10,7 +10,6 @@
<body>
<body>
<br/><br/>
<p>
<p>
One of the major goals of dlib is to have documentation that enables
One of the major goals of dlib is to have documentation that enables
someone to easily make use of its various components. Ideally,
someone to easily make use of its various components. Ideally,
...
...
docs/docs/compile.xml
View file @
43d0bea2
...
@@ -11,7 +11,6 @@
...
@@ -11,7 +11,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<h2>
Compiling on Any Operating System Using CMake
</h2>
<h2>
Compiling on Any Operating System Using CMake
</h2>
The best way to compile a program that uses dlib is to use
<a
href=
"http://www.cmake.org"
>
CMake
</a>
. For
The best way to compile a program that uses dlib is to use
<a
href=
"http://www.cmake.org"
>
CMake
</a>
. For
...
...
docs/docs/compression.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page contains a bunch of objects that implement various parts of compression algorithms.
This page contains a bunch of objects that implement various parts of compression algorithms.
They can be put together in different ways to construct many different algorithms.
They can be put together in different ways to construct many different algorithms.
...
...
docs/docs/containers.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
Many of these containers were inspired by the work of the
<a
Many of these containers were inspired by the work of the
<a
href=
"http://www.cse.ohio-state.edu/~weide/rsrg/index.html"
>
Reusable
href=
"http://www.cse.ohio-state.edu/~weide/rsrg/index.html"
>
Reusable
...
...
docs/docs/dlib.css
View file @
43d0bea2
body
{
margin
:
0px
;}
/*
* Overall page layout stuff. It goes like:
*
* ============ page_header =============
* | |
* ============ top_content =============
* | | | |
* | main_menu | main_text | right_menu |
* | | | |
* ============ bottom_content ==========
* | |
* | . |
* | . |
* | . |
* | |
*/
body
{
margin
:
0px
;
background-color
:
#EDF3EE
;
width
:
62.5em
;
margin-left
:
auto
;
margin-right
:
auto
;
}
#page_header
{
height
:
59px
;
text-align
:
left
;
margin-top
:
0.4em
;
}
#top_content
{
width
:
100%
;
height
:
900px
;
display
:
table
;
}
#top_content
>
div
{
display
:
table-cell
;
}
#main_menu
{
width
:
fit-content
;
padding-bottom
:
6em
;
/* So the menu_footer always has room. */
}
#main_text
{
background-color
:
white
;
border
:
1px
solid
rgb
(
102
,
102
,
102
);
width
:
100%
;
}
#main_text_title
{
margin-top
:
10px
;
margin-bottom
:
20px
;
text-align
:
center
;
font-size
:
2.1em
;
font-weight
:
bold
;
}
#main_text_body
{
vertical-align
:
top
;
padding-left
:
10px
;
padding-right
:
10px
;
}
#right_menu
{
width
:
fit-content
;
min-width
:
9em
;
}
div
.menu
{
vertical-align
:
top
;
position
:
relative
;
background-color
:
#F5F5F5
;
padding
:
7px
;
border
:
1px
solid
rgb
(
102
,
102
,
102
);
}
div
.menu_top
{
}
div
.menu_footer
{
position
:
absolute
;
bottom
:
10px
;
}
#bottom_content
{
}
/* ============================================================= */
pre
{
margin
:
0px
;}
pre
{
margin
:
0px
;}
ul
.tree
li
{
list-style
:
none
;
margin-left
:
10px
;}
ul
.tree
li
{
list-style
:
none
;
margin-left
:
10px
;}
...
@@ -7,6 +103,7 @@ ul.tree li ul { margin-left:10px; padding:0px; }
...
@@ -7,6 +103,7 @@ ul.tree li ul { margin-left:10px; padding:0px; }
li
#term
{
list-style
:
none
;
}
li
#term
{
list-style
:
none
;
}
div
.component
{
div
.component
{
background-color
:
white
;
background-color
:
white
;
border
:
2px
solid
rgb
(
102
,
102
,
102
);
border
:
2px
solid
rgb
(
102
,
102
,
102
);
...
@@ -119,25 +216,6 @@ div.tdn {
...
@@ -119,25 +216,6 @@ div.tdn {
clear
:
both
;
clear
:
both
;
}
}
body
{
text-align
:
center
;
}
div
.entire_page_header
{
width
:
62.5em
;
height
:
59px
;
text-align
:
left
;
margin-top
:
0.4em
;
margin-left
:
auto
;
margin-right
:
auto
;
}
div
.entire_page
{
width
:
62.5em
;
text-align
:
left
;
margin-left
:
auto
;
margin-right
:
auto
;
clear
:
both
;
}
a
{
a
{
text-decoration
:
none
;
text-decoration
:
none
;
...
@@ -196,3 +274,4 @@ div {
...
@@ -196,3 +274,4 @@ div {
font-weight
:
400
;
font-weight
:
400
;
margin
:
0
;
margin
:
0
;
}
}
docs/docs/graph_tools.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
In dlib, there are two types of graph representations. On the one
In dlib, there are two types of graph representations. On the one
...
...
docs/docs/howto_contribute.xml
View file @
43d0bea2
...
@@ -9,7 +9,6 @@
...
@@ -9,7 +9,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<!-- **************************** EASY CONTRIBUTIONS **************************** -->
<!-- **************************** EASY CONTRIBUTIONS **************************** -->
...
...
docs/docs/imaging.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents the functionality present in this library that deals with the
This page documents the functionality present in this library that deals with the
...
...
docs/docs/intro.xml
View file @
43d0bea2
...
@@ -9,7 +9,6 @@
...
@@ -9,7 +9,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
...
...
docs/docs/linear_algebra.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents the core linear algebra tools included in dlib.
This page documents the core linear algebra tools included in dlib.
In particular, the three most important objects in this part of the library are the
In particular, the three most important objects in this part of the library are the
...
...
docs/docs/main_menu.xml
View file @
43d0bea2
...
@@ -555,19 +555,8 @@
...
@@ -555,19 +555,8 @@
</top>
</top>
<bottom>
<bottom>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
Last Modified:
<br/>
Last Modified:
<br/>
<last_modified_date/>
<last_modified_date/>
<br/>
<br/>
</bottom>
</bottom>
</menu>
</menu>
...
...
docs/docs/metaprogramming.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents library components that provide metaprogramming sorts of functionality. For
This page documents library components that provide metaprogramming sorts of functionality. For
...
...
docs/docs/ml.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<a
href=
"ml_guide.svg"
><img
src=
"ml_guide.svg"
width=
"100%"
/></a>
<a
href=
"ml_guide.svg"
><img
src=
"ml_guide.svg"
width=
"100%"
/></a>
<p>
<p>
...
...
docs/docs/network.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents tools built on top of the dlib
<a
href=
"api.html#sockets"
>
sockets API
</a>
.
This page documents tools built on top of the dlib
<a
href=
"api.html#sockets"
>
sockets API
</a>
.
Therefore, all these tools are focused on providing some kind of higher level networking
Therefore, all these tools are focused on providing some kind of higher level networking
...
...
docs/docs/optimization.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents library components that attempt to find the
This page documents library components that attempt to find the
...
...
docs/docs/other.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
...
...
docs/docs/parsing.xml
View file @
43d0bea2
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<body>
<body>
<br/><br/>
<p>
<p>
This page documents the objects and functions that in some way deal with parsing or otherwise
This page documents the objects and functions that in some way deal with parsing or otherwise
...
...
docs/docs/stylesheet.xsl
View file @
43d0bea2
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<xsl:variable
name=
"gray"
>
#E3E3E3
</xsl:variable>
<xsl:variable
name=
"gray"
>
#E3E3E3
</xsl:variable>
<xsl:variable
name=
"background_color"
>
#EDF3EE
</xsl:variable>
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
...
@@ -83,9 +82,9 @@
...
@@ -83,9 +82,9 @@
<body
bgcolor=
"{$background_color}"
>
<body>
<a
name=
"top"
/>
<a
name=
"top"
/>
<div
class=
"entire_
page_header"
>
<div
id=
"
page_header"
>
<xsl:if
test=
"$is_chm != 'true'"
>
<xsl:if
test=
"$is_chm != 'true'"
>
<div
style=
"float:right;width:450px"
>
<div
style=
"float:right;width:450px"
>
<script>
<script>
...
@@ -104,20 +103,21 @@
...
@@ -104,20 +103,21 @@
</xsl:if>
</xsl:if>
<a
href=
"http://dlib.net"
><img
src=
"dlib-logo.png"
/></a>
<a
href=
"http://dlib.net"
><img
src=
"dlib-logo.png"
/></a>
</div>
</div>
<div
class=
"entire_page"
>
<table
bgcolor=
"white"
height=
"100%"
bordercolor=
"{$background_color}"
CELLSPACING=
"0"
CELLPADDING=
"10"
style=
"border:0px;margin-top:2px
"
>
<div
id=
"top_content
"
>
<
tr
height=
"100%
"
>
<
div
id=
"main_menu"
class=
"menu
"
>
<xsl:apply-templates
select=
"document($main_menu)/doc/menu"
/>
<xsl:apply-templates
select=
"document($main_menu)/doc/menu"
/>
</div>
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<td
VALIGN=
"TOP"
width=
"100%"
style=
"border: 1px solid rgb(102,102,102);"
>
<div
id=
"main_text"
>
<xsl:if
test=
"title"
>
<xsl:if
test=
"title"
>
<center><h1>
<xsl:value-of
select=
"title"
/>
</h1></center>
<div
id=
"main_text_title"
>
<xsl:value-of
select=
"title"
/>
</div>
</xsl:if>
</xsl:if>
<xsl:apply-templates
select=
"body"
/>
<div
id=
"main_text_body"
>
<xsl:apply-templates
select=
"body"
/>
<xsl:for-each
select=
"questions"
>
<xsl:for-each
select=
"questions"
>
<xsl:sort
select=
"translate(@group,$lcletters, $ucletters)"
/>
<xsl:sort
select=
"translate(@group,$lcletters, $ucletters)"
/>
<xsl:if
test=
"@group"
><h2><xsl:value-of
select=
"@group"
/></h2></xsl:if>
<xsl:if
test=
"@group"
><h2><xsl:value-of
select=
"@group"
/></h2></xsl:if>
...
@@ -128,29 +128,32 @@
...
@@ -128,29 +128,32 @@
</xsl:for-each>
</xsl:for-each>
</ul>
</ul>
</xsl:for-each>
</xsl:for-each>
</div>
</div>
</td>
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<xsl:choose>
<xsl:choose>
<xsl:when
test=
"menu/@from_file"
>
<xsl:when
test=
"menu/@from_file"
>
<div
id=
"right_menu"
class=
"menu"
>
<xsl:apply-templates
select=
"document(menu/@from_file)/doc/menu"
>
<xsl:apply-templates
select=
"document(menu/@from_file)/doc/menu"
>
<xsl:with-param
name=
"file_name"
select=
"concat(substring-before(menu/@from_file,'.'),'.html')"
/>
<xsl:with-param
name=
"file_name"
select=
"concat(substring-before(menu/@from_file,'.'),'.html')"
/>
</xsl:apply-templates>
</xsl:apply-templates>
</xsl:when>
</div>
<xsl:otherwise>
</xsl:when>
<xsl:apply-templates
select=
"menu"
/>
<xsl:otherwise>
</xsl:otherwise>
<xsl:if
test=
"menu"
>
</xsl:choose>
<div
id=
"right_menu"
class=
"menu"
>
<xsl:apply-templates
select=
"menu"
/>
</div>
<!-- ************************************************************************* -->
</xsl:if>
</tr>
</xsl:otherwise>
</xsl:choose>
</table>
<!-- ************************************************************************* -->
</div>
<div
id=
"bottom_content"
>
<xsl:apply-templates
select=
"components"
/>
<xsl:apply-templates
select=
"components"
/>
<xsl:apply-templates
select=
"questions"
/>
<xsl:apply-templates
select=
"questions"
/>
</div>
</div>
</body>
</body>
...
@@ -209,21 +212,16 @@
...
@@ -209,21 +212,16 @@
<xsl:template
match=
"menu"
>
<xsl:template
match=
"menu"
>
<xsl:param
name=
"file_name"
/>
<xsl:param
name=
"file_name"
/>
<td
BGCOLOR=
"#F5F5F5"
style=
"padding:7px; border: 1px solid rgb(102,102,102);"
VALIGN=
"TOP"
height=
"100%"
>
<div
class=
"menu_top"
>
<br/>
<table
WIDTH=
"{@width}"
height=
"100%"
>
<tr><td
VALIGN=
"TOP"
>
<xsl:apply-templates
select=
"top"
>
<xsl:apply-templates
select=
"top"
>
<xsl:with-param
name=
"file_name"
select=
"$file_name"
/>
<xsl:with-param
name=
"file_name"
select=
"$file_name"
/>
</xsl:apply-templates>
</xsl:apply-templates>
</td><td
width=
"1"
></td></tr>
</div>
<tr><td
valign=
"bottom"
>
<div
class=
"menu_footer"
>
<xsl:apply-templates
select=
"bottom"
>
<xsl:apply-templates
select=
"bottom"
>
<xsl:with-param
name=
"file_name"
select=
"$file_name"
/>
<xsl:with-param
name=
"file_name"
select=
"$file_name"
/>
</xsl:apply-templates>
</xsl:apply-templates>
</td></tr>
</div>
</table>
</td>
</xsl:template>
</xsl:template>
<xsl:template
match=
"item"
>
<xsl:template
match=
"item"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment