ffi-rexiv2 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +8 -0
- data/doc/Exiv.html +156 -0
- data/doc/_index.html +112 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +474 -0
- data/doc/file.LICENSE.html +94 -0
- data/doc/file.README.html +82 -0
- data/doc/file_list.html +61 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +82 -0
- data/doc/js/app.js +243 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +51 -0
- data/doc/top-level-namespace.html +112 -0
- data/lib/ffi-rexiv2.rb +4 -0
- data/lib/ffi-rexiv2/libexiv2.rb +9 -0
- data/lib/ffi-rexiv2/version.rb +4 -0
- metadata +178 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: c857dfaac736c3e9ddf808dc1e175416886cbe1e
|
|
4
|
+
data.tar.gz: 3021dc525d8b411734563879be99d678a7175051
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 44c5ceae1df107ce26c1290add0fd2c2c48a86f33b2645eb8525e01c9dcb5df64bc4de489e968d71bc7fd6cf1e1656107483d04d4cda303fc04abcfb9a69c403
|
|
7
|
+
data.tar.gz: 4703ed403bc692a8356758eb0f4f00ffda6497bed39893265027d033a608a6135c847e12eb715e53e88e40ebbab9c70e66b5330ea91542f6e39832767e811cf5
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Alex McLain
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# ffi-rexiv2
|
|
2
|
+
|
|
3
|
+
A low-level Ruby FFI wrapper for [libexiv2](http://www.exiv2.org/).
|
|
4
|
+
It is designed for library maintainers who wish to create EXIF utilties using
|
|
5
|
+
libexiv2 under the hood. *This library is not intended to be used directly from
|
|
6
|
+
an application.*
|
|
7
|
+
|
|
8
|
+
* [libexiv2 API documentation](http://www.exiv2.org/doc/classes.html)
|
data/doc/Exiv.html
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>
|
|
7
|
+
Module: Exiv
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.8.7.6
|
|
10
|
+
|
|
11
|
+
</title>
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
|
16
|
+
|
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
|
18
|
+
pathId = "Exiv";
|
|
19
|
+
relpath = '';
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
24
|
+
|
|
25
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
</head>
|
|
29
|
+
<body>
|
|
30
|
+
<div class="nav_wrap">
|
|
31
|
+
<iframe id="nav" src="class_list.html"></iframe>
|
|
32
|
+
<div id="resizer"></div>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
<div id="main" tabindex="-1">
|
|
36
|
+
<div id="header">
|
|
37
|
+
<div id="menu">
|
|
38
|
+
|
|
39
|
+
<a href="_index.html">Index (E)</a> »
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
<span class="title">Exiv</span>
|
|
43
|
+
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div id="search">
|
|
47
|
+
|
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
|
49
|
+
href="class_list.html">
|
|
50
|
+
|
|
51
|
+
<svg width="24" height="24">
|
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
|
55
|
+
</svg>
|
|
56
|
+
</a>
|
|
57
|
+
|
|
58
|
+
</div>
|
|
59
|
+
<div class="clear"></div>
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
<iframe id="search_frame" src="class_list.html"></iframe>
|
|
63
|
+
|
|
64
|
+
<div id="content"><h1>Module: Exiv
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
</h1>
|
|
69
|
+
<div class="box_info">
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
<dl>
|
|
75
|
+
<dt>Extended by:</dt>
|
|
76
|
+
<dd>FFI::Library</dd>
|
|
77
|
+
</dl>
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
<dl>
|
|
87
|
+
<dt>Defined in:</dt>
|
|
88
|
+
<dd>lib/ffi-rexiv2/libexiv2.rb<span class="defines">,<br />
|
|
89
|
+
lib/ffi-rexiv2/version.rb</span>
|
|
90
|
+
</dd>
|
|
91
|
+
</dl>
|
|
92
|
+
|
|
93
|
+
</div>
|
|
94
|
+
|
|
95
|
+
<h2>Overview</h2><div class="docstring">
|
|
96
|
+
<div class="discussion">
|
|
97
|
+
|
|
98
|
+
<p>A low-level Ruby FFI wrapper for libexiv2.</p>
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
<div class="tags">
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<p class="tag_title">See Also:</p>
|
|
107
|
+
<ul class="see">
|
|
108
|
+
|
|
109
|
+
<li><a href="http://www.exiv2.org/doc/classes.html" target="_parent" title="libexiv2 API documentation">libexiv2 API documentation</a></li>
|
|
110
|
+
|
|
111
|
+
</ul>
|
|
112
|
+
|
|
113
|
+
</div>
|
|
114
|
+
<h2>Constant Summary</h2>
|
|
115
|
+
|
|
116
|
+
<dl class="constants">
|
|
117
|
+
|
|
118
|
+
<dt id="VERSION-constant" class="">VERSION =
|
|
119
|
+
<div class="docstring">
|
|
120
|
+
<div class="discussion">
|
|
121
|
+
|
|
122
|
+
<p>Current version of ffi-rexiv2.</p>
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
<div class="tags">
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
</div>
|
|
131
|
+
</dt>
|
|
132
|
+
<dd><pre class="code"><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>0.1.0</span><span class='tstring_end'>"</span></span></pre></dd>
|
|
133
|
+
|
|
134
|
+
</dl>
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
</div>
|
|
147
|
+
|
|
148
|
+
<div id="footer">
|
|
149
|
+
Generated on Thu May 26 21:07:46 2016 by
|
|
150
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
151
|
+
0.8.7.6 (ruby-2.1.7).
|
|
152
|
+
</div>
|
|
153
|
+
|
|
154
|
+
</div>
|
|
155
|
+
</body>
|
|
156
|
+
</html>
|
data/doc/_index.html
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>
|
|
7
|
+
Documentation by YARD 0.8.7.6
|
|
8
|
+
|
|
9
|
+
</title>
|
|
10
|
+
|
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript" charset="utf-8">
|
|
16
|
+
pathId = null;
|
|
17
|
+
relpath = '';
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
22
|
+
|
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
</head>
|
|
27
|
+
<body>
|
|
28
|
+
<div class="nav_wrap">
|
|
29
|
+
<iframe id="nav" src="class_list.html"></iframe>
|
|
30
|
+
<div id="resizer"></div>
|
|
31
|
+
</div>
|
|
32
|
+
|
|
33
|
+
<div id="main" tabindex="-1">
|
|
34
|
+
<div id="header">
|
|
35
|
+
<div id="menu">
|
|
36
|
+
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<div id="search">
|
|
40
|
+
|
|
41
|
+
<a class="full_list_link" id="class_list_link"
|
|
42
|
+
href="class_list.html">
|
|
43
|
+
|
|
44
|
+
<svg width="24" height="24">
|
|
45
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
|
46
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
|
47
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
|
48
|
+
</svg>
|
|
49
|
+
</a>
|
|
50
|
+
|
|
51
|
+
</div>
|
|
52
|
+
<div class="clear"></div>
|
|
53
|
+
</div>
|
|
54
|
+
|
|
55
|
+
<iframe id="search_frame" src="class_list.html"></iframe>
|
|
56
|
+
|
|
57
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.6</h1>
|
|
58
|
+
<div id="listing">
|
|
59
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
|
60
|
+
|
|
61
|
+
<h2>File Listing</h2>
|
|
62
|
+
<ul id="files" class="index_inline_list">
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<li class="r1"><a href="index.html" title="README">README</a></li>
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
<li class="r2"><a href="file.LICENSE.html" title="LICENSE">LICENSE</a></li>
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
</ul>
|
|
72
|
+
|
|
73
|
+
<div class="clear"></div>
|
|
74
|
+
<h2>Namespace Listing A-Z</h2>
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
<table>
|
|
80
|
+
<tr>
|
|
81
|
+
<td valign='top' width="33%">
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
<ul id="alpha_E" class="alpha">
|
|
85
|
+
<li class="letter">E</li>
|
|
86
|
+
<ul>
|
|
87
|
+
|
|
88
|
+
<li>
|
|
89
|
+
<span class='object_link'><a href="Exiv.html" title="Exiv (module)">Exiv</a></span>
|
|
90
|
+
|
|
91
|
+
</li>
|
|
92
|
+
|
|
93
|
+
</ul>
|
|
94
|
+
</ul>
|
|
95
|
+
|
|
96
|
+
</td>
|
|
97
|
+
</tr>
|
|
98
|
+
</table>
|
|
99
|
+
|
|
100
|
+
</div>
|
|
101
|
+
|
|
102
|
+
</div>
|
|
103
|
+
|
|
104
|
+
<div id="footer">
|
|
105
|
+
Generated on Thu May 26 21:07:45 2016 by
|
|
106
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
107
|
+
0.8.7.6 (ruby-2.1.7).
|
|
108
|
+
</div>
|
|
109
|
+
|
|
110
|
+
</div>
|
|
111
|
+
</body>
|
|
112
|
+
</html>
|
data/doc/class_list.html
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
5
|
+
<meta charset="utf-8" />
|
|
6
|
+
|
|
7
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
|
|
8
|
+
|
|
9
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
<title>Class List</title>
|
|
19
|
+
<base id="base_target" target="_parent" />
|
|
20
|
+
</head>
|
|
21
|
+
<body>
|
|
22
|
+
<div id="content">
|
|
23
|
+
<div class="fixed_header">
|
|
24
|
+
<h1 id="full_list_header">Class List</h1>
|
|
25
|
+
<div id="full_list_nav">
|
|
26
|
+
|
|
27
|
+
<span><a target="_self" href="class_list.html">
|
|
28
|
+
Classes
|
|
29
|
+
</a></span>
|
|
30
|
+
|
|
31
|
+
<span><a target="_self" href="method_list.html">
|
|
32
|
+
Methods
|
|
33
|
+
</a></span>
|
|
34
|
+
|
|
35
|
+
<span><a target="_self" href="file_list.html">
|
|
36
|
+
Files
|
|
37
|
+
</a></span>
|
|
38
|
+
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div id="search">Search: <input type="text" /></div>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<ul id="full_list" class="class">
|
|
45
|
+
<li id="object_" class="odd"><div class="item" style="padding-left:30px"><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></div></li>
|
|
46
|
+
<li id='object_Exiv' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Exiv.html" title="Exiv (module)">Exiv</a></span><small class='search_info'>Top Level Namespace</small></div></li>
|
|
47
|
+
|
|
48
|
+
</ul>
|
|
49
|
+
</div>
|
|
50
|
+
</body>
|
|
51
|
+
</html>
|
data/doc/css/common.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Override this file with custom rules */
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
body {
|
|
2
|
+
margin: 0;
|
|
3
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
|
4
|
+
font-size: 13px;
|
|
5
|
+
height: 101%;
|
|
6
|
+
overflow-x: hidden;
|
|
7
|
+
background: #fafafa;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
h1 { padding: 12px 10px; padding-bottom: 0; margin: 0; font-size: 1.4em; }
|
|
11
|
+
.clear { clear: both; }
|
|
12
|
+
.fixed_header { position: fixed; background: #fff; width: 100%; padding-bottom: 10px; margin-top: 0; top: 0; z-index: 9999; height: 70px; }
|
|
13
|
+
#search { position: absolute; right: 5px; top: 9px; padding-left: 24px; }
|
|
14
|
+
#content.insearch #search, #content.insearch #noresults { background: url(data:image/gif;base64,R0lGODlhEAAQAPYAAP///wAAAPr6+pKSkoiIiO7u7sjIyNjY2J6engAAAI6OjsbGxjIyMlJSUuzs7KamppSUlPLy8oKCghwcHLKysqSkpJqamvT09Pj4+KioqM7OzkRERAwMDGBgYN7e3ujo6Ly8vCoqKjY2NkZGRtTU1MTExDw8PE5OTj4+PkhISNDQ0MrKylpaWrS0tOrq6nBwcKysrLi4uLq6ul5eXlxcXGJiYoaGhuDg4H5+fvz8/KKiohgYGCwsLFZWVgQEBFBQUMzMzDg4OFhYWBoaGvDw8NbW1pycnOLi4ubm5kBAQKqqqiQkJCAgIK6urnJyckpKSjQ0NGpqatLS0sDAwCYmJnx8fEJCQlRUVAoKCggICLCwsOTk5ExMTPb29ra2tmZmZmhoaNzc3KCgoBISEiIiIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCAAAACwAAAAAEAAQAAAHaIAAgoMgIiYlg4kACxIaACEJCSiKggYMCRselwkpghGJBJEcFgsjJyoAGBmfggcNEx0flBiKDhQFlIoCCA+5lAORFb4AJIihCRbDxQAFChAXw9HSqb60iREZ1omqrIPdJCTe0SWI09GBACH5BAkIAAAALAAAAAAQABAAAAdrgACCgwc0NTeDiYozCQkvOTo9GTmDKy8aFy+NOBA7CTswgywJDTIuEjYFIY0JNYMtKTEFiRU8Pjwygy4ws4owPyCKwsMAJSTEgiQlgsbIAMrO0dKDGMTViREZ14kYGRGK38nHguHEJcvTyIEAIfkECQgAAAAsAAAAABAAEAAAB2iAAIKDAggPg4iJAAMJCRUAJRIqiRGCBI0WQEEJJkWDERkYAAUKEBc4Po1GiKKJHkJDNEeKig4URLS0ICImJZAkuQAhjSi/wQyNKcGDCyMnk8u5rYrTgqDVghgZlYjcACTA1sslvtHRgQAh+QQJCAAAACwAAAAAEAAQAAAHZ4AAgoOEhYaCJSWHgxGDJCQARAtOUoQRGRiFD0kJUYWZhUhKT1OLhR8wBaaFBzQ1NwAlkIszCQkvsbOHL7Y4q4IuEjaqq0ZQD5+GEEsJTDCMmIUhtgk1lo6QFUwJVDKLiYJNUd6/hoEAIfkECQgAAAAsAAAAABAAEAAAB2iAAIKDhIWGgiUlh4MRgyQkjIURGRiGGBmNhJWHm4uen4ICCA+IkIsDCQkVACWmhwSpFqAABQoQF6ALTkWFnYMrVlhWvIKTlSAiJiVVPqlGhJkhqShHV1lCW4cMqSkAR1ofiwsjJyqGgQAh+QQJCAAAACwAAAAAEAAQAAAHZ4AAgoOEhYaCJSWHgxGDJCSMhREZGIYYGY2ElYebi56fhyWQniSKAKKfpaCLFlAPhl0gXYNGEwkhGYREUywag1wJwSkHNDU3D0kJYIMZQwk8MjPBLx9eXwuETVEyAC/BOKsuEjYFhoEAIfkECQgAAAAsAAAAABAAEAAAB2eAAIKDhIWGgiUlh4MRgyQkjIURGRiGGBmNhJWHm4ueICImip6CIQkJKJ4kigynKaqKCyMnKqSEK05StgAGQRxPYZaENqccFgIID4KXmQBhXFkzDgOnFYLNgltaSAAEpxa7BQoQF4aBACH5BAkIAAAALAAAAAAQABAAAAdogACCg4SFggJiPUqCJSWGgkZjCUwZACQkgxGEXAmdT4UYGZqCGWQ+IjKGGIUwPzGPhAc0NTewhDOdL7Ykji+dOLuOLhI2BbaFETICx4MlQitdqoUsCQ2vhKGjglNfU0SWmILaj43M5oEAOwAAAAAAAAAAAA==) no-repeat center left; }
|
|
15
|
+
#full_list { padding: 0; list-style: none; margin-left: 0; margin-top: 80px; font-size: 1.1em; }
|
|
16
|
+
#full_list ul { padding: 0; }
|
|
17
|
+
#full_list li { padding: 0; margin: 0; list-style: none; }
|
|
18
|
+
#full_list li .item { padding: 5px 5px 5px 12px; }
|
|
19
|
+
#noresults { padding: 7px 12px; background: #fff; }
|
|
20
|
+
#content.insearch #noresults { margin-left: 7px; }
|
|
21
|
+
li.collapsed ul { display: none; }
|
|
22
|
+
li a.toggle { cursor: default; position: relative; left: -5px; top: 4px; text-indent: -999px; width: 10px; height: 9px; margin-left: -10px; display: block; float: left; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTM5jWRgMAAAAVdEVYdENyZWF0aW9uIFRpbWUAMy8xNC8wOeNZPpQAAAE2SURBVDiNrZTBccIwEEXfelIAHUA6CZ24BGaWO+FuzZAK4k6gg5QAdGAq+Bxs2Yqx7BzyL7Llp/VfzZeQhCTc/ezuGzKKnKSzpCxXJM8fwNXda3df5RZETlIt6YUzSQDs93sl8w3wBZxCCE10GM1OcWbWjB2mWgEH4Mfdyxm3PSepBHibgQE2wLe7r4HjEidpnXMYdQPKEMJcsZ4zs2POYQOcaPfwMVOo58zsAdMt18BuoVDPxUJRacELbXv3hUIX2vYmOUvi8C8ydz/ThjXrqKqqLbDIAdsCKBd+Wo7GWa7o9qzOQHVVVXeAbs+yHHCH4aTsaCOQqunmUy1yBUAXkdMIfMlgF5EXLo2OpV/c/Up7jG4hhHcYLgWzAZXUc2b2ixsfvc/RmNNfOXD3Q/oeL9axJE1yT9IOoUu6MGUkAAAAAElFTkSuQmCC) no-repeat bottom left; }
|
|
23
|
+
li.collapsed a.toggle { opacity: 0.5; cursor: default; background-position: top left; }
|
|
24
|
+
li { color: #888; cursor: pointer; }
|
|
25
|
+
li.deprecated { text-decoration: line-through; font-style: italic; }
|
|
26
|
+
li.odd { background: #f0f0f0; }
|
|
27
|
+
li.even { background: #fafafa; }
|
|
28
|
+
.item:hover { background: #ddd; }
|
|
29
|
+
li small:before { content: "("; }
|
|
30
|
+
li small:after { content: ")"; }
|
|
31
|
+
li small.search_info { display: none; }
|
|
32
|
+
a, a:visited { text-decoration: none; color: #05a; }
|
|
33
|
+
li.clicked > .item { background: #05a; color: #ccc; }
|
|
34
|
+
li.clicked > .item a, li.clicked > .item a:visited { color: #eee; }
|
|
35
|
+
li.clicked > .item a.toggle { opacity: 0.5; background-position: bottom right; }
|
|
36
|
+
li.collapsed.clicked a.toggle { background-position: top right; }
|
|
37
|
+
#search input { border: 1px solid #bbb; border-radius: 3px; }
|
|
38
|
+
#full_list_nav { margin-left: 10px; font-size: 0.9em; display: block; color: #aaa; }
|
|
39
|
+
#full_list_nav a, #nav a:visited { color: #358; }
|
|
40
|
+
#full_list_nav a:hover { background: transparent; color: #5af; }
|
|
41
|
+
#full_list_nav span:after { content: ' | '; }
|
|
42
|
+
#full_list_nav span:last-child:after { content: ''; }
|
|
43
|
+
|
|
44
|
+
#content h1 { margin-top: 0; }
|
|
45
|
+
li { white-space: nowrap; cursor: normal; }
|
|
46
|
+
li small { display: block; font-size: 0.8em; }
|
|
47
|
+
li small:before { content: ""; }
|
|
48
|
+
li small:after { content: ""; }
|
|
49
|
+
li small.search_info { display: none; }
|
|
50
|
+
#search { width: 170px; position: static; margin: 3px; margin-left: 10px; font-size: 0.9em; color: #888; padding-left: 0; padding-right: 24px; }
|
|
51
|
+
#content.insearch #search { background-position: center right; }
|
|
52
|
+
#search input { width: 110px; }
|
|
53
|
+
|
|
54
|
+
#full_list.insearch ul { display: block; }
|
|
55
|
+
#full_list.insearch .item { display: none; }
|
|
56
|
+
#full_list.insearch .found { display: block; padding-left: 11px !important; }
|
|
57
|
+
#full_list.insearch li a.toggle { display: none; }
|
|
58
|
+
#full_list.insearch li small.search_info { display: block; }
|
data/doc/css/style.css
ADDED
|
@@ -0,0 +1,474 @@
|
|
|
1
|
+
html {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
}
|
|
5
|
+
body {
|
|
6
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
|
7
|
+
font-size: 13px;
|
|
8
|
+
width: 100%;
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
display: flex;
|
|
12
|
+
display: -webkit-flex;
|
|
13
|
+
display: -ms-flexbox;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#nav {
|
|
17
|
+
position: relative;
|
|
18
|
+
width: 100%;
|
|
19
|
+
height: 100%;
|
|
20
|
+
border: 0;
|
|
21
|
+
border-right: 1px dotted #eee;
|
|
22
|
+
overflow: auto;
|
|
23
|
+
}
|
|
24
|
+
.nav_wrap {
|
|
25
|
+
margin: 0;
|
|
26
|
+
padding: 0;
|
|
27
|
+
width: 20%;
|
|
28
|
+
height: 100%;
|
|
29
|
+
position: relative;
|
|
30
|
+
display: flex;
|
|
31
|
+
display: -webkit-flex;
|
|
32
|
+
display: -ms-flexbox;
|
|
33
|
+
flex-shrink: 0;
|
|
34
|
+
-webkit-flex-shrink: 0;
|
|
35
|
+
-ms-flex: 1 0;
|
|
36
|
+
}
|
|
37
|
+
#resizer {
|
|
38
|
+
position: absolute;
|
|
39
|
+
right: -5px;
|
|
40
|
+
top: 0;
|
|
41
|
+
width: 10px;
|
|
42
|
+
height: 100%;
|
|
43
|
+
cursor: col-resize;
|
|
44
|
+
z-index: 9999;
|
|
45
|
+
}
|
|
46
|
+
#main {
|
|
47
|
+
flex: 5 1;
|
|
48
|
+
-webkit-flex: 5 1;
|
|
49
|
+
-ms-flex: 5 1;
|
|
50
|
+
outline: none;
|
|
51
|
+
position: relative;
|
|
52
|
+
background: #fff;
|
|
53
|
+
padding: 1.2em;
|
|
54
|
+
padding-top: 0.2em;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@media (max-width: 920px) {
|
|
58
|
+
.nav_wrap { display: none; }
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@media (min-width: 920px) {
|
|
62
|
+
body { height: 100%; overflow: hidden; }
|
|
63
|
+
#main { height: 100%; overflow: auto; }
|
|
64
|
+
#search { display: none; }
|
|
65
|
+
#search_frame { display: none; }
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
#main img { max-width: 100%; }
|
|
69
|
+
h1 { font-size: 25px; margin: 1em 0 0.5em; padding-top: 4px; border-top: 1px dotted #d5d5d5; }
|
|
70
|
+
h1.noborder { border-top: 0px; margin-top: 0; padding-top: 4px; }
|
|
71
|
+
h1.title { margin-bottom: 10px; }
|
|
72
|
+
h1.alphaindex { margin-top: 0; font-size: 22px; }
|
|
73
|
+
h2 {
|
|
74
|
+
padding: 0;
|
|
75
|
+
padding-bottom: 3px;
|
|
76
|
+
border-bottom: 1px #aaa solid;
|
|
77
|
+
font-size: 1.4em;
|
|
78
|
+
margin: 1.8em 0 0.5em;
|
|
79
|
+
position: relative;
|
|
80
|
+
}
|
|
81
|
+
h2 small { font-weight: normal; font-size: 0.7em; display: inline; position: absolute; right: 0; }
|
|
82
|
+
h2 small a {
|
|
83
|
+
display: block;
|
|
84
|
+
height: 20px;
|
|
85
|
+
border: 1px solid #aaa;
|
|
86
|
+
border-bottom: 0;
|
|
87
|
+
border-top-left-radius: 5px;
|
|
88
|
+
background: #f8f8f8;
|
|
89
|
+
position: relative;
|
|
90
|
+
padding: 2px 7px;
|
|
91
|
+
}
|
|
92
|
+
.clear { clear: both; }
|
|
93
|
+
.inline { display: inline; }
|
|
94
|
+
.inline p:first-child { display: inline; }
|
|
95
|
+
.docstring, .tags, #filecontents { font-size: 15px; line-height: 1.5145em; }
|
|
96
|
+
.docstring p > code, .docstring p > tt, .tags p > code, .tags p > tt {
|
|
97
|
+
color: #c7254e; background: #f9f2f4; padding: 2px 4px; font-size: 1em;
|
|
98
|
+
border-radius: 4px;
|
|
99
|
+
}
|
|
100
|
+
.docstring h1, .docstring h2, .docstring h3, .docstring h4 { padding: 0; border: 0; border-bottom: 1px dotted #bbb; }
|
|
101
|
+
.docstring h1 { font-size: 1.2em; }
|
|
102
|
+
.docstring h2 { font-size: 1.1em; }
|
|
103
|
+
.docstring h3, .docstring h4 { font-size: 1em; border-bottom: 0; padding-top: 10px; }
|
|
104
|
+
.summary_desc .object_link a, .docstring .object_link a {
|
|
105
|
+
font-family: monospace; font-size: 1.05em;
|
|
106
|
+
color: #05a; background: #EDF4FA; padding: 2px 4px; font-size: 1em;
|
|
107
|
+
border-radius: 4px;
|
|
108
|
+
}
|
|
109
|
+
.rdoc-term { padding-right: 25px; font-weight: bold; }
|
|
110
|
+
.rdoc-list p { margin: 0; padding: 0; margin-bottom: 4px; }
|
|
111
|
+
|
|
112
|
+
/* style for <table> */
|
|
113
|
+
#filecontents table, .docstring table { border-collapse: collapse; }
|
|
114
|
+
#filecontents table th, #filecontents table td,
|
|
115
|
+
.docstring table th, .docstring table td { border: 1px solid #ccc; padding: 8px; padding-right: 17px; }
|
|
116
|
+
#filecontents table tr:nth-child(odd),
|
|
117
|
+
.docstring table tr:nth-child(odd) { background: #eee; }
|
|
118
|
+
#filecontents table tr:nth-child(even),
|
|
119
|
+
.docstring table tr:nth-child(even) { background: #fff; }
|
|
120
|
+
#filecontents table th, .docstring table th { background: #fff; }
|
|
121
|
+
|
|
122
|
+
/* style for <ul> */
|
|
123
|
+
#filecontents li > p, .docstring li > p { margin: 0px; }
|
|
124
|
+
#filecontents ul, .docstring ul { padding-left: 20px; }
|
|
125
|
+
/* style for <dl> */
|
|
126
|
+
#filecontents dl, .docstring dl { border: 1px solid #ccc; }
|
|
127
|
+
#filecontents dt, .docstring dt { background: #ddd; font-weight: bold; padding: 3px 5px; }
|
|
128
|
+
#filecontents dd, .docstring dd { padding: 5px 0px; margin-left: 18px; }
|
|
129
|
+
#filecontents dd > p, .docstring dd > p { margin: 0px; }
|
|
130
|
+
|
|
131
|
+
.note {
|
|
132
|
+
color: #222;
|
|
133
|
+
margin: 20px 0;
|
|
134
|
+
padding: 10px;
|
|
135
|
+
border: 1px solid #eee;
|
|
136
|
+
border-radius: 3px;
|
|
137
|
+
display: block;
|
|
138
|
+
}
|
|
139
|
+
.docstring .note {
|
|
140
|
+
border-left-color: #ccc;
|
|
141
|
+
border-left-width: 5px;
|
|
142
|
+
}
|
|
143
|
+
.note.todo { background: #ffffc5; border-color: #ececaa; }
|
|
144
|
+
.note.returns_void { background: #efefef; }
|
|
145
|
+
.note.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
|
146
|
+
.note.title.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
|
147
|
+
.note.private { background: #ffffc5; border-color: #ececaa; }
|
|
148
|
+
.note.title { padding: 3px 6px; font-size: 0.9em; font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif; display: inline; }
|
|
149
|
+
.summary_signature + .note.title { margin-left: 7px; }
|
|
150
|
+
h1 .note.title { font-size: 0.5em; font-weight: normal; padding: 3px 5px; position: relative; top: -3px; text-transform: capitalize; }
|
|
151
|
+
.note.title { background: #efefef; }
|
|
152
|
+
.note.title.constructor { color: #fff; background: #6a98d6; border-color: #6689d6; }
|
|
153
|
+
.note.title.writeonly { color: #fff; background: #45a638; border-color: #2da31d; }
|
|
154
|
+
.note.title.readonly { color: #fff; background: #6a98d6; border-color: #6689d6; }
|
|
155
|
+
.note.title.private { background: #d5d5d5; border-color: #c5c5c5; }
|
|
156
|
+
.note.title.not_defined_here { background: transparent; border: none; font-style: italic; }
|
|
157
|
+
.discussion .note { margin-top: 6px; }
|
|
158
|
+
.discussion .note:first-child { margin-top: 0; }
|
|
159
|
+
|
|
160
|
+
h3.inherited {
|
|
161
|
+
font-style: italic;
|
|
162
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
|
163
|
+
font-weight: normal;
|
|
164
|
+
padding: 0;
|
|
165
|
+
margin: 0;
|
|
166
|
+
margin-top: 12px;
|
|
167
|
+
margin-bottom: 3px;
|
|
168
|
+
font-size: 13px;
|
|
169
|
+
}
|
|
170
|
+
p.inherited {
|
|
171
|
+
padding: 0;
|
|
172
|
+
margin: 0;
|
|
173
|
+
margin-left: 25px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.box_info dl {
|
|
177
|
+
margin: 0;
|
|
178
|
+
border: 0;
|
|
179
|
+
width: 100%;
|
|
180
|
+
font-size: 1em;
|
|
181
|
+
display: flex;
|
|
182
|
+
display: -webkit-flex;
|
|
183
|
+
display: -ms-flexbox;
|
|
184
|
+
}
|
|
185
|
+
.box_info dl dt {
|
|
186
|
+
flex-shrink: 0;
|
|
187
|
+
-webkit-flex-shrink: 1;
|
|
188
|
+
-ms-flex-shrink: 1;
|
|
189
|
+
width: 100px;
|
|
190
|
+
text-align: right;
|
|
191
|
+
font-weight: bold;
|
|
192
|
+
border: 1px solid #aaa;
|
|
193
|
+
border-width: 1px 0px 0px 1px;
|
|
194
|
+
padding: 6px 0;
|
|
195
|
+
padding-right: 10px;
|
|
196
|
+
}
|
|
197
|
+
.box_info dl dd {
|
|
198
|
+
flex-grow: 1;
|
|
199
|
+
-webkit-flex-grow: 1;
|
|
200
|
+
-ms-flex: 1;
|
|
201
|
+
max-width: 420px;
|
|
202
|
+
padding: 6px 0;
|
|
203
|
+
padding-right: 20px;
|
|
204
|
+
border: 1px solid #aaa;
|
|
205
|
+
border-width: 1px 1px 0 0;
|
|
206
|
+
overflow: hidden;
|
|
207
|
+
position: relative;
|
|
208
|
+
}
|
|
209
|
+
.box_info dl:last-child > * {
|
|
210
|
+
border-bottom: 1px solid #aaa;
|
|
211
|
+
}
|
|
212
|
+
.box_info dl:nth-child(odd) > * { background: #eee; }
|
|
213
|
+
.box_info dl:nth-child(even) > * { background: #fff; }
|
|
214
|
+
.box_info dl > * { margin: 0; }
|
|
215
|
+
|
|
216
|
+
ul.toplevel { list-style: none; padding-left: 0; font-size: 1.1em; }
|
|
217
|
+
.index_inline_list { padding-left: 0; font-size: 1.1em; }
|
|
218
|
+
.index_inline_list li { list-style: none; display: inline; padding: 7px 12px; line-height: 35px; }
|
|
219
|
+
|
|
220
|
+
dl.constants { margin-left: 10px; }
|
|
221
|
+
dl.constants dt { font-weight: bold; font-size: 1.1em; margin-bottom: 5px; }
|
|
222
|
+
dl.constants dd { width: 75%; white-space: pre; font-family: monospace; margin-bottom: 18px; }
|
|
223
|
+
dl.constants .docstring .note:first-child { margin-top: 5px; }
|
|
224
|
+
|
|
225
|
+
.summary_desc {
|
|
226
|
+
margin-left: 32px;
|
|
227
|
+
display: block;
|
|
228
|
+
font-family: sans-serif;
|
|
229
|
+
font-size: 1.1em;
|
|
230
|
+
margin-top: 8px;
|
|
231
|
+
line-height: 1.5145em;
|
|
232
|
+
margin-bottom: 0.8em;
|
|
233
|
+
}
|
|
234
|
+
.summary_desc tt { font-size: 0.9em; }
|
|
235
|
+
dl.constants .note { padding: 2px 6px; padding-right: 12px; margin-top: 6px; }
|
|
236
|
+
dl.constants .docstring { margin-left: 32px; font-size: 0.9em; font-weight: normal; }
|
|
237
|
+
dl.constants .tags { padding-left: 32px; font-size: 0.9em; line-height: 0.8em; }
|
|
238
|
+
dl.constants .discussion *:first-child { margin-top: 0; }
|
|
239
|
+
dl.constants .discussion *:last-child { margin-bottom: 0; }
|
|
240
|
+
|
|
241
|
+
.method_details { border-top: 1px dotted #ccc; margin-top: 25px; padding-top: 0; }
|
|
242
|
+
.method_details.first { border: 0; margin-top: 5px; }
|
|
243
|
+
.method_details.first h3.signature { margin-top: 1em; }
|
|
244
|
+
p.signature, h3.signature {
|
|
245
|
+
font-size: 1.1em; font-weight: normal; font-family: Monaco, Consolas, Courier, monospace;
|
|
246
|
+
padding: 6px 10px; margin-top: 1em;
|
|
247
|
+
background: #E8F4FF; border: 1px solid #d8d8e5; border-radius: 5px;
|
|
248
|
+
}
|
|
249
|
+
p.signature tt,
|
|
250
|
+
h3.signature tt { font-family: Monaco, Consolas, Courier, monospace; }
|
|
251
|
+
p.signature .overload,
|
|
252
|
+
h3.signature .overload { display: block; }
|
|
253
|
+
p.signature .extras,
|
|
254
|
+
h3.signature .extras { font-weight: normal; font-family: sans-serif; color: #444; font-size: 1em; }
|
|
255
|
+
p.signature .not_defined_here,
|
|
256
|
+
h3.signature .not_defined_here,
|
|
257
|
+
p.signature .aliases,
|
|
258
|
+
h3.signature .aliases { display: block; font-weight: normal; font-size: 0.9em; font-family: sans-serif; margin-top: 0px; color: #555; }
|
|
259
|
+
p.signature .aliases .names,
|
|
260
|
+
h3.signature .aliases .names { font-family: Monaco, Consolas, Courier, monospace; font-weight: bold; color: #000; font-size: 1.2em; }
|
|
261
|
+
|
|
262
|
+
.tags .tag_title { font-size: 1.05em; margin-bottom: 0; font-weight: bold; }
|
|
263
|
+
.tags .tag_title tt { color: initial; padding: initial; background: initial; }
|
|
264
|
+
.tags ul { margin-top: 5px; padding-left: 30px; list-style: square; }
|
|
265
|
+
.tags ul li { margin-bottom: 3px; }
|
|
266
|
+
.tags ul .name { font-family: monospace; font-weight: bold; }
|
|
267
|
+
.tags ul .note { padding: 3px 6px; }
|
|
268
|
+
.tags { margin-bottom: 12px; }
|
|
269
|
+
|
|
270
|
+
.tags .examples .tag_title { margin-bottom: 10px; font-weight: bold; }
|
|
271
|
+
.tags .examples .inline p { padding: 0; margin: 0; font-weight: bold; font-size: 1em; }
|
|
272
|
+
.tags .examples .inline p:before { content: "▸"; font-size: 1em; margin-right: 5px; }
|
|
273
|
+
|
|
274
|
+
.tags .overload .overload_item { list-style: none; margin-bottom: 25px; }
|
|
275
|
+
.tags .overload .overload_item .signature {
|
|
276
|
+
padding: 2px 8px;
|
|
277
|
+
background: #F1F8FF; border: 1px solid #d8d8e5; border-radius: 3px;
|
|
278
|
+
}
|
|
279
|
+
.tags .overload .signature { margin-left: -15px; font-family: monospace; display: block; font-size: 1.1em; }
|
|
280
|
+
.tags .overload .docstring { margin-top: 15px; }
|
|
281
|
+
|
|
282
|
+
.defines { display: none; }
|
|
283
|
+
|
|
284
|
+
#method_missing_details .notice.this { position: relative; top: -8px; color: #888; padding: 0; margin: 0; }
|
|
285
|
+
|
|
286
|
+
.showSource { font-size: 0.9em; }
|
|
287
|
+
.showSource a, .showSource a:visited { text-decoration: none; color: #666; }
|
|
288
|
+
|
|
289
|
+
#content a, #content a:visited { text-decoration: none; color: #05a; }
|
|
290
|
+
#content a:hover { background: #ffffa5; }
|
|
291
|
+
|
|
292
|
+
ul.summary {
|
|
293
|
+
list-style: none;
|
|
294
|
+
font-family: monospace;
|
|
295
|
+
font-size: 1em;
|
|
296
|
+
line-height: 1.5em;
|
|
297
|
+
padding-left: 0px;
|
|
298
|
+
}
|
|
299
|
+
ul.summary a, ul.summary a:visited {
|
|
300
|
+
text-decoration: none; font-size: 1.1em;
|
|
301
|
+
}
|
|
302
|
+
ul.summary li { margin-bottom: 5px; }
|
|
303
|
+
.summary .summary_signature {
|
|
304
|
+
padding: 4px 8px;
|
|
305
|
+
background: #f8f8f8;
|
|
306
|
+
border: 1px solid #f0f0f0;
|
|
307
|
+
border-radius: 5px;
|
|
308
|
+
}
|
|
309
|
+
.summary_signature:hover { background: #CFEBFF; border-color: #A4CCDA; cursor: pointer; }
|
|
310
|
+
ul.summary.compact li { display: inline-block; margin: 0px 5px 0px 0px; line-height: 2.6em;}
|
|
311
|
+
ul.summary.compact .summary_signature { padding: 5px 7px; padding-right: 4px; }
|
|
312
|
+
#content .summary_signature:hover a,
|
|
313
|
+
#content .summary_signature:hover a:visited {
|
|
314
|
+
background: transparent;
|
|
315
|
+
color: #049;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
p.inherited a { font-family: monospace; font-size: 0.9em; }
|
|
319
|
+
p.inherited { word-spacing: 5px; font-size: 1.2em; }
|
|
320
|
+
|
|
321
|
+
p.children { font-size: 1.2em; }
|
|
322
|
+
p.children a { font-size: 0.9em; }
|
|
323
|
+
p.children strong { font-size: 0.8em; }
|
|
324
|
+
p.children strong.modules { padding-left: 5px; }
|
|
325
|
+
|
|
326
|
+
ul.fullTree { display: none; padding-left: 0; list-style: none; margin-left: 0; margin-bottom: 10px; }
|
|
327
|
+
ul.fullTree ul { margin-left: 0; padding-left: 0; list-style: none; }
|
|
328
|
+
ul.fullTree li { text-align: center; padding-top: 18px; padding-bottom: 12px; background: url(data:image/gif;base64,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) no-repeat top center; }
|
|
329
|
+
ul.fullTree li:first-child { padding-top: 0; background: transparent; }
|
|
330
|
+
ul.fullTree li:last-child { padding-bottom: 0; }
|
|
331
|
+
.showAll ul.fullTree { display: block; }
|
|
332
|
+
.showAll .inheritName { display: none; }
|
|
333
|
+
|
|
334
|
+
#search { position: absolute; right: 12px; top: 0px; z-index: 9000; }
|
|
335
|
+
#search a {
|
|
336
|
+
display: block; float: left;
|
|
337
|
+
padding: 4px 8px; text-decoration: none; color: #05a; fill: #05a;
|
|
338
|
+
border: 1px solid #d8d8e5;
|
|
339
|
+
border-bottom-left-radius: 3px; border-bottom-right-radius: 3px;
|
|
340
|
+
background: #F1F8FF;
|
|
341
|
+
box-shadow: -1px 1px 3px #ddd;
|
|
342
|
+
}
|
|
343
|
+
#search a:hover { background: #f5faff; color: #06b; fill: #06b; }
|
|
344
|
+
#search a.active {
|
|
345
|
+
background: #568; padding-bottom: 20px; color: #fff; fill: #fff;
|
|
346
|
+
border: 1px solid #457;
|
|
347
|
+
border-top-left-radius: 5px; border-top-right-radius: 5px;
|
|
348
|
+
}
|
|
349
|
+
#search a.inactive { color: #999; fill: #999; }
|
|
350
|
+
.inheritanceTree, .toggleDefines {
|
|
351
|
+
float: right;
|
|
352
|
+
border-left: 1px solid #aaa;
|
|
353
|
+
position: absolute; top: 0; right: 0;
|
|
354
|
+
height: 100%;
|
|
355
|
+
background: #f6f6f6;
|
|
356
|
+
padding: 5px;
|
|
357
|
+
min-width: 55px;
|
|
358
|
+
text-align: center;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
#menu { font-size: 1.3em; color: #bbb; }
|
|
362
|
+
#menu .title, #menu a { font-size: 0.7em; }
|
|
363
|
+
#menu .title a { font-size: 1em; }
|
|
364
|
+
#menu .title { color: #555; }
|
|
365
|
+
#menu a, #menu a:visited { color: #333; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
|
366
|
+
#menu a:hover { color: #05a; }
|
|
367
|
+
|
|
368
|
+
#footer { margin-top: 15px; border-top: 1px solid #ccc; text-align: center; padding: 7px 0; color: #999; }
|
|
369
|
+
#footer a, #footer a:visited { color: #444; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
|
370
|
+
#footer a:hover { color: #05a; }
|
|
371
|
+
|
|
372
|
+
#listing ul.alpha { font-size: 1.1em; }
|
|
373
|
+
#listing ul.alpha { margin: 0; padding: 0; padding-bottom: 10px; list-style: none; }
|
|
374
|
+
#listing ul.alpha li.letter { font-size: 1.4em; padding-bottom: 10px; }
|
|
375
|
+
#listing ul.alpha ul { margin: 0; padding-left: 15px; }
|
|
376
|
+
#listing ul small { color: #666; font-size: 0.7em; }
|
|
377
|
+
|
|
378
|
+
li.r1 { background: #f0f0f0; }
|
|
379
|
+
li.r2 { background: #fafafa; }
|
|
380
|
+
|
|
381
|
+
#search_frame {
|
|
382
|
+
z-index: 9999;
|
|
383
|
+
background: #fff;
|
|
384
|
+
display: none;
|
|
385
|
+
position: absolute;
|
|
386
|
+
top: 40px;
|
|
387
|
+
right: 12px;
|
|
388
|
+
width: 500px;
|
|
389
|
+
max-width: 80%;
|
|
390
|
+
height: 80%;
|
|
391
|
+
overflow-y: scroll;
|
|
392
|
+
border: 1px solid #999;
|
|
393
|
+
border-collapse: collapse;
|
|
394
|
+
box-shadow: -7px 5px 25px #aaa;
|
|
395
|
+
border-radius: 2px;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
#content ul.summary li.deprecated .summary_signature a,
|
|
399
|
+
#content ul.summary li.deprecated .summary_signature a:visited { text-decoration: line-through; font-style: italic; }
|
|
400
|
+
|
|
401
|
+
#toc {
|
|
402
|
+
position: relative;
|
|
403
|
+
float: right;
|
|
404
|
+
overflow-x: auto;
|
|
405
|
+
right: -3px;
|
|
406
|
+
margin-left: 20px;
|
|
407
|
+
margin-bottom: 20px;
|
|
408
|
+
padding: 20px; padding-right: 30px;
|
|
409
|
+
max-width: 300px;
|
|
410
|
+
z-index: 5000;
|
|
411
|
+
background: #fefefe;
|
|
412
|
+
border: 1px solid #ddd;
|
|
413
|
+
box-shadow: -2px 2px 6px #bbb;
|
|
414
|
+
}
|
|
415
|
+
#toc .title { margin: 0; }
|
|
416
|
+
#toc ol { padding-left: 1.8em; }
|
|
417
|
+
#toc li { font-size: 1.1em; line-height: 1.7em; }
|
|
418
|
+
#toc > ol > li { font-size: 1.1em; font-weight: bold; }
|
|
419
|
+
#toc ol > ol { font-size: 0.9em; }
|
|
420
|
+
#toc ol ol > ol { padding-left: 2.3em; }
|
|
421
|
+
#toc ol + li { margin-top: 0.3em; }
|
|
422
|
+
#toc.hidden { padding: 10px; background: #fefefe; box-shadow: none; }
|
|
423
|
+
#toc.hidden:hover { background: #fafafa; }
|
|
424
|
+
#filecontents h1 + #toc.nofloat { margin-top: 0; }
|
|
425
|
+
@media (max-width: 560px) {
|
|
426
|
+
#toc {
|
|
427
|
+
margin-left: 0;
|
|
428
|
+
margin-top: 16px;
|
|
429
|
+
float: none;
|
|
430
|
+
max-width: none;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/* syntax highlighting */
|
|
435
|
+
.source_code { display: none; padding: 3px 8px; border-left: 8px solid #ddd; margin-top: 5px; }
|
|
436
|
+
#filecontents pre.code, .docstring pre.code, .source_code pre { font-family: monospace; }
|
|
437
|
+
#filecontents pre.code, .docstring pre.code { display: block; }
|
|
438
|
+
.source_code .lines { padding-right: 12px; color: #555; text-align: right; }
|
|
439
|
+
#filecontents pre.code, .docstring pre.code,
|
|
440
|
+
.tags pre.example {
|
|
441
|
+
padding: 9px 14px;
|
|
442
|
+
margin-top: 4px;
|
|
443
|
+
border: 1px solid #e1e1e8;
|
|
444
|
+
background: #f7f7f9;
|
|
445
|
+
border-radius: 4px;
|
|
446
|
+
font-size: 1em;
|
|
447
|
+
overflow-x: auto;
|
|
448
|
+
line-height: 1.2em;
|
|
449
|
+
}
|
|
450
|
+
pre.code { color: #000; tab-size: 2; }
|
|
451
|
+
pre.code .info.file { color: #555; }
|
|
452
|
+
pre.code .val { color: #036A07; }
|
|
453
|
+
pre.code .tstring_content,
|
|
454
|
+
pre.code .heredoc_beg, pre.code .heredoc_end,
|
|
455
|
+
pre.code .qwords_beg, pre.code .qwords_end,
|
|
456
|
+
pre.code .tstring, pre.code .dstring { color: #036A07; }
|
|
457
|
+
pre.code .fid, pre.code .rubyid_new, pre.code .rubyid_to_s,
|
|
458
|
+
pre.code .rubyid_to_sym, pre.code .rubyid_to_f,
|
|
459
|
+
pre.code .dot + pre.code .id,
|
|
460
|
+
pre.code .rubyid_to_i pre.code .rubyid_each { color: #0085FF; }
|
|
461
|
+
pre.code .comment { color: #0066FF; }
|
|
462
|
+
pre.code .const, pre.code .constant { color: #585CF6; }
|
|
463
|
+
pre.code .label,
|
|
464
|
+
pre.code .symbol { color: #C5060B; }
|
|
465
|
+
pre.code .kw,
|
|
466
|
+
pre.code .rubyid_require,
|
|
467
|
+
pre.code .rubyid_extend,
|
|
468
|
+
pre.code .rubyid_include { color: #0000FF; }
|
|
469
|
+
pre.code .ivar { color: #318495; }
|
|
470
|
+
pre.code .gvar,
|
|
471
|
+
pre.code .rubyid_backref,
|
|
472
|
+
pre.code .rubyid_nth_ref { color: #6D79DE; }
|
|
473
|
+
pre.code .regexp, .dregexp { color: #036A07; }
|
|
474
|
+
pre.code a { border-bottom: 1px dotted #bbf; }
|