beway 1.0.2 → 1.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.
- data/Gemfile +1 -1
- data/README +7 -16
- data/README.rdoc +8 -20
- data/doc/Beway.html +136 -183
- data/doc/Beway/Auction.html +630 -816
- data/doc/Beway/AuctionParseError.html +139 -158
- data/doc/Beway/Bidder.html +384 -529
- data/doc/Beway/BidderError.html +139 -158
- data/doc/Beway/CliRunner.html +742 -818
- data/doc/Beway/EbayData.html +398 -451
- data/doc/Beway/EbayDataParseError.html +139 -158
- data/doc/Beway/InvalidUrlError.html +139 -158
- data/doc/README.html +129 -167
- data/doc/created.rid +6 -6
- data/doc/images/add.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +134 -223
- data/doc/js/darkfish.js +153 -0
- data/doc/js/jquery.js +18 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/search.js +94 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/searcher.js +228 -0
- data/doc/lib/beway/auction_rb.html +1 -1
- data/doc/lib/beway/bidder_rb.html +1 -1
- data/doc/lib/beway/cli_runner_rb.html +1 -1
- data/doc/lib/beway/ebay_data_rb.html +1 -1
- data/doc/rdoc.css +310 -473
- data/doc/table_of_contents.html +154 -0
- data/lib/beway.rb +4 -0
- data/lib/beway/auction.rb +5 -7
- data/lib/beway/cli_runner.rb +2 -3
- data/lib/beway/ebay_data.rb +1 -1
- data/spec/auction_spec.rb +12 -1
- data/spec/bidder_spec.rb +19 -3
- data/spec/config.rb +2 -2
- data/spec/html/kodak-film-old.html +59 -0
- metadata +82 -97
data/doc/rdoc.css
CHANGED
|
@@ -8,173 +8,170 @@
|
|
|
8
8
|
|
|
9
9
|
/* Base Green is: #6C8C22 */
|
|
10
10
|
|
|
11
|
-
*{ padding: 0; margin: 0; }
|
|
11
|
+
* { padding: 0; margin: 0; }
|
|
12
12
|
|
|
13
13
|
body {
|
|
14
14
|
background: #efefef;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
body.class, body.module, body.file {
|
|
18
|
-
margin-left: 40px;
|
|
15
|
+
font: 14px "Helvetica Neue", Helvetica, Tahoma, sans-serif;
|
|
16
|
+
margin-left: 40px;
|
|
19
17
|
}
|
|
20
18
|
body.file-popup {
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
font-size: 90%;
|
|
20
|
+
margin-left: 0;
|
|
23
21
|
}
|
|
24
22
|
|
|
25
23
|
h1 {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
font-size: 300%;
|
|
25
|
+
text-shadow: rgba(135,145,135,0.65) 2px 2px 3px;
|
|
26
|
+
color: #6C8C22;
|
|
29
27
|
}
|
|
30
28
|
h2,h3,h4 { margin-top: 1.5em; }
|
|
31
29
|
|
|
32
30
|
:link,
|
|
33
31
|
:visited {
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
color: #6C8C22;
|
|
33
|
+
text-decoration: none;
|
|
36
34
|
}
|
|
37
35
|
:link:hover,
|
|
38
36
|
:visited:hover {
|
|
39
|
-
|
|
37
|
+
border-bottom: 1px dotted #6C8C22;
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
pre {
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
background: #ddd;
|
|
42
|
+
padding: 0.5em 0;
|
|
45
43
|
}
|
|
46
44
|
|
|
47
|
-
|
|
48
45
|
/* @group Generic Classes */
|
|
49
46
|
|
|
50
47
|
.initially-hidden {
|
|
51
|
-
|
|
48
|
+
display: none;
|
|
52
49
|
}
|
|
53
50
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
51
|
+
#search-field {
|
|
52
|
+
width: 98%;
|
|
53
|
+
background: #eee;
|
|
54
|
+
border: none;
|
|
55
|
+
height: 1.5em;
|
|
56
|
+
-webkit-border-radius: 4px;
|
|
60
57
|
}
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
#search-field:focus {
|
|
59
|
+
background: #f1edba;
|
|
60
|
+
}
|
|
61
|
+
#search-field:-moz-placeholder,
|
|
62
|
+
#search-field::-webkit-input-placeholder {
|
|
63
|
+
font-weight: bold;
|
|
64
|
+
color: #666;
|
|
63
65
|
}
|
|
64
66
|
|
|
65
67
|
.missing-docs {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
68
|
+
font-size: 120%;
|
|
69
|
+
background: white url(images/wrench_orange.png) no-repeat 4px center;
|
|
70
|
+
color: #ccc;
|
|
71
|
+
line-height: 2em;
|
|
72
|
+
border: 1px solid #d00;
|
|
73
|
+
opacity: 1;
|
|
74
|
+
padding-left: 20px;
|
|
75
|
+
text-indent: 24px;
|
|
76
|
+
letter-spacing: 3px;
|
|
77
|
+
font-weight: bold;
|
|
78
|
+
-webkit-border-radius: 5px;
|
|
79
|
+
-moz-border-radius: 5px;
|
|
78
80
|
}
|
|
79
81
|
|
|
80
82
|
.target-section {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
border: 2px solid #dcce90;
|
|
84
|
+
border-left-width: 8px;
|
|
85
|
+
padding: 0 1em;
|
|
86
|
+
background: #fff3c2;
|
|
85
87
|
}
|
|
86
88
|
|
|
87
89
|
/* @end */
|
|
88
90
|
|
|
89
|
-
|
|
90
91
|
/* @group Index Page, Standalone file pages */
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
body.indexpage p,
|
|
95
|
-
body.indexpage div,
|
|
96
|
-
body.file p {
|
|
97
|
-
margin: 1em 0;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.indexpage ul,
|
|
101
|
-
.file #documentation ul {
|
|
102
|
-
line-height: 160%;
|
|
103
|
-
list-style: none;
|
|
92
|
+
.indexpage ul {
|
|
93
|
+
line-height: 160%;
|
|
94
|
+
list-style: none;
|
|
104
95
|
}
|
|
105
96
|
.indexpage ul :link,
|
|
106
97
|
.indexpage ul :visited {
|
|
107
|
-
|
|
98
|
+
font-size: 16px;
|
|
108
99
|
}
|
|
109
100
|
|
|
110
|
-
.indexpage li
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
101
|
+
.indexpage li {
|
|
102
|
+
padding-left: 20px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.indexpage ul > li {
|
|
106
|
+
background: url(images/bullet_black.png) no-repeat left 4px;
|
|
107
|
+
}
|
|
108
|
+
.indexpage li.method {
|
|
109
|
+
background: url(images/plugin.png) no-repeat left 4px;
|
|
114
110
|
}
|
|
115
111
|
.indexpage li.module {
|
|
116
|
-
|
|
112
|
+
background: url(images/package.png) no-repeat left 4px;
|
|
117
113
|
}
|
|
118
114
|
.indexpage li.class {
|
|
119
|
-
|
|
115
|
+
background: url(images/ruby.png) no-repeat left 4px;
|
|
120
116
|
}
|
|
121
117
|
.indexpage li.file {
|
|
122
|
-
|
|
118
|
+
background: url(images/page_white_text.png) no-repeat left 4px;
|
|
123
119
|
}
|
|
124
|
-
.
|
|
125
|
-
.
|
|
126
|
-
|
|
120
|
+
.indexpage li li {
|
|
121
|
+
background: url(images/tag_blue.png) no-repeat left 4px;
|
|
122
|
+
}
|
|
123
|
+
.indexpage li .toc-toggle {
|
|
124
|
+
width: 16px;
|
|
125
|
+
height: 16px;
|
|
126
|
+
background: url(images/add.png) no-repeat;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.indexpage li .toc-toggle.open {
|
|
130
|
+
background: url(images/delete.png) no-repeat;
|
|
127
131
|
}
|
|
128
132
|
|
|
129
133
|
/* @end */
|
|
130
134
|
|
|
131
135
|
/* @group Top-Level Structure */
|
|
132
136
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
float: left;
|
|
137
|
-
width: 260px;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.class #documentation,
|
|
141
|
-
.file #documentation,
|
|
142
|
-
.module #documentation {
|
|
143
|
-
margin: 2em 1em 5em 300px;
|
|
144
|
-
min-width: 340px;
|
|
137
|
+
#metadata {
|
|
138
|
+
float: left;
|
|
139
|
+
width: 260px;
|
|
145
140
|
}
|
|
146
141
|
|
|
147
|
-
|
|
148
|
-
|
|
142
|
+
#documentation {
|
|
143
|
+
margin: 2em 1em 5em 300px;
|
|
144
|
+
min-width: 340px;
|
|
149
145
|
}
|
|
150
146
|
|
|
151
147
|
#validator-badges {
|
|
152
|
-
|
|
153
|
-
|
|
148
|
+
clear: both;
|
|
149
|
+
margin: 1em 1em 2em;
|
|
150
|
+
font-size: smaller;
|
|
154
151
|
}
|
|
155
152
|
|
|
156
153
|
/* @end */
|
|
157
154
|
|
|
158
155
|
/* @group Metadata Section */
|
|
159
156
|
#metadata .section {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
157
|
+
background-color: #dedede;
|
|
158
|
+
-moz-border-radius: 5px;
|
|
159
|
+
-webkit-border-radius: 5px;
|
|
160
|
+
border: 1px solid #aaa;
|
|
161
|
+
margin: 0 8px 8px;
|
|
162
|
+
font-size: 90%;
|
|
163
|
+
overflow: hidden;
|
|
167
164
|
}
|
|
168
165
|
#metadata h3.section-header {
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
166
|
+
margin: 0;
|
|
167
|
+
padding: 2px 8px;
|
|
168
|
+
background: #ccc;
|
|
169
|
+
color: #666;
|
|
170
|
+
-moz-border-radius-topleft: 4px;
|
|
171
|
+
-moz-border-radius-topright: 4px;
|
|
172
|
+
-webkit-border-top-left-radius: 4px;
|
|
173
|
+
-webkit-border-top-right-radius: 4px;
|
|
174
|
+
border-bottom: 1px solid #aaa;
|
|
178
175
|
}
|
|
179
176
|
#metadata #home-section h3.section-header {
|
|
180
177
|
border-bottom: 0;
|
|
@@ -183,524 +180,364 @@ body.file p {
|
|
|
183
180
|
#metadata ul,
|
|
184
181
|
#metadata dl,
|
|
185
182
|
#metadata p {
|
|
186
|
-
|
|
187
|
-
|
|
183
|
+
padding: 8px;
|
|
184
|
+
list-style: none;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
#file-metadata {
|
|
188
|
+
margin-top: 2em;
|
|
188
189
|
}
|
|
189
190
|
|
|
190
191
|
#file-metadata ul {
|
|
191
|
-
|
|
192
|
-
|
|
192
|
+
padding-left: 28px;
|
|
193
|
+
list-style-image: url(images/page_green.png);
|
|
193
194
|
}
|
|
194
195
|
|
|
195
196
|
dl.svninfo {
|
|
196
|
-
|
|
197
|
-
|
|
197
|
+
color: #666;
|
|
198
|
+
margin: 0;
|
|
198
199
|
}
|
|
199
200
|
dl.svninfo dt {
|
|
200
|
-
|
|
201
|
+
font-weight: bold;
|
|
201
202
|
}
|
|
202
203
|
|
|
203
204
|
ul.link-list li {
|
|
204
|
-
|
|
205
|
+
white-space: nowrap;
|
|
205
206
|
}
|
|
206
207
|
ul.link-list .type {
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
208
|
+
font-size: 8px;
|
|
209
|
+
text-transform: uppercase;
|
|
210
|
+
color: white;
|
|
211
|
+
background: #969696;
|
|
212
|
+
padding: 2px 4px;
|
|
213
|
+
-webkit-border-radius: 5px;
|
|
213
214
|
}
|
|
214
215
|
|
|
215
216
|
/* @end */
|
|
216
217
|
|
|
218
|
+
/* @group Class Metadata Section */
|
|
219
|
+
#class-metadata {
|
|
220
|
+
margin-top: 2em;
|
|
221
|
+
}
|
|
222
|
+
/* @end */
|
|
217
223
|
|
|
218
224
|
/* @group Project Metadata Section */
|
|
219
225
|
#project-metadata {
|
|
220
|
-
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.file #project-metadata {
|
|
224
|
-
margin-top: 0em;
|
|
226
|
+
margin-top: 2em;
|
|
225
227
|
}
|
|
226
228
|
|
|
227
229
|
#project-metadata .section {
|
|
228
|
-
|
|
230
|
+
border: 1px solid #aaa;
|
|
229
231
|
}
|
|
230
232
|
#project-metadata h3.section-header {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
+
border-bottom: 1px solid #aaa;
|
|
234
|
+
position: relative;
|
|
233
235
|
}
|
|
234
|
-
#project-metadata h3.section-header .search-toggle {
|
|
235
|
-
position: absolute;
|
|
236
|
-
right: 5px;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
236
|
|
|
240
237
|
#project-metadata form {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
padding: 8px 8px 16px;
|
|
244
|
-
border-bottom: 1px solid #bbb;
|
|
245
|
-
}
|
|
246
|
-
#project-metadata fieldset {
|
|
247
|
-
border: 0;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
#no-class-search-results {
|
|
251
|
-
margin: 0 auto 1em;
|
|
252
|
-
text-align: center;
|
|
253
|
-
font-size: 14px;
|
|
254
|
-
font-weight: bold;
|
|
255
|
-
color: #aaa;
|
|
238
|
+
color: #777;
|
|
239
|
+
background: #ccc;
|
|
256
240
|
}
|
|
257
241
|
|
|
258
242
|
/* @end */
|
|
259
243
|
|
|
260
|
-
|
|
261
244
|
/* @group Documentation Section */
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
245
|
+
.description {
|
|
246
|
+
font-size: 100%;
|
|
247
|
+
color: #333;
|
|
265
248
|
}
|
|
266
249
|
|
|
267
|
-
|
|
268
|
-
|
|
250
|
+
.description p {
|
|
251
|
+
margin: 1em 0.4em;
|
|
269
252
|
}
|
|
270
253
|
|
|
271
|
-
|
|
254
|
+
.description li p {
|
|
272
255
|
margin: 0;
|
|
273
256
|
}
|
|
274
257
|
|
|
275
|
-
|
|
276
|
-
|
|
258
|
+
.description ol,
|
|
259
|
+
.description ul {
|
|
260
|
+
margin-left: 1.5em;
|
|
277
261
|
}
|
|
278
|
-
|
|
279
|
-
|
|
262
|
+
.description ol li,
|
|
263
|
+
.description ul li {
|
|
264
|
+
line-height: 1.4em;
|
|
280
265
|
}
|
|
281
266
|
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
margin: 8px 1.5em;
|
|
285
|
-
border: 1px solid #ccc;
|
|
267
|
+
.note-list {
|
|
268
|
+
margin: 8px 0;
|
|
286
269
|
}
|
|
287
|
-
|
|
288
|
-
|
|
270
|
+
|
|
271
|
+
.label-list {
|
|
272
|
+
margin: 8px 1.5em;
|
|
273
|
+
border: 1px solid #ccc;
|
|
274
|
+
}
|
|
275
|
+
.description .label-list {
|
|
276
|
+
font-size: 14px;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.note-list dt {
|
|
280
|
+
font-weight: bold;
|
|
281
|
+
}
|
|
282
|
+
.note-list dd {
|
|
283
|
+
padding: 0 12px;
|
|
289
284
|
}
|
|
290
285
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
background: #ddd;
|
|
286
|
+
.label-list dt {
|
|
287
|
+
padding: 2px 4px;
|
|
288
|
+
font-weight: bold;
|
|
289
|
+
background: #ddd;
|
|
296
290
|
}
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
padding: 2px 12px;
|
|
291
|
+
.label-list dd {
|
|
292
|
+
padding: 2px 12px;
|
|
300
293
|
}
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
294
|
+
.label-list dd + dt,
|
|
295
|
+
.note-list dd + dt {
|
|
296
|
+
margin-top: 0.7em;
|
|
304
297
|
}
|
|
305
298
|
|
|
306
299
|
#documentation .section {
|
|
307
|
-
|
|
300
|
+
font-size: 90%;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
#documentation h2.section-header {
|
|
304
|
+
margin-top: 1em;
|
|
305
|
+
padding: 0.25em 0.5em;
|
|
306
|
+
background: #ccc;
|
|
307
|
+
color: #333;
|
|
308
|
+
font-size: 175%;
|
|
309
|
+
border: 1px solid #bbb;
|
|
310
|
+
-moz-border-radius: 3px;
|
|
311
|
+
-webkit-border-radius: 3px;
|
|
308
312
|
}
|
|
313
|
+
|
|
314
|
+
.documentation-section-title {
|
|
315
|
+
position: relative;
|
|
316
|
+
}
|
|
317
|
+
.documentation-section-title .section-click-top {
|
|
318
|
+
position: absolute;
|
|
319
|
+
top: 6px;
|
|
320
|
+
right: 12px;
|
|
321
|
+
font-size: 10px;
|
|
322
|
+
color: #9b9877;
|
|
323
|
+
visibility: hidden;
|
|
324
|
+
padding-right: 0.5px;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.documentation-section-title:hover .section-click-top {
|
|
328
|
+
visibility: visible;
|
|
329
|
+
}
|
|
330
|
+
|
|
309
331
|
#documentation h3.section-header {
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
332
|
+
margin-top: 1em;
|
|
333
|
+
padding: 0.25em 0.5em;
|
|
334
|
+
background-color: #dedede;
|
|
335
|
+
color: #333;
|
|
336
|
+
font-size: 150%;
|
|
337
|
+
border: 1px solid #bbb;
|
|
338
|
+
-moz-border-radius: 3px;
|
|
339
|
+
-webkit-border-radius: 3px;
|
|
318
340
|
}
|
|
319
341
|
|
|
320
342
|
#constants-list > dl,
|
|
321
343
|
#attributes-list > dl {
|
|
322
|
-
|
|
323
|
-
|
|
344
|
+
margin: 1em 0 2em;
|
|
345
|
+
border: 0;
|
|
324
346
|
}
|
|
325
347
|
#constants-list > dl dt,
|
|
326
348
|
#attributes-list > dl dt {
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
349
|
+
padding-left: 0;
|
|
350
|
+
font-weight: bold;
|
|
351
|
+
font-family: Monaco, "Andale Mono";
|
|
352
|
+
background: inherit;
|
|
331
353
|
}
|
|
332
354
|
#constants-list > dl dt a,
|
|
333
355
|
#attributes-list > dl dt a {
|
|
334
|
-
|
|
356
|
+
color: inherit;
|
|
335
357
|
}
|
|
336
358
|
#constants-list > dl dd,
|
|
337
359
|
#attributes-list > dl dd {
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
360
|
+
margin: 0 0 1em 0;
|
|
361
|
+
padding: 0;
|
|
362
|
+
color: #666;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.documentation-section h2 {
|
|
366
|
+
position: relative;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.documentation-section h2 a {
|
|
370
|
+
position: absolute;
|
|
371
|
+
top: 8px;
|
|
372
|
+
right: 10px;
|
|
373
|
+
font-size: 12px;
|
|
374
|
+
color: #9b9877;
|
|
375
|
+
visibility: hidden;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.documentation-section h2:hover a {
|
|
379
|
+
visibility: visible;
|
|
341
380
|
}
|
|
342
381
|
|
|
343
382
|
/* @group Method Details */
|
|
344
383
|
|
|
345
384
|
#documentation .method-source-code {
|
|
346
|
-
|
|
385
|
+
display: none;
|
|
347
386
|
}
|
|
348
387
|
|
|
349
388
|
#documentation .method-detail {
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
389
|
+
margin: 0.5em 0;
|
|
390
|
+
padding: 0.5em 0;
|
|
391
|
+
cursor: pointer;
|
|
353
392
|
}
|
|
354
393
|
#documentation .method-detail:hover {
|
|
355
|
-
|
|
394
|
+
background-color: #f1edba;
|
|
356
395
|
}
|
|
357
396
|
#documentation .method-heading {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
397
|
+
position: relative;
|
|
398
|
+
padding: 2px 4px 0 20px;
|
|
399
|
+
font-size: 125%;
|
|
400
|
+
font-weight: bold;
|
|
401
|
+
color: #333;
|
|
402
|
+
background: url(images/brick.png) no-repeat left bottom;
|
|
364
403
|
}
|
|
365
404
|
#documentation .method-heading :link,
|
|
366
405
|
#documentation .method-heading :visited {
|
|
367
|
-
|
|
406
|
+
color: inherit;
|
|
368
407
|
}
|
|
369
408
|
#documentation .method-click-advice {
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
409
|
+
position: absolute;
|
|
410
|
+
top: 2px;
|
|
411
|
+
right: 5px;
|
|
412
|
+
font-size: 10px;
|
|
413
|
+
color: #9b9877;
|
|
414
|
+
visibility: hidden;
|
|
415
|
+
padding-right: 20px;
|
|
416
|
+
line-height: 20px;
|
|
417
|
+
background: url(images/zoom.png) no-repeat right top;
|
|
379
418
|
}
|
|
380
|
-
#documentation .method-
|
|
381
|
-
|
|
419
|
+
#documentation .method-heading:hover .method-click-advice {
|
|
420
|
+
visibility: visible;
|
|
382
421
|
}
|
|
383
422
|
|
|
384
423
|
#documentation .method-alias .method-heading {
|
|
385
|
-
|
|
386
|
-
|
|
424
|
+
color: #666;
|
|
425
|
+
background: url(images/brick_link.png) no-repeat left bottom;
|
|
387
426
|
}
|
|
388
427
|
|
|
389
428
|
#documentation .method-description,
|
|
390
429
|
#documentation .aliases {
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
color: #666;
|
|
430
|
+
margin: 0 20px;
|
|
431
|
+
color: #666;
|
|
394
432
|
}
|
|
433
|
+
|
|
434
|
+
#documentation .method-description p,
|
|
435
|
+
#documentation .aliases p {
|
|
436
|
+
line-height: 1.2em;
|
|
437
|
+
}
|
|
438
|
+
|
|
395
439
|
#documentation .aliases {
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
440
|
+
padding-top: 4px;
|
|
441
|
+
font-style: italic;
|
|
442
|
+
cursor: default;
|
|
399
443
|
}
|
|
400
444
|
#documentation .method-description p {
|
|
401
|
-
|
|
402
|
-
}
|
|
403
|
-
#documentation .method-description p + p {
|
|
404
|
-
margin-bottom: 0.5em;
|
|
445
|
+
margin-bottom: 0.5em;
|
|
405
446
|
}
|
|
406
447
|
#documentation .method-description ul {
|
|
407
448
|
margin-left: 1.5em;
|
|
408
449
|
}
|
|
450
|
+
pre {
|
|
451
|
+
margin: 0.5em 0;
|
|
452
|
+
}
|
|
409
453
|
|
|
410
454
|
#documentation .attribute-method-heading {
|
|
411
|
-
|
|
455
|
+
background: url(images/tag_green.png) no-repeat left bottom;
|
|
412
456
|
}
|
|
413
457
|
#documentation #attribute-method-details .method-detail:hover {
|
|
414
|
-
|
|
415
|
-
|
|
458
|
+
background-color: transparent;
|
|
459
|
+
cursor: default;
|
|
416
460
|
}
|
|
417
461
|
#documentation .attribute-access-type {
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
462
|
+
font-size: 60%;
|
|
463
|
+
text-transform: uppercase;
|
|
464
|
+
vertical-align: super;
|
|
465
|
+
padding: 0 2px;
|
|
422
466
|
}
|
|
423
467
|
/* @end */
|
|
424
468
|
|
|
425
469
|
/* @end */
|
|
426
470
|
|
|
427
|
-
|
|
428
|
-
|
|
429
471
|
/* @group Source Code */
|
|
430
472
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
overflow: hidden;
|
|
473
|
+
pre {
|
|
474
|
+
overflow: auto;
|
|
475
|
+
background: #262626;
|
|
476
|
+
color: white;
|
|
477
|
+
border: 1px dashed #999;
|
|
478
|
+
padding: 0.5em;
|
|
438
479
|
}
|
|
439
480
|
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
padding: 0;
|
|
443
|
-
color: white;
|
|
444
|
-
overflow: auto;
|
|
481
|
+
.description pre {
|
|
482
|
+
margin: 0 0.4em;
|
|
445
483
|
}
|
|
446
484
|
|
|
447
|
-
/* @group Ruby keyword styles */
|
|
448
|
-
|
|
449
485
|
.ruby-constant { color: #7fffd4; background: transparent; }
|
|
450
486
|
.ruby-keyword { color: #00ffff; background: transparent; }
|
|
451
487
|
.ruby-ivar { color: #eedd82; background: transparent; }
|
|
452
488
|
.ruby-operator { color: #00ffee; background: transparent; }
|
|
453
489
|
.ruby-identifier { color: #ffdead; background: transparent; }
|
|
454
490
|
.ruby-node { color: #ffa07a; background: transparent; }
|
|
455
|
-
.ruby-comment { color: #
|
|
491
|
+
.ruby-comment { color: #dc0000; font-weight: bold; background: transparent; }
|
|
456
492
|
.ruby-regexp { color: #ffa07a; background: transparent; }
|
|
457
493
|
.ruby-value { color: #7fffd4; background: transparent; }
|
|
458
494
|
|
|
459
495
|
/* @end */
|
|
460
|
-
/* @end */
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
/* @group File Popup Contents */
|
|
464
|
-
|
|
465
|
-
.file #metadata,
|
|
466
|
-
.file-popup #metadata {
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.file-popup dl {
|
|
470
|
-
font-size: 80%;
|
|
471
|
-
padding: 0.75em;
|
|
472
|
-
background-color: #dedede;
|
|
473
|
-
color: #333;
|
|
474
|
-
border: 1px solid #bbb;
|
|
475
|
-
-moz-border-radius: 3px;
|
|
476
|
-
-webkit-border-radius: 3px;
|
|
477
|
-
}
|
|
478
|
-
.file dt {
|
|
479
|
-
font-weight: bold;
|
|
480
|
-
padding-left: 22px;
|
|
481
|
-
line-height: 20px;
|
|
482
|
-
background: url(images/page_white_width.png) no-repeat left top;
|
|
483
|
-
}
|
|
484
|
-
.file dt.modified-date {
|
|
485
|
-
background: url(images/date.png) no-repeat left top;
|
|
486
|
-
}
|
|
487
|
-
.file dt.requires {
|
|
488
|
-
background: url(images/plugin.png) no-repeat left top;
|
|
489
|
-
}
|
|
490
|
-
.file dt.scs-url {
|
|
491
|
-
background: url(images/wrench.png) no-repeat left top;
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
.file dl dd {
|
|
495
|
-
margin: 0 0 1em 0;
|
|
496
|
-
}
|
|
497
|
-
.file #metadata dl dd ul {
|
|
498
|
-
list-style: circle;
|
|
499
|
-
margin-left: 20px;
|
|
500
|
-
padding-top: 0;
|
|
501
|
-
}
|
|
502
|
-
.file #metadata dl dd ul li {
|
|
503
|
-
}
|
|
504
496
|
|
|
505
497
|
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
font-size: 120%;
|
|
512
|
-
border: 1px solid #bbb;
|
|
513
|
-
-moz-border-radius: 3px;
|
|
514
|
-
-webkit-border-radius: 3px;
|
|
498
|
+
/* @group search results */
|
|
499
|
+
#search-results h1 {
|
|
500
|
+
font-size: 1em;
|
|
501
|
+
font-weight: normal;
|
|
502
|
+
text-shadow: none;
|
|
515
503
|
}
|
|
516
504
|
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
/* @group ThickBox Styles */
|
|
523
|
-
#TB_window {
|
|
524
|
-
font: 12px Arial, Helvetica, sans-serif;
|
|
525
|
-
color: #333333;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
#TB_secondLine {
|
|
529
|
-
font: 10px Arial, Helvetica, sans-serif;
|
|
530
|
-
color:#666666;
|
|
505
|
+
#search-results .current {
|
|
506
|
+
background: #ccc;
|
|
507
|
+
border-bottom: 1px solid transparent;
|
|
531
508
|
}
|
|
532
509
|
|
|
533
|
-
#
|
|
534
|
-
|
|
535
|
-
#
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
#TB_window :visited:focus { color: #666666; }
|
|
541
|
-
|
|
542
|
-
#TB_overlay {
|
|
543
|
-
position: fixed;
|
|
544
|
-
z-index:100;
|
|
545
|
-
top: 0px;
|
|
546
|
-
left: 0px;
|
|
547
|
-
height:100%;
|
|
548
|
-
width:100%;
|
|
510
|
+
#search-results li {
|
|
511
|
+
list-style: none;
|
|
512
|
+
border-bottom: 1px solid #aaa;
|
|
513
|
+
-moz-border-radius: 4px;
|
|
514
|
+
-webkit-border-radius: 4px;
|
|
515
|
+
border-radius: 4px;
|
|
516
|
+
margin-bottom: 0.5em;
|
|
549
517
|
}
|
|
550
518
|
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
filter:alpha(opacity=75);
|
|
555
|
-
-moz-opacity: 0.75;
|
|
556
|
-
opacity: 0.75;
|
|
519
|
+
#search-results li:last-child {
|
|
520
|
+
border-bottom: none;
|
|
521
|
+
margin-bottom: 0;
|
|
557
522
|
}
|
|
558
523
|
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
524
|
+
#search-results li p {
|
|
525
|
+
padding: 0;
|
|
526
|
+
margin: 0.5em;
|
|
562
527
|
}
|
|
563
528
|
|
|
564
|
-
#
|
|
565
|
-
|
|
566
|
-
background: #ffffff;
|
|
567
|
-
z-index: 102;
|
|
568
|
-
color:#000000;
|
|
569
|
-
display:none;
|
|
570
|
-
border: 4px solid #525252;
|
|
571
|
-
text-align:left;
|
|
572
|
-
top:50%;
|
|
573
|
-
left:50%;
|
|
529
|
+
#search-results .search-namespace {
|
|
530
|
+
font-weight: bold;
|
|
574
531
|
}
|
|
575
532
|
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
533
|
+
#search-results li em {
|
|
534
|
+
background: yellow;
|
|
535
|
+
font-style: normal;
|
|
579
536
|
}
|
|
580
537
|
|
|
581
|
-
#
|
|
582
|
-
|
|
583
|
-
margin: 15px 0 0 15px;
|
|
584
|
-
border-right: 1px solid #ccc;
|
|
585
|
-
border-bottom: 1px solid #ccc;
|
|
586
|
-
border-top: 1px solid #666;
|
|
587
|
-
border-left: 1px solid #666;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
#TB_caption{
|
|
591
|
-
height:25px;
|
|
592
|
-
padding:7px 30px 10px 25px;
|
|
593
|
-
float:left;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
#TB_closeWindow{
|
|
597
|
-
height:25px;
|
|
598
|
-
padding:11px 25px 10px 0;
|
|
599
|
-
float:right;
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
#TB_closeAjaxWindow{
|
|
603
|
-
padding:7px 10px 5px 0;
|
|
604
|
-
margin-bottom:1px;
|
|
605
|
-
text-align:right;
|
|
606
|
-
float:right;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
#TB_ajaxWindowTitle{
|
|
610
|
-
float:left;
|
|
611
|
-
padding:7px 0 5px 10px;
|
|
612
|
-
margin-bottom:1px;
|
|
613
|
-
font-size: 22px;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
#TB_title{
|
|
617
|
-
background-color: #6C8C22;
|
|
618
|
-
color: #dedede;
|
|
619
|
-
height:40px;
|
|
620
|
-
}
|
|
621
|
-
#TB_title :link,
|
|
622
|
-
#TB_title :visited {
|
|
623
|
-
color: white !important;
|
|
624
|
-
border-bottom: 1px dotted #dedede;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
#TB_ajaxContent{
|
|
628
|
-
clear:both;
|
|
629
|
-
padding:2px 15px 15px 15px;
|
|
630
|
-
overflow:auto;
|
|
631
|
-
text-align:left;
|
|
632
|
-
line-height:1.4em;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
#TB_ajaxContent.TB_modal{
|
|
636
|
-
padding:15px;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
#TB_ajaxContent p{
|
|
640
|
-
padding:5px 0px 5px 0px;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
#TB_load{
|
|
644
|
-
position: fixed;
|
|
645
|
-
display:none;
|
|
646
|
-
height:13px;
|
|
647
|
-
width:208px;
|
|
648
|
-
z-index:103;
|
|
649
|
-
top: 50%;
|
|
650
|
-
left: 50%;
|
|
651
|
-
margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
* html #TB_load { /* ie6 hack */
|
|
655
|
-
position: absolute;
|
|
656
|
-
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
#TB_HideSelect{
|
|
660
|
-
z-index:99;
|
|
661
|
-
position:fixed;
|
|
662
|
-
top: 0;
|
|
663
|
-
left: 0;
|
|
664
|
-
background-color:#fff;
|
|
665
|
-
border:none;
|
|
666
|
-
filter:alpha(opacity=0);
|
|
667
|
-
-moz-opacity: 0;
|
|
668
|
-
opacity: 0;
|
|
669
|
-
height:100%;
|
|
670
|
-
width:100%;
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
* html #TB_HideSelect { /* ie6 hack */
|
|
674
|
-
position: absolute;
|
|
675
|
-
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
#TB_iframeContent{
|
|
679
|
-
clear:both;
|
|
680
|
-
border:none;
|
|
681
|
-
margin-bottom:-1px;
|
|
682
|
-
margin-top:1px;
|
|
683
|
-
_margin-bottom:1px;
|
|
538
|
+
#search-results pre {
|
|
539
|
+
margin: 0.5em;
|
|
684
540
|
}
|
|
685
541
|
|
|
686
542
|
/* @end */
|
|
687
543
|
|
|
688
|
-
/* @group Debugging Section */
|
|
689
|
-
|
|
690
|
-
#debugging-toggle {
|
|
691
|
-
text-align: center;
|
|
692
|
-
}
|
|
693
|
-
#debugging-toggle img {
|
|
694
|
-
cursor: pointer;
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
#rdoc-debugging-section-dump {
|
|
698
|
-
display: none;
|
|
699
|
-
margin: 0 2em 2em;
|
|
700
|
-
background: #ccc;
|
|
701
|
-
border: 1px solid #999;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
/* @end */
|