Move API folder
This commit is contained in:
parent
cee2e1892e
commit
e59f411c88
63 changed files with 9236 additions and 2 deletions
214
docs/API/css/main.css
Normal file
214
docs/API/css/main.css
Normal file
|
|
@ -0,0 +1,214 @@
|
|||
/*
|
||||
Copyright (c) 2009 Vladimir Kolesnikov
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
a {
|
||||
color: #00F;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #77F;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
body, td, p {
|
||||
font-family: "Bitstream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
|
||||
background: #FFF;
|
||||
color: #000;
|
||||
margin: 0px;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin: 2em;
|
||||
margin-left: 3.5em;
|
||||
margin-right: 3.5em;
|
||||
}
|
||||
|
||||
#description p {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.sectiontitle {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
padding: 0.5em;
|
||||
padding-left: 2em;
|
||||
background: #005;
|
||||
color: #FFF;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.attr-rw {
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
text-align: center;
|
||||
color: #055;
|
||||
}
|
||||
|
||||
.attr-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.attr-desc {
|
||||
}
|
||||
|
||||
.attr-desc p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.attr-value {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.file-title-prefix {
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
.file-title {
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
background: #005;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.banner {
|
||||
background: #005;
|
||||
color: #FFF;
|
||||
border: 1px solid black;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.banner td {
|
||||
background: transparent;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
h1 a, h2 a, .sectiontitle a, .banner a {
|
||||
color: #FF0;
|
||||
}
|
||||
|
||||
h1 a:hover, h2 a:hover, .sectiontitle a:hover, .banner a:hover {
|
||||
color: #FF7;
|
||||
}
|
||||
|
||||
.dyn-source {
|
||||
display: none;
|
||||
background: #fffde8;
|
||||
color: #000;
|
||||
border: #ffe0bb dotted 1px;
|
||||
margin: 0.5em 2em 0.5em 2em;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.dyn-source .cmt {
|
||||
color: #00F;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.dyn-source .kw {
|
||||
color: #070;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.method {
|
||||
margin-left: 1em;
|
||||
margin-right: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.description pre {
|
||||
padding: 0.5em;
|
||||
border: #ffe0bb dotted 1px;
|
||||
background: #fffde8;
|
||||
}
|
||||
|
||||
.method .title {
|
||||
font-family: monospace;
|
||||
font-size: large;
|
||||
border-bottom: 1px dashed black;
|
||||
margin-bottom: 0.3em;
|
||||
padding-bottom: 0.1em;
|
||||
}
|
||||
|
||||
.method .description, .method .sourcecode {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.description p, .sourcecode p {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.method .sourcecode p.source-link {
|
||||
text-indent: 0em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.method .aka {
|
||||
margin-top: 0.3em;
|
||||
margin-left: 1em;
|
||||
font-style: italic;
|
||||
text-indent: 2em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
padding: 1em;
|
||||
margin-left: -1.5em;
|
||||
font-size: x-large;
|
||||
font-weight: bold;
|
||||
color: #FFF;
|
||||
background: #007;
|
||||
}
|
||||
|
||||
h2 {
|
||||
padding: 0.5em 1em 0.5em 1em;
|
||||
margin-left: -1.5em;
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
color: #FFF;
|
||||
background: #009;
|
||||
}
|
||||
|
||||
h3, h4, h5, h6 {
|
||||
color: #220088;
|
||||
border-bottom: #5522bb solid 1px;
|
||||
}
|
||||
|
||||
.sourcecode > pre {
|
||||
padding: 0.5em;
|
||||
border: 1px dotted black;
|
||||
background: #FFE;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: 0.7em;
|
||||
}
|
||||
427
docs/API/css/panel.css
Normal file
427
docs/API/css/panel.css
Normal file
|
|
@ -0,0 +1,427 @@
|
|||
/*
|
||||
Copyright (c) 2009 Vladimir Kolesnikov
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/* Panel (begin) */
|
||||
.panel
|
||||
{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: #FFF;
|
||||
z-index: 2;
|
||||
font-family: "Helvetica Neue", "Arial", sans-serif;
|
||||
//zoom: 1;
|
||||
}
|
||||
|
||||
.panel_tree .results,
|
||||
.panel_results .tree
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Header with search box (begin) */
|
||||
.panel .header
|
||||
{
|
||||
width: 100%;
|
||||
height: 59px;
|
||||
border-bottom: 1px solid #666;
|
||||
position: relative;
|
||||
left: 0; top: 0;
|
||||
background: #e8e8e8;
|
||||
}
|
||||
|
||||
.panel .header div.nav
|
||||
{
|
||||
padding-top: 7px;
|
||||
margin: 0 7px;
|
||||
}
|
||||
|
||||
.panel .header table
|
||||
{
|
||||
height: 29px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.panel .header table td
|
||||
{
|
||||
vertical-align: middle;
|
||||
text-align: middle;
|
||||
}
|
||||
|
||||
.panel .header form
|
||||
{
|
||||
float: right;
|
||||
text-align: bottom;
|
||||
}
|
||||
|
||||
.panel .header h1
|
||||
{
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: #777;
|
||||
text-align: bottom;
|
||||
}
|
||||
|
||||
.panel .header input
|
||||
{
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
display: inline-block;
|
||||
-webkit-appearance: searchfield;
|
||||
height: 22px;
|
||||
//height: auto;
|
||||
}
|
||||
|
||||
/* Header with search box (end) */
|
||||
|
||||
|
||||
/* Results (begin) */
|
||||
.panel .result
|
||||
{
|
||||
position: absolute;
|
||||
top: 60px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
//height: expression((this.parentNode.offsetHeight - 31));
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
-overflow-y: hidden;
|
||||
background: #EDF3FE url(../i/results_bg.png);
|
||||
z-index: 2;
|
||||
//zoom:1;
|
||||
}
|
||||
|
||||
.panel .result ul
|
||||
{
|
||||
font-size: 0.8em;
|
||||
width: 100%;
|
||||
background: #EDF3FE url(../i/results_bg.png);
|
||||
//zoom:1;
|
||||
}
|
||||
|
||||
.panel .result ul li
|
||||
{
|
||||
height: 46px;
|
||||
-height: 50px;
|
||||
//display: inline;
|
||||
//width: 100%;
|
||||
//zoom: 1;
|
||||
overflow: hidden;
|
||||
padding: 4px 10px 0 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.panel .result ul li h1
|
||||
{
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
color: #333;
|
||||
margin-bottom: 2px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.panel .result ul li p
|
||||
{
|
||||
font-size: 11px;
|
||||
color: #333;
|
||||
margin-bottom: 2px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.panel .result ul li h1 i,
|
||||
.panel .result ul li p.snippet
|
||||
{
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.panel .result ul li b
|
||||
{
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.panel .result ul li.current
|
||||
{
|
||||
background: #3875D7;
|
||||
}
|
||||
|
||||
.panel .result ul li.current h1,
|
||||
.panel .result ul li.current p
|
||||
{
|
||||
color: #DDD;
|
||||
}
|
||||
|
||||
.panel .result ul li.current h1 i,
|
||||
.panel .result ul li.current p.snippet
|
||||
{
|
||||
color: #AAA;
|
||||
}
|
||||
|
||||
.panel .result ul li.current b
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
|
||||
.panel .result ul li:hover,
|
||||
.panel .result ul li.selected
|
||||
{
|
||||
background: #d0d0d0;
|
||||
}
|
||||
|
||||
.panel .result ul li.current:hover
|
||||
{
|
||||
background: #2965C0;
|
||||
}
|
||||
|
||||
.panel .result ul li .badge
|
||||
{
|
||||
margin-right: 0.4em;
|
||||
margin-left: -0.2em;
|
||||
padding: 0 0.2em;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.panel .result ul li .badge_1
|
||||
{
|
||||
background: #ACDBF4;
|
||||
}
|
||||
|
||||
.panel .result ul li.current .badge_1
|
||||
{
|
||||
background: #97BFD7;
|
||||
}
|
||||
|
||||
.panel .result ul li .badge_2
|
||||
{
|
||||
background: #ACF3C3;
|
||||
}
|
||||
|
||||
.panel .result ul li.current .badge_2
|
||||
{
|
||||
background: #98D7AC;
|
||||
}
|
||||
|
||||
.panel .result ul li .badge_3
|
||||
{
|
||||
background: #E0F3AC;
|
||||
}
|
||||
|
||||
.panel .result ul li.current .badge_3
|
||||
{
|
||||
background: #C4D798;
|
||||
}
|
||||
|
||||
.panel .result ul li .badge_4
|
||||
{
|
||||
background: #D7CA98;
|
||||
}
|
||||
|
||||
.panel .result ul li.current .badge_4
|
||||
{
|
||||
background: #A6B0AC;
|
||||
}
|
||||
|
||||
.panel .result ul li .badge_5
|
||||
{
|
||||
background: #F3C8AC;
|
||||
}
|
||||
|
||||
.panel .result ul li.current .badge_5
|
||||
{
|
||||
background: #D7B198;
|
||||
}
|
||||
|
||||
.panel .result ul li .badge_6
|
||||
{
|
||||
background: #F3ACC3;
|
||||
}
|
||||
|
||||
.panel .result ul li.current .badge_6
|
||||
{
|
||||
background: #D798AB;
|
||||
}
|
||||
|
||||
/* Results (end) */
|
||||
|
||||
/* Tree (begin) */ /**/
|
||||
.panel .tree
|
||||
{
|
||||
position: absolute;
|
||||
top: 60px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
//zoom: 1;
|
||||
//height: expression((this.parentNode.offsetHeight - 31));
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
-overflow-y: hidden;
|
||||
background: #EDF3FE url(../i/tree_bg.png);
|
||||
z-index: 30;
|
||||
}
|
||||
|
||||
.panel .tree ul
|
||||
{
|
||||
background: #EDF3FE url(../i/tree_bg.png);
|
||||
}
|
||||
|
||||
.panel .tree li
|
||||
{
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
//height: 23px;
|
||||
//display: inline;
|
||||
//zoom: 1;
|
||||
//width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.panel .tree li .content
|
||||
{
|
||||
padding-left: 18px;
|
||||
padding-top: 5px;
|
||||
height: 18px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.panel .tree li .icon
|
||||
{
|
||||
width: 10px;
|
||||
height: 9px;
|
||||
background: url(../i/arrows.png);
|
||||
background-position: 0 -9px;
|
||||
position: absolute;
|
||||
left: 1px;
|
||||
top: 8px;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.panel .tree li.closed .icon
|
||||
{
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.panel .tree ul li h1
|
||||
{
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
color: #000;
|
||||
margin-bottom: 2px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.panel .tree ul li p
|
||||
{
|
||||
font-size: 11px;
|
||||
color: #666;
|
||||
margin-bottom: 2px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.panel .tree ul li h1 i
|
||||
{
|
||||
color: #999;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.panel .tree ul li.empty
|
||||
{
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
.panel .tree ul li.empty h1,
|
||||
.panel .tree ul li.empty p
|
||||
{
|
||||
color: #666;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.panel .tree ul li.current
|
||||
{
|
||||
background: #3875D7;
|
||||
}
|
||||
|
||||
.panel .tree ul li.current .icon
|
||||
{
|
||||
background-position: -10px -9px;
|
||||
}
|
||||
|
||||
.panel .tree ul li.current.closed .icon
|
||||
{
|
||||
background-position: -10px 0;
|
||||
}
|
||||
|
||||
.panel .tree ul li.current h1
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.panel .tree ul li.current p
|
||||
{
|
||||
color: #CCC;
|
||||
}
|
||||
|
||||
.panel .tree ul li.current.empty h1,
|
||||
.panel .tree ul li.current.empty p
|
||||
{
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.panel .tree ul li:hover
|
||||
{
|
||||
background: #d0d0d0;
|
||||
}
|
||||
|
||||
.panel .tree ul li.current:hover
|
||||
{
|
||||
background: #2965C0;
|
||||
}
|
||||
|
||||
.panel .tree .stopper
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
/* Tree (end) */ /**/
|
||||
|
||||
/* Panel (end) */
|
||||
|
||||
|
||||
.panel .loader
|
||||
{
|
||||
text-align: center;
|
||||
margin-top: 2px;
|
||||
width: 100%;
|
||||
height: 59px;
|
||||
}
|
||||
|
||||
.panel .loader img
|
||||
{
|
||||
vertical-align: middle;
|
||||
}
|
||||
53
docs/API/css/reset.css
Normal file
53
docs/API/css/reset.css
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
/* http://meyerweb.com/eric/tools/css/reset/ */
|
||||
/* v1.0 | 20080212 */
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-size: 100%;
|
||||
vertical-align: baseline;
|
||||
background: transparent;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
/* remember to define focus styles! */
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* remember to highlight inserts somehow! */
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue