midi-communications-windows 0.0.3
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/.gitignore +8 -0
- data/.version +6 -0
- data/.yardoc/checksums +8 -0
- data/.yardoc/complete +0 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/.yardopts +8 -0
- data/Gemfile +3 -0
- data/LICENSE +165 -0
- data/README.md +176 -0
- data/Rakefile +13 -0
- data/doc/MIDICommunicationsWindows/API/MIDIHdr.html +144 -0
- data/doc/MIDICommunicationsWindows/API/MIDIInCaps.html +142 -0
- data/doc/MIDICommunicationsWindows/API/MIDIOutCaps.html +140 -0
- data/doc/MIDICommunicationsWindows/API/MSG.html +143 -0
- data/doc/MIDICommunicationsWindows/API.html +981 -0
- data/doc/MIDICommunicationsWindows/Device/ClassMethods.html +365 -0
- data/doc/MIDICommunicationsWindows/Device/InstanceMethods.html +1096 -0
- data/doc/MIDICommunicationsWindows/Device.html +988 -0
- data/doc/MIDICommunicationsWindows/Error.html +438 -0
- data/doc/MIDICommunicationsWindows/Input.html +1554 -0
- data/doc/MIDICommunicationsWindows/Message.html +700 -0
- data/doc/MIDICommunicationsWindows/Output.html +1697 -0
- data/doc/MIDICommunicationsWindows/TypeConversion.html +369 -0
- data/doc/MIDICommunicationsWindows.html +210 -0
- data/doc/_index.html +262 -0
- data/doc/class_list.html +54 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +206 -0
- data/doc/css/style.css +1089 -0
- data/doc/file.README.html +240 -0
- data/doc/file.testing-on-windows.html +253 -0
- data/doc/file_list.html +64 -0
- data/doc/frames.html +22 -0
- data/doc/index.html +240 -0
- data/doc/js/app.js +801 -0
- data/doc/js/full_list.js +334 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +382 -0
- data/doc/top-level-namespace.html +112 -0
- data/docs/testing-on-windows.md +222 -0
- data/examples/input.rb +27 -0
- data/examples/list_ports.rb +17 -0
- data/examples/output.rb +22 -0
- data/examples/sysex_output.rb +15 -0
- data/lib/midi-communications-windows/api.rb +340 -0
- data/lib/midi-communications-windows/device.rb +310 -0
- data/lib/midi-communications-windows/input.rb +486 -0
- data/lib/midi-communications-windows/message.rb +133 -0
- data/lib/midi-communications-windows/output.rb +206 -0
- data/lib/midi-communications-windows/type_conversion.rb +20 -0
- data/lib/midi-communications-windows/version.rb +4 -0
- data/lib/midi-communications-windows.rb +76 -0
- data/midi-communications-windows.gemspec +32 -0
- metadata +220 -0
data/doc/_index.html
ADDED
|
@@ -0,0 +1,262 @@
|
|
|
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
|
+
MIDI Communications Windows API
|
|
8
|
+
|
|
9
|
+
</title>
|
|
10
|
+
|
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css">
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css">
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript">
|
|
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 id="main_progress" aria-hidden="true"></div>
|
|
29
|
+
|
|
30
|
+
<div class="nav_wrap">
|
|
31
|
+
<iframe id="nav" src="class_list.html?1"></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
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div id="search">
|
|
42
|
+
|
|
43
|
+
<a class="full_list_link" id="class_list_link"
|
|
44
|
+
href="class_list.html">
|
|
45
|
+
|
|
46
|
+
<svg width="24" height="24">
|
|
47
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
|
48
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
|
49
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
|
50
|
+
</svg>
|
|
51
|
+
</a>
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<div class="clear"></div>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<div id="content"><h1 class="noborder title">MIDI Communications Windows API</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.testing-on-windows.html" title="testing-on-windows">testing-on-windows</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_A" class="alpha">
|
|
85
|
+
<li class="letter">A</li>
|
|
86
|
+
<ul>
|
|
87
|
+
|
|
88
|
+
<li>
|
|
89
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/API.html" title="MIDICommunicationsWindows::API (module)">API</a></span>
|
|
90
|
+
|
|
91
|
+
<small>(MIDICommunicationsWindows)</small>
|
|
92
|
+
|
|
93
|
+
</li>
|
|
94
|
+
|
|
95
|
+
</ul>
|
|
96
|
+
</ul>
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<ul id="alpha_C" class="alpha">
|
|
100
|
+
<li class="letter">C</li>
|
|
101
|
+
<ul>
|
|
102
|
+
|
|
103
|
+
<li>
|
|
104
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/Device/ClassMethods.html" title="MIDICommunicationsWindows::Device::ClassMethods (module)">ClassMethods</a></span>
|
|
105
|
+
|
|
106
|
+
<small>(MIDICommunicationsWindows::Device)</small>
|
|
107
|
+
|
|
108
|
+
</li>
|
|
109
|
+
|
|
110
|
+
</ul>
|
|
111
|
+
</ul>
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
<ul id="alpha_D" class="alpha">
|
|
115
|
+
<li class="letter">D</li>
|
|
116
|
+
<ul>
|
|
117
|
+
|
|
118
|
+
<li>
|
|
119
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/Device.html" title="MIDICommunicationsWindows::Device (module)">Device</a></span>
|
|
120
|
+
|
|
121
|
+
<small>(MIDICommunicationsWindows)</small>
|
|
122
|
+
|
|
123
|
+
</li>
|
|
124
|
+
|
|
125
|
+
</ul>
|
|
126
|
+
</ul>
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<ul id="alpha_E" class="alpha">
|
|
130
|
+
<li class="letter">E</li>
|
|
131
|
+
<ul>
|
|
132
|
+
|
|
133
|
+
<li>
|
|
134
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/Error.html" title="MIDICommunicationsWindows::Error (class)">Error</a></span>
|
|
135
|
+
|
|
136
|
+
<small>(MIDICommunicationsWindows)</small>
|
|
137
|
+
|
|
138
|
+
</li>
|
|
139
|
+
|
|
140
|
+
</ul>
|
|
141
|
+
</ul>
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
<ul id="alpha_I" class="alpha">
|
|
145
|
+
<li class="letter">I</li>
|
|
146
|
+
<ul>
|
|
147
|
+
|
|
148
|
+
<li>
|
|
149
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/Input.html" title="MIDICommunicationsWindows::Input (class)">Input</a></span>
|
|
150
|
+
|
|
151
|
+
<small>(MIDICommunicationsWindows)</small>
|
|
152
|
+
|
|
153
|
+
</li>
|
|
154
|
+
|
|
155
|
+
<li>
|
|
156
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/Device/InstanceMethods.html" title="MIDICommunicationsWindows::Device::InstanceMethods (module)">InstanceMethods</a></span>
|
|
157
|
+
|
|
158
|
+
<small>(MIDICommunicationsWindows::Device)</small>
|
|
159
|
+
|
|
160
|
+
</li>
|
|
161
|
+
|
|
162
|
+
</ul>
|
|
163
|
+
</ul>
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
<ul id="alpha_M" class="alpha">
|
|
167
|
+
<li class="letter">M</li>
|
|
168
|
+
<ul>
|
|
169
|
+
|
|
170
|
+
<li>
|
|
171
|
+
<span class='object_link'><a href="MIDICommunicationsWindows.html" title="MIDICommunicationsWindows (module)">MIDICommunicationsWindows</a></span>
|
|
172
|
+
|
|
173
|
+
</li>
|
|
174
|
+
|
|
175
|
+
<li>
|
|
176
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/API/MIDIHdr.html" title="MIDICommunicationsWindows::API::MIDIHdr (class)">MIDIHdr</a></span>
|
|
177
|
+
|
|
178
|
+
<small>(MIDICommunicationsWindows::API)</small>
|
|
179
|
+
|
|
180
|
+
</li>
|
|
181
|
+
|
|
182
|
+
<li>
|
|
183
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/API/MIDIInCaps.html" title="MIDICommunicationsWindows::API::MIDIInCaps (class)">MIDIInCaps</a></span>
|
|
184
|
+
|
|
185
|
+
<small>(MIDICommunicationsWindows::API)</small>
|
|
186
|
+
|
|
187
|
+
</li>
|
|
188
|
+
|
|
189
|
+
<li>
|
|
190
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/API/MIDIOutCaps.html" title="MIDICommunicationsWindows::API::MIDIOutCaps (class)">MIDIOutCaps</a></span>
|
|
191
|
+
|
|
192
|
+
<small>(MIDICommunicationsWindows::API)</small>
|
|
193
|
+
|
|
194
|
+
</li>
|
|
195
|
+
|
|
196
|
+
<li>
|
|
197
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/API/MSG.html" title="MIDICommunicationsWindows::API::MSG (class)">MSG</a></span>
|
|
198
|
+
|
|
199
|
+
<small>(MIDICommunicationsWindows::API)</small>
|
|
200
|
+
|
|
201
|
+
</li>
|
|
202
|
+
|
|
203
|
+
<li>
|
|
204
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/Message.html" title="MIDICommunicationsWindows::Message (module)">Message</a></span>
|
|
205
|
+
|
|
206
|
+
<small>(MIDICommunicationsWindows)</small>
|
|
207
|
+
|
|
208
|
+
</li>
|
|
209
|
+
|
|
210
|
+
</ul>
|
|
211
|
+
</ul>
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
<ul id="alpha_O" class="alpha">
|
|
215
|
+
<li class="letter">O</li>
|
|
216
|
+
<ul>
|
|
217
|
+
|
|
218
|
+
<li>
|
|
219
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/Output.html" title="MIDICommunicationsWindows::Output (class)">Output</a></span>
|
|
220
|
+
|
|
221
|
+
<small>(MIDICommunicationsWindows)</small>
|
|
222
|
+
|
|
223
|
+
</li>
|
|
224
|
+
|
|
225
|
+
</ul>
|
|
226
|
+
</ul>
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
</td><td valign='top' width="33%">
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
<ul id="alpha_T" class="alpha">
|
|
233
|
+
<li class="letter">T</li>
|
|
234
|
+
<ul>
|
|
235
|
+
|
|
236
|
+
<li>
|
|
237
|
+
<span class='object_link'><a href="MIDICommunicationsWindows/TypeConversion.html" title="MIDICommunicationsWindows::TypeConversion (module)">TypeConversion</a></span>
|
|
238
|
+
|
|
239
|
+
<small>(MIDICommunicationsWindows)</small>
|
|
240
|
+
|
|
241
|
+
</li>
|
|
242
|
+
|
|
243
|
+
</ul>
|
|
244
|
+
</ul>
|
|
245
|
+
|
|
246
|
+
</td>
|
|
247
|
+
</tr>
|
|
248
|
+
</table>
|
|
249
|
+
|
|
250
|
+
</div>
|
|
251
|
+
|
|
252
|
+
</div>
|
|
253
|
+
|
|
254
|
+
<div id="footer">
|
|
255
|
+
Generated on Sun Sep 6 21:20:52 2026 by
|
|
256
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
257
|
+
0.9.45 (ruby-3.4.7).
|
|
258
|
+
</div>
|
|
259
|
+
|
|
260
|
+
</div>
|
|
261
|
+
</body>
|
|
262
|
+
</html>
|
data/doc/class_list.html
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
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">
|
|
8
|
+
|
|
9
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen">
|
|
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">
|
|
42
|
+
<label for="search-class">Search:</label>
|
|
43
|
+
<input id="search-class" type="text">
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
<ul id="full_list" class="class">
|
|
48
|
+
<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>
|
|
49
|
+
<li id='object_MIDICommunicationsWindows' class='even'><div class='item' style='padding-left:30px'><a tabindex='0' class='toggle' role='button' aria-label='MIDICommunicationsWindows child nodes' aria-expanded='false' aria-controls='object_MIDICommunicationsWindows'></a> <span class='object_link'><a href="MIDICommunicationsWindows.html" title="MIDICommunicationsWindows (module)">MIDICommunicationsWindows</a></span><small class='search_info'>Top Level Namespace</small></div><div aria-labelledby='object_MIDICommunicationsWindows'><ul><li id='object_MIDICommunicationsWindows::API' class='collapsed odd'><div class='item' style='padding-left:45px'><a tabindex='0' class='toggle' role='button' aria-label='API child nodes' aria-expanded='false' aria-controls='object_MIDICommunicationsWindows::API'></a> <span class='object_link'><a href="MIDICommunicationsWindows/API.html" title="MIDICommunicationsWindows::API (module)">API</a></span><small class='search_info'>MIDICommunicationsWindows</small></div><div aria-labelledby='object_MIDICommunicationsWindows::API'><ul><li id='object_MIDICommunicationsWindows::API::MIDIHdr' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="MIDICommunicationsWindows/API/MIDIHdr.html" title="MIDICommunicationsWindows::API::MIDIHdr (class)">MIDIHdr</a></span> < Struct<small class='search_info'>MIDICommunicationsWindows::API</small></div></li><li id='object_MIDICommunicationsWindows::API::MIDIInCaps' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="MIDICommunicationsWindows/API/MIDIInCaps.html" title="MIDICommunicationsWindows::API::MIDIInCaps (class)">MIDIInCaps</a></span> < Struct<small class='search_info'>MIDICommunicationsWindows::API</small></div></li><li id='object_MIDICommunicationsWindows::API::MIDIOutCaps' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="MIDICommunicationsWindows/API/MIDIOutCaps.html" title="MIDICommunicationsWindows::API::MIDIOutCaps (class)">MIDIOutCaps</a></span> < Struct<small class='search_info'>MIDICommunicationsWindows::API</small></div></li><li id='object_MIDICommunicationsWindows::API::MSG' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="MIDICommunicationsWindows/API/MSG.html" title="MIDICommunicationsWindows::API::MSG (class)">MSG</a></span> < Struct<small class='search_info'>MIDICommunicationsWindows::API</small></div></li></ul></div></li><li id='object_MIDICommunicationsWindows::Device' class='collapsed even'><div class='item' style='padding-left:45px'><a tabindex='0' class='toggle' role='button' aria-label='Device child nodes' aria-expanded='false' aria-controls='object_MIDICommunicationsWindows::Device'></a> <span class='object_link'><a href="MIDICommunicationsWindows/Device.html" title="MIDICommunicationsWindows::Device (module)">Device</a></span><small class='search_info'>MIDICommunicationsWindows</small></div><div aria-labelledby='object_MIDICommunicationsWindows::Device'><ul><li id='object_MIDICommunicationsWindows::Device::ClassMethods' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="MIDICommunicationsWindows/Device/ClassMethods.html" title="MIDICommunicationsWindows::Device::ClassMethods (module)">ClassMethods</a></span><small class='search_info'>MIDICommunicationsWindows::Device</small></div></li><li id='object_MIDICommunicationsWindows::Device::InstanceMethods' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="MIDICommunicationsWindows/Device/InstanceMethods.html" title="MIDICommunicationsWindows::Device::InstanceMethods (module)">InstanceMethods</a></span><small class='search_info'>MIDICommunicationsWindows::Device</small></div></li></ul></div></li><li id='object_MIDICommunicationsWindows::Error' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="MIDICommunicationsWindows/Error.html" title="MIDICommunicationsWindows::Error (class)">Error</a></span> < StandardError<small class='search_info'>MIDICommunicationsWindows</small></div></li><li id='object_MIDICommunicationsWindows::Input' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="MIDICommunicationsWindows/Input.html" title="MIDICommunicationsWindows::Input (class)">Input</a></span> < Object<small class='search_info'>MIDICommunicationsWindows</small></div></li><li id='object_MIDICommunicationsWindows::Message' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="MIDICommunicationsWindows/Message.html" title="MIDICommunicationsWindows::Message (module)">Message</a></span><small class='search_info'>MIDICommunicationsWindows</small></div></li><li id='object_MIDICommunicationsWindows::Output' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="MIDICommunicationsWindows/Output.html" title="MIDICommunicationsWindows::Output (class)">Output</a></span> < Object<small class='search_info'>MIDICommunicationsWindows</small></div></li><li id='object_MIDICommunicationsWindows::TypeConversion' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="MIDICommunicationsWindows/TypeConversion.html" title="MIDICommunicationsWindows::TypeConversion (module)">TypeConversion</a></span><small class='search_info'>MIDICommunicationsWindows</small></div></li></ul></div></li>
|
|
50
|
+
|
|
51
|
+
</ul>
|
|
52
|
+
</div>
|
|
53
|
+
</body>
|
|
54
|
+
</html>
|
data/doc/css/common.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Override this file with custom rules */
|
|
@@ -0,0 +1,206 @@
|
|
|
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 {
|
|
11
|
+
padding: 12px 10px;
|
|
12
|
+
padding-bottom: 0;
|
|
13
|
+
margin: 0;
|
|
14
|
+
font-size: 1.4em;
|
|
15
|
+
}
|
|
16
|
+
.clear {
|
|
17
|
+
clear: both;
|
|
18
|
+
}
|
|
19
|
+
.fixed_header {
|
|
20
|
+
position: fixed;
|
|
21
|
+
background: #fff;
|
|
22
|
+
width: 100%;
|
|
23
|
+
padding-bottom: 10px;
|
|
24
|
+
margin-top: 0;
|
|
25
|
+
top: 0;
|
|
26
|
+
z-index: 9999;
|
|
27
|
+
height: 70px;
|
|
28
|
+
}
|
|
29
|
+
#search {
|
|
30
|
+
position: absolute;
|
|
31
|
+
right: 5px;
|
|
32
|
+
top: 9px;
|
|
33
|
+
padding-left: 24px;
|
|
34
|
+
}
|
|
35
|
+
#noresults {
|
|
36
|
+
padding: 7px 12px;
|
|
37
|
+
background: #fff;
|
|
38
|
+
}
|
|
39
|
+
#content.insearch #search,
|
|
40
|
+
#content.insearch #noresults {
|
|
41
|
+
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==)
|
|
42
|
+
no-repeat center left;
|
|
43
|
+
}
|
|
44
|
+
#full_list {
|
|
45
|
+
padding: 0;
|
|
46
|
+
list-style: none;
|
|
47
|
+
margin-left: 0;
|
|
48
|
+
margin-top: 80px;
|
|
49
|
+
font-size: 1.1em;
|
|
50
|
+
}
|
|
51
|
+
#full_list ul {
|
|
52
|
+
padding: 0;
|
|
53
|
+
}
|
|
54
|
+
#full_list li {
|
|
55
|
+
padding: 0;
|
|
56
|
+
margin: 0;
|
|
57
|
+
list-style: none;
|
|
58
|
+
}
|
|
59
|
+
#full_list li .item {
|
|
60
|
+
padding: 5px 5px 5px 12px;
|
|
61
|
+
}
|
|
62
|
+
#content.insearch #noresults {
|
|
63
|
+
margin-left: 7px;
|
|
64
|
+
}
|
|
65
|
+
#full_list li {
|
|
66
|
+
color: #666;
|
|
67
|
+
cursor: normal;
|
|
68
|
+
white-space: nowrap;
|
|
69
|
+
}
|
|
70
|
+
#full_list li.collapsed ul {
|
|
71
|
+
display: none;
|
|
72
|
+
}
|
|
73
|
+
#full_list li a.toggle {
|
|
74
|
+
cursor: default;
|
|
75
|
+
position: relative;
|
|
76
|
+
left: -5px;
|
|
77
|
+
top: 4px;
|
|
78
|
+
text-indent: -999px;
|
|
79
|
+
width: 10px;
|
|
80
|
+
height: 9px;
|
|
81
|
+
margin-left: -10px;
|
|
82
|
+
display: block;
|
|
83
|
+
float: left;
|
|
84
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTM5jWRgMAAAAVdEVYdENyZWF0aW9uIFRpbWUAMy8xNC8wOeNZPpQAAAE2SURBVDiNrZTBccIwEEXfelIAHUA6CZ24BGaWO+FuzZAK4k6gg5QAdGAq+Bxs2Yqx7BzyL7Llp/VfzZeQhCTc/ezuGzKKnKSzpCxXJM8fwNXda3df5RZETlIt6YUzSQDs93sl8w3wBZxCCE10GM1OcWbWjB2mWgEH4Mfdyxm3PSepBHibgQE2wLe7r4HjEidpnXMYdQPKEMJcsZ4zs2POYQOcaPfwMVOo58zsAdMt18BuoVDPxUJRacELbXv3hUIX2vYmOUvi8C8ydz/ThjXrqKqqLbDIAdsCKBd+Wo7GWa7o9qzOQHVVVXeAbs+yHHCH4aTsaCOQqunmUy1yBUAXkdMIfMlgF5EXLo2OpV/c/Up7jG4hhHcYLgWzAZXUc2b2ixsfvc/RmNNfOXD3Q/oeL9axJE1yT9IOoUu6MGUkAAAAAElFTkSuQmCC)
|
|
85
|
+
no-repeat bottom left;
|
|
86
|
+
}
|
|
87
|
+
#full_list li.collapsed a.toggle {
|
|
88
|
+
cursor: default;
|
|
89
|
+
background-position: top left;
|
|
90
|
+
}
|
|
91
|
+
#full_list li.deprecated {
|
|
92
|
+
text-decoration: line-through;
|
|
93
|
+
font-style: italic;
|
|
94
|
+
}
|
|
95
|
+
#full_list li.odd {
|
|
96
|
+
background: #f0f0f0;
|
|
97
|
+
}
|
|
98
|
+
#full_list li.even {
|
|
99
|
+
background: #fafafa;
|
|
100
|
+
}
|
|
101
|
+
#full_list .item:hover {
|
|
102
|
+
background: #ddd;
|
|
103
|
+
}
|
|
104
|
+
#full_list li small:before {
|
|
105
|
+
content: "(";
|
|
106
|
+
}
|
|
107
|
+
#full_list li small:after {
|
|
108
|
+
content: ")";
|
|
109
|
+
}
|
|
110
|
+
#full_list li small.search_info {
|
|
111
|
+
display: none;
|
|
112
|
+
}
|
|
113
|
+
a,
|
|
114
|
+
a:visited {
|
|
115
|
+
text-decoration: none;
|
|
116
|
+
color: #05a;
|
|
117
|
+
}
|
|
118
|
+
#full_list li.clicked > .item {
|
|
119
|
+
background: #05a;
|
|
120
|
+
color: #ccc;
|
|
121
|
+
}
|
|
122
|
+
#full_list li.clicked > .item a,
|
|
123
|
+
#full_list li.clicked > .item a:visited {
|
|
124
|
+
color: #eee;
|
|
125
|
+
}
|
|
126
|
+
#full_list li.clicked > .item a.toggle {
|
|
127
|
+
opacity: 0.5;
|
|
128
|
+
background-position: bottom right;
|
|
129
|
+
}
|
|
130
|
+
#full_list li.collapsed.clicked a.toggle {
|
|
131
|
+
background-position: top right;
|
|
132
|
+
}
|
|
133
|
+
#search input {
|
|
134
|
+
border: 1px solid #bbb;
|
|
135
|
+
border-radius: 3px;
|
|
136
|
+
}
|
|
137
|
+
#full_list_nav {
|
|
138
|
+
margin-left: 10px;
|
|
139
|
+
font-size: 0.9em;
|
|
140
|
+
display: block;
|
|
141
|
+
color: #aaa;
|
|
142
|
+
}
|
|
143
|
+
#full_list_nav a,
|
|
144
|
+
#nav a:visited {
|
|
145
|
+
color: #358;
|
|
146
|
+
}
|
|
147
|
+
#full_list_nav a:hover {
|
|
148
|
+
background: transparent;
|
|
149
|
+
color: #5af;
|
|
150
|
+
}
|
|
151
|
+
#full_list_nav span:after {
|
|
152
|
+
content: " | ";
|
|
153
|
+
}
|
|
154
|
+
#full_list_nav span:last-child:after {
|
|
155
|
+
content: "";
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
#content h1 {
|
|
159
|
+
margin-top: 0;
|
|
160
|
+
}
|
|
161
|
+
#full_list li small {
|
|
162
|
+
display: block;
|
|
163
|
+
font-size: 0.8em;
|
|
164
|
+
}
|
|
165
|
+
#full_list li small:before {
|
|
166
|
+
content: "";
|
|
167
|
+
}
|
|
168
|
+
#full_list li small:after {
|
|
169
|
+
content: "";
|
|
170
|
+
}
|
|
171
|
+
#full_list li small.search_info {
|
|
172
|
+
display: none;
|
|
173
|
+
}
|
|
174
|
+
#search {
|
|
175
|
+
width: 170px;
|
|
176
|
+
position: static;
|
|
177
|
+
margin: 3px;
|
|
178
|
+
margin-left: 10px;
|
|
179
|
+
font-size: 0.9em;
|
|
180
|
+
color: #666;
|
|
181
|
+
padding-left: 0;
|
|
182
|
+
padding-right: 24px;
|
|
183
|
+
}
|
|
184
|
+
#content.insearch #search {
|
|
185
|
+
background-position: center right;
|
|
186
|
+
}
|
|
187
|
+
#search input {
|
|
188
|
+
width: 110px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
#full_list.insearch ul {
|
|
192
|
+
display: block;
|
|
193
|
+
}
|
|
194
|
+
#full_list.insearch .item {
|
|
195
|
+
display: none;
|
|
196
|
+
}
|
|
197
|
+
#full_list.insearch .found {
|
|
198
|
+
display: block;
|
|
199
|
+
padding-left: 11px;
|
|
200
|
+
}
|
|
201
|
+
#full_list.insearch li a.toggle {
|
|
202
|
+
display: none;
|
|
203
|
+
}
|
|
204
|
+
#full_list.insearch li small.search_info {
|
|
205
|
+
display: block;
|
|
206
|
+
}
|