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