disbatch 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/doc/Mongo.html ADDED
@@ -0,0 +1,236 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Module: Mongo
8
+
9
+ &mdash; Documentation by YARD 0.7.3
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ relpath = '';
19
+ if (relpath != '') relpath += '/';
20
+ </script>
21
+
22
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
23
+
24
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
25
+
26
+
27
+ </head>
28
+ <body>
29
+ <script type="text/javascript" charset="utf-8">
30
+ if (window.top.frames.main) document.body.className = 'frames';
31
+ </script>
32
+
33
+ <div id="header">
34
+ <div id="menu">
35
+
36
+ <a href="_index.html">Index (M)</a> &raquo;
37
+
38
+
39
+ <span class="title">Mongo</span>
40
+
41
+
42
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
43
+ </div>
44
+
45
+ <div id="search">
46
+
47
+ <a id="class_list_link" href="#">Class List</a>
48
+
49
+ <a id="method_list_link" href="#">Method List</a>
50
+
51
+ <a id="file_list_link" href="#">File List</a>
52
+
53
+ </div>
54
+ <div class="clear"></div>
55
+ </div>
56
+
57
+ <iframe id="search_frame"></iframe>
58
+
59
+ <div id="content"><h1>Module: Mongo
60
+
61
+
62
+
63
+ </h1>
64
+
65
+ <dl class="box">
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+ <dt class="r1 last">Defined in:</dt>
75
+ <dd class="r1 last">lib/disbatch.rb</dd>
76
+
77
+ </dl>
78
+ <div class="clear"></div>
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+ <h2>
87
+ Class Method Summary
88
+ <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
89
+ </h2>
90
+
91
+ <ul class="summary">
92
+
93
+ <li class="public ">
94
+ <span class="summary_signature">
95
+
96
+ <a href="#try-class_method" title="try (class method)">+ (Object) <strong>try</strong>(max_retries = 4, interval = 0.5) </a>
97
+
98
+
99
+
100
+ </span>
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+ <span class="summary_desc"><div class='inline'><p>
110
+ Wrap a MongoDB operation for retry.
111
+ </p>
112
+ </div></span>
113
+
114
+ </li>
115
+
116
+
117
+ </ul>
118
+
119
+
120
+
121
+
122
+ <div id="class_method_details" class="method_details_list">
123
+ <h2>Class Method Details</h2>
124
+
125
+
126
+ <div class="method_details first">
127
+ <p class="signature first" id="try-class_method">
128
+
129
+ + (<tt>Object</tt>) <strong>try</strong>(max_retries = 4, interval = 0.5)
130
+
131
+
132
+
133
+ </p><div class="docstring">
134
+ <div class="discussion">
135
+ <p>
136
+ Wrap a MongoDB operation for retry
137
+ </p>
138
+
139
+
140
+ </div>
141
+ </div>
142
+ <div class="tags">
143
+ <h3>Parameters:</h3>
144
+ <ul class="param">
145
+
146
+ <li>
147
+
148
+ <span class='name'>max_retries</span>
149
+
150
+
151
+ <span class='type'>(<tt>Integer</tt>)</span>
152
+
153
+
154
+ <em class="default">(defaults to: <tt>4</tt>)</em>
155
+
156
+
157
+ &mdash;
158
+ <div class='inline'><p>
159
+ maximum number of times to attempt to connect
160
+ </p>
161
+ </div>
162
+
163
+ </li>
164
+
165
+ <li>
166
+
167
+ <span class='name'>interval</span>
168
+
169
+
170
+ <span class='type'>(<tt>Float</tt>)</span>
171
+
172
+
173
+ <em class="default">(defaults to: <tt>0.5</tt>)</em>
174
+
175
+
176
+ &mdash;
177
+ <div class='inline'><p>
178
+ frequency of retry attempts
179
+ </p>
180
+ </div>
181
+
182
+ </li>
183
+
184
+ </ul>
185
+
186
+
187
+ </div><table class="source_code">
188
+ <tr>
189
+ <td>
190
+ <pre class="lines">
191
+
192
+
193
+ 48
194
+ 49
195
+ 50
196
+ 51
197
+ 52
198
+ 53
199
+ 54
200
+ 55
201
+ 56
202
+ 57
203
+ 58</pre>
204
+ </td>
205
+ <td>
206
+ <pre class="code"><span class="info file"># File 'lib/disbatch.rb', line 48</span>
207
+
208
+ <span class='def def kw'>def</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='try identifier id'>try</span><span class='lparen token'>(</span><span class='max_retries identifier id'>max_retries</span><span class='assign token'>=</span><span class='integer val'>4</span><span class='comma token'>,</span><span class='interval identifier id'>interval</span><span class='assign token'>=</span><span class='integer val'>0</span><span class='integer val'>.5</span><span class='rparen token'>)</span>
209
+ <span class='retries identifier id'>retries</span> <span class='assign token'>=</span> <span class='integer val'>0</span>
210
+ <span class='begin begin kw'>begin</span>
211
+ <span class='yield yield kw'>yield</span>
212
+ <span class='rescue rescue kw'>rescue</span> <span class='Mongo constant id'>Mongo</span><span class='colon2 op'>::</span><span class='ConnectionFailure constant id'>ConnectionFailure</span> <span class='assign token'>=</span><span class='gt op'>&gt;</span> <span class='ex identifier id'>ex</span>
213
+ <span class='retries identifier id'>retries</span> <span class='opasgn op'>+=</span><span class='integer val'>1</span>
214
+ <span class='raise identifier id'>raise</span> <span class='ex identifier id'>ex</span> <span class='if if_mod kw'>if</span> <span class='retries identifier id'>retries</span> <span class='gt op'>&gt;</span> <span class='max_retries identifier id'>max_retries</span>
215
+ <span class='sleep identifier id'>sleep</span><span class='lparen token'>(</span><span class='interval identifier id'>interval</span><span class='rparen token'>)</span>
216
+ <span class='retry retry kw'>retry</span>
217
+ <span class='end end kw'>end</span>
218
+ <span class='end end kw'>end</span>
219
+ </pre>
220
+ </td>
221
+ </tr>
222
+ </table>
223
+ </div>
224
+
225
+ </div>
226
+
227
+ </div>
228
+
229
+ <div id="footer">
230
+ Generated on Mon Oct 24 16:53:58 2011 by
231
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
232
+ 0.7.3 (ruby-1.8.7).
233
+ </div>
234
+
235
+ </body>
236
+ </html>
data/doc/_index.html ADDED
@@ -0,0 +1,186 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Documentation by YARD 0.7.3
8
+
9
+ </title>
10
+
11
+ <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
12
+
13
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
14
+
15
+ <script type="text/javascript" charset="utf-8">
16
+ relpath = '';
17
+ if (relpath != '') relpath += '/';
18
+ </script>
19
+
20
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
21
+
22
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
23
+
24
+
25
+ </head>
26
+ <body>
27
+ <script type="text/javascript" charset="utf-8">
28
+ if (window.top.frames.main) document.body.className = 'frames';
29
+ </script>
30
+
31
+ <div id="header">
32
+ <div id="menu">
33
+
34
+
35
+ <span class="title"></span>
36
+
37
+
38
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
39
+ </div>
40
+
41
+ <div id="search">
42
+
43
+ <a id="class_list_link" href="#">Class List</a>
44
+
45
+ <a id="method_list_link" href="#">Method List</a>
46
+
47
+ <a id="file_list_link" href="#">File List</a>
48
+
49
+ </div>
50
+ <div class="clear"></div>
51
+ </div>
52
+
53
+ <iframe id="search_frame"></iframe>
54
+
55
+ <div id="content"><h1 class="noborder title">Documentation by YARD 0.7.3</h1>
56
+ <div id="listing">
57
+ <h1 class="alphaindex">Alphabetic Index</h1>
58
+
59
+ <h2>File Listing</h2>
60
+ <ul id="files">
61
+
62
+
63
+ <li class="r1"><a href="index.html" title="README">README</a></li>
64
+
65
+
66
+ </ul>
67
+
68
+ <div class="clear"></div>
69
+ <h2>Namespace Listing A-Z</h2>
70
+
71
+
72
+
73
+
74
+ <table>
75
+ <tr>
76
+ <td valign='top' width="33%">
77
+
78
+
79
+ <ul id="alpha_D" class="alpha">
80
+ <li class="letter">D</li>
81
+ <ul>
82
+
83
+ <li>
84
+ <span class='object_link'><a href="Disbatch.html" title="Disbatch (module)">Disbatch</a></span>
85
+
86
+ </li>
87
+
88
+ </ul>
89
+ </ul>
90
+
91
+
92
+ <ul id="alpha_M" class="alpha">
93
+ <li class="letter">M</li>
94
+ <ul>
95
+
96
+ <li>
97
+ <span class='object_link'><a href="Mongo.html" title="Mongo (module)">Mongo</a></span>
98
+
99
+ </li>
100
+
101
+ </ul>
102
+ </ul>
103
+
104
+
105
+ <ul id="alpha_N" class="alpha">
106
+ <li class="letter">N</li>
107
+ <ul>
108
+
109
+ <li>
110
+ <span class='object_link'><a href="Disbatch/NoNodeError.html" title="Disbatch::NoNodeError (class)">NoNodeError</a></span>
111
+
112
+ <small>(Disbatch)</small>
113
+
114
+ </li>
115
+
116
+ <li>
117
+ <span class='object_link'><a href="Disbatch/Node.html" title="Disbatch::Node (class)">Node</a></span>
118
+
119
+ <small>(Disbatch)</small>
120
+
121
+ </li>
122
+
123
+ </ul>
124
+ </ul>
125
+
126
+
127
+ <ul id="alpha_P" class="alpha">
128
+ <li class="letter">P</li>
129
+ <ul>
130
+
131
+ <li>
132
+ <span class='object_link'><a href="Disbatch/Plugin.html" title="Disbatch::Plugin (module)">Plugin</a></span>
133
+
134
+ <small>(Disbatch)</small>
135
+
136
+ </li>
137
+
138
+ </ul>
139
+ </ul>
140
+
141
+
142
+ <ul id="alpha_Q" class="alpha">
143
+ <li class="letter">Q</li>
144
+ <ul>
145
+
146
+ <li>
147
+ <span class='object_link'><a href="Disbatch/Queue.html" title="Disbatch::Queue (class)">Queue</a></span>
148
+
149
+ <small>(Disbatch)</small>
150
+
151
+ </li>
152
+
153
+ </ul>
154
+ </ul>
155
+
156
+
157
+ <ul id="alpha_T" class="alpha">
158
+ <li class="letter">T</li>
159
+ <ul>
160
+
161
+ <li>
162
+ <span class='object_link'><a href="Disbatch/Queue/Task.html" title="Disbatch::Queue::Task (class)">Task</a></span>
163
+
164
+ <small>(Disbatch::Queue)</small>
165
+
166
+ </li>
167
+
168
+ </ul>
169
+ </ul>
170
+
171
+ </td>
172
+ </tr>
173
+ </table>
174
+
175
+ </div>
176
+
177
+ </div>
178
+
179
+ <div id="footer">
180
+ Generated on Mon Oct 24 16:53:57 2011 by
181
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
182
+ 0.7.3 (ruby-1.8.7).
183
+ </div>
184
+
185
+ </body>
186
+ </html>
@@ -0,0 +1,47 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; 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
+ <base id="base_target" target="_parent" />
19
+ </head>
20
+ <body>
21
+ <script type="text/javascript" charset="utf-8">
22
+ if (window.top.frames.main) {
23
+ document.getElementById('base_target').target = 'main';
24
+ document.body.className = 'frames';
25
+ }
26
+ </script>
27
+ <div id="content">
28
+ <h1 id="full_list_header">Class List</h1>
29
+ <div id="nav">
30
+
31
+ <a target="_self" href="class_list.html">Classes</a>
32
+
33
+ <a target="_self" href="method_list.html">Methods</a>
34
+
35
+ <a target="_self" href="file_list.html">Files</a>
36
+
37
+ </div>
38
+ <div id="search">Search: <input type="text" /></div>
39
+
40
+ <ul id="full_list" class="class">
41
+ <li><span class='object_link'><a href="top-level-namespace.html" title=" (root)">Top Level Namespace</a></span></li>
42
+ <li><a class='toggle'></a> <span class='object_link'><a href="Disbatch.html" title="Disbatch (module)">Disbatch</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="Disbatch/NoNodeError.html" title="Disbatch::NoNodeError (class)">NoNodeError</a></span> &lt; RuntimeError<small class='search_info'>Disbatch</small></li><li><span class='object_link'><a href="Disbatch/Node.html" title="Disbatch::Node (class)">Node</a></span> &lt; Object<small class='search_info'>Disbatch</small></li><li><span class='object_link'><a href="Disbatch/Plugin.html" title="Disbatch::Plugin (module)">Plugin</a></span><small class='search_info'>Disbatch</small></li><li><a class='toggle'></a> <span class='object_link'><a href="Disbatch/Queue.html" title="Disbatch::Queue (class)">Queue</a></span> &lt; Object<small class='search_info'>Disbatch</small></li><ul><li><span class='object_link'><a href="Disbatch/Queue/Task.html" title="Disbatch::Queue::Task (class)">Task</a></span> &lt; Object<small class='search_info'>Disbatch::Queue</small></li></ul></ul><li><span class='object_link'><a href="Mongo.html" title="Mongo (module)">Mongo</a></span><small class='search_info'>Top Level Namespace</small></li>
43
+
44
+ </ul>
45
+ </div>
46
+ </body>
47
+ </html>
@@ -0,0 +1 @@
1
+ /* Override this file with custom rules */
@@ -0,0 +1,55 @@
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
+ }
8
+
9
+ h1 { padding: 12px 10px; padding-bottom: 0; margin: 0; font-size: 1.4em; }
10
+ .clear { clear: both; }
11
+ #search { position: absolute; right: 5px; top: 9px; padding-left: 24px; }
12
+ #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; }
13
+ #full_list { padding: 0; list-style: none; margin-left: 0; }
14
+ #full_list ul { padding: 0; }
15
+ #full_list li { padding: 5px; padding-left: 12px; margin: 0; font-size: 1.1em; list-style: none; }
16
+ #noresults { padding: 7px 12px; }
17
+ #content.insearch #noresults { margin-left: 7px; }
18
+ ul.collapsed ul, ul.collapsed li { display: none; }
19
+ ul.collapsed.search_uncollapsed { display: block; }
20
+ ul.collapsed.search_uncollapsed li { display: list-item; }
21
+ 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; }
22
+ li.collapsed a.toggle { opacity: 0.5; cursor: default; background-position: top left; }
23
+ li { color: #888; cursor: pointer; }
24
+ li.deprecated { text-decoration: line-through; font-style: italic; }
25
+ li.r1 { background: #f0f0f0; }
26
+ li.r2 { background: #fafafa; }
27
+ li:hover { background: #ddd; }
28
+ li small:before { content: "("; }
29
+ li small:after { content: ")"; }
30
+ li small.search_info { display: none; }
31
+ a:link, a:visited { text-decoration: none; color: #05a; }
32
+ li.clicked { background: #05a; color: #ccc; }
33
+ li.clicked a:link, li.clicked a:visited { color: #eee; }
34
+ li.clicked a.toggle { opacity: 0.5; background-position: bottom right; }
35
+ li.collapsed.clicked a.toggle { background-position: top right; }
36
+ #search input { border: 1px solid #bbb; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
37
+ #nav { margin-left: 10px; font-size: 0.9em; display: none; color: #aaa; }
38
+ #nav a:link, #nav a:visited { color: #358; }
39
+ #nav a:hover { background: transparent; color: #5af; }
40
+
41
+ .frames #content h1 { margin-top: 0; }
42
+ .frames li { white-space: nowrap; cursor: normal; }
43
+ .frames li small { display: block; font-size: 0.8em; }
44
+ .frames li small:before { content: ""; }
45
+ .frames li small:after { content: ""; }
46
+ .frames li small.search_info { display: none; }
47
+ .frames #search { width: 170px; position: static; margin: 3px; margin-left: 10px; font-size: 0.9em; color: #888; padding-left: 0; padding-right: 24px; }
48
+ .frames #content.insearch #search { background-position: center right; }
49
+ .frames #search input { width: 110px; }
50
+ .frames #nav { display: block; }
51
+
52
+ #full_list.insearch li { display: none; }
53
+ #full_list.insearch li.found { display: list-item; padding-left: 10px; }
54
+ #full_list.insearch li a.toggle { display: none; }
55
+ #full_list.insearch li small.search_info { display: block; }