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