Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
43d0bea2
Commit
43d0bea2
authored
Sep 13, 2015
by
Davis King
Browse files
Cleaned up the html a lot. The page doesn't use tables for layout anymore.
parent
af928c9a
Changes
21
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
99 additions
and
49 deletions
+99
-49
docs/docs/algorithms.xml
docs/docs/algorithms.xml
+0
-1
docs/docs/api.xml
docs/docs/api.xml
+0
-1
docs/docs/bayes.xml
docs/docs/bayes.xml
+0
-1
docs/docs/books.xml
docs/docs/books.xml
+0
-1
docs/docs/compile.xml
docs/docs/compile.xml
+0
-1
docs/docs/compression.xml
docs/docs/compression.xml
+0
-1
docs/docs/containers.xml
docs/docs/containers.xml
+0
-1
docs/docs/dlib.css
docs/docs/dlib.css
+99
-20
docs/docs/graph_tools.xml
docs/docs/graph_tools.xml
+0
-1
docs/docs/howto_contribute.xml
docs/docs/howto_contribute.xml
+0
-1
docs/docs/imaging.xml
docs/docs/imaging.xml
+0
-1
docs/docs/intro.xml
docs/docs/intro.xml
+0
-1
docs/docs/linear_algebra.xml
docs/docs/linear_algebra.xml
+0
-1
docs/docs/main_menu.xml
docs/docs/main_menu.xml
+0
-11
docs/docs/metaprogramming.xml
docs/docs/metaprogramming.xml
+0
-1
docs/docs/ml.xml
docs/docs/ml.xml
+0
-1
docs/docs/network.xml
docs/docs/network.xml
+0
-1
docs/docs/optimization.xml
docs/docs/optimization.xml
+0
-1
docs/docs/other.xml
docs/docs/other.xml
+0
-1
docs/docs/parsing.xml
docs/docs/parsing.xml
+0
-1
No files found.
docs/docs/algorithms.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
This page documents library components that are all basically just implementations of
...
...
docs/docs/api.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
...
...
docs/docs/bayes.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
This page documents all the tools within the dlib library that relate
...
...
docs/docs/books.xml
View file @
43d0bea2
...
...
@@ -10,7 +10,6 @@
<body>
<br/><br/>
<p>
One of the major goals of dlib is to have documentation that enables
someone to easily make use of its various components. Ideally,
...
...
docs/docs/compile.xml
View file @
43d0bea2
...
...
@@ -11,7 +11,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<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
...
...
docs/docs/compression.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
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.
...
...
docs/docs/containers.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
Many of these containers were inspired by the work of the
<a
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
;}
ul
.tree
li
{
list-style
:
none
;
margin-left
:
10px
;}
...
...
@@ -7,6 +103,7 @@ ul.tree li ul { margin-left:10px; padding:0px; }
li
#term
{
list-style
:
none
;
}
div
.component
{
background-color
:
white
;
border
:
2px
solid
rgb
(
102
,
102
,
102
);
...
...
@@ -119,25 +216,6 @@ div.tdn {
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
{
text-decoration
:
none
;
...
...
@@ -196,3 +274,4 @@ div {
font-weight
:
400
;
margin
:
0
;
}
docs/docs/graph_tools.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
In dlib, there are two types of graph representations. On the one
...
...
docs/docs/howto_contribute.xml
View file @
43d0bea2
...
...
@@ -9,7 +9,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<!-- **************************** EASY CONTRIBUTIONS **************************** -->
...
...
docs/docs/imaging.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
This page documents the functionality present in this library that deals with the
...
...
docs/docs/intro.xml
View file @
43d0bea2
...
...
@@ -9,7 +9,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
...
...
docs/docs/linear_algebra.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
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
...
...
docs/docs/main_menu.xml
View file @
43d0bea2
...
...
@@ -555,19 +555,8 @@
</top>
<bottom>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
Last Modified:
<br/>
<last_modified_date/>
<br/>
<br/>
</bottom>
</menu>
...
...
docs/docs/metaprogramming.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
This page documents library components that provide metaprogramming sorts of functionality. For
...
...
docs/docs/ml.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<a
href=
"ml_guide.svg"
><img
src=
"ml_guide.svg"
width=
"100%"
/></a>
<p>
...
...
docs/docs/network.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
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
...
...
docs/docs/optimization.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
This page documents library components that attempt to find the
...
...
docs/docs/other.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
...
...
docs/docs/parsing.xml
View file @
43d0bea2
...
...
@@ -7,7 +7,6 @@
<!-- ************************************************************************* -->
<body>
<br/><br/>
<p>
This page documents the objects and functions that in some way deal with parsing or otherwise
...
...
Prev
1
2
Next
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