jegolize 0.1.0 → 0.1.1
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/VERSION +1 -1
- data/app/controllers/jegol_controller.rb +43 -0
- data/app/views/_jegol.html.erb +49 -0
- data/app/views/jebol_demo.html.erb +3 -0
- data/config/initializers/jegol.rb +3 -0
- data/config/jegol.yml +31 -0
- data/jegolize.gemspec +31 -1
- data/lib/jegolize.rb +31 -0
- data/lib/ruby_bosh.rb +161 -0
- data/public/javascripts/jegol.js +571 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.subject_docs/images/doc_background.gif +0 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.subject_docs/images/shared.css +360 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.subject_docs/index.html +1 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.subject_docs/index.html.xml +2 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.tag_docs/images/doc_background.gif +0 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.tag_docs/images/shared.css +360 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.tag_docs/index.html +1 -0
- data/public/javascripts/jegol.plugin/jegol.plugin.update.tag_docs/index.html.xml +2 -0
- data/public/javascripts/jegol.plugin/update.notify.js +53 -0
- data/public/javascripts/jegol.plugin/update.subject.js +17 -0
- data/public/javascripts/jegol.plugin/update.tag.js +84 -0
- data/public/javascripts/jegol.plugin/viewer.default.js +17 -0
- data/public/javascripts/jegol.plugin/viewer.image.js +7 -0
- data/public/javascripts/jegol.plugin/viewer.poll.js +6 -0
- data/public/javascripts/jegol.plugin/viewer.youtube.js +7 -0
- data/public/javascripts/jegol.tag.js +102 -0
- data/public/javascripts/jegol_docs/images/doc_background.gif +0 -0
- data/public/javascripts/jegol_docs/images/shared.css +360 -0
- data/public/javascripts/jegol_docs/index.html +1 -0
- data/public/javascripts/jegol_docs/index.html.xml +200 -0
- data/public/javascripts/strophe.js +3543 -0
- data/public/stylesheets/.gitkeep +0 -0
- data/public/stylesheets/jegol.css +181 -0
- metadata +32 -2
@@ -0,0 +1,360 @@
|
|
1
|
+
body {
|
2
|
+
font-family: Verdana, sans-serif;
|
3
|
+
background-image: url('doc_background.gif');
|
4
|
+
background-repeat: repeat-x;
|
5
|
+
padding-left: 0px;
|
6
|
+
padding-right: 0px;
|
7
|
+
margin: 0px;
|
8
|
+
font-size: 70%;
|
9
|
+
}
|
10
|
+
|
11
|
+
a {
|
12
|
+
color: #5E83C1;
|
13
|
+
text-decoration: none;
|
14
|
+
}
|
15
|
+
|
16
|
+
a:visited {
|
17
|
+
color: #5E83C1;
|
18
|
+
text-decoration: none;
|
19
|
+
}
|
20
|
+
|
21
|
+
a:hover {
|
22
|
+
color: #B7D4F3;
|
23
|
+
text-decoration: underline;
|
24
|
+
}
|
25
|
+
|
26
|
+
img {
|
27
|
+
border:0px;
|
28
|
+
}
|
29
|
+
|
30
|
+
h1 {
|
31
|
+
width: 100%;
|
32
|
+
font-weight: bold;
|
33
|
+
font-size: 130%;
|
34
|
+
color: #FFFFFF;
|
35
|
+
background-color: #636D84;
|
36
|
+
padding: 10px;
|
37
|
+
padding-left: 20px;
|
38
|
+
margin-top: 0px;
|
39
|
+
}
|
40
|
+
|
41
|
+
h1 a { color: #FFFFFF; }
|
42
|
+
|
43
|
+
h1 a:visited { color: #FFFFFF; }
|
44
|
+
|
45
|
+
pre {
|
46
|
+
font-size: 120%;
|
47
|
+
color: #1C1D1F;
|
48
|
+
background: #f3f3f3;
|
49
|
+
padding: 1em 2em;
|
50
|
+
border-left: 3px solid #ccc;
|
51
|
+
margin-left: 15px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.content {
|
55
|
+
padding-left: 20px;
|
56
|
+
padding-right: 20px;
|
57
|
+
}
|
58
|
+
|
59
|
+
.content h2 {
|
60
|
+
font-weight: bold;
|
61
|
+
font-size: 120%;
|
62
|
+
color: #959DAF;
|
63
|
+
margin-bottom: .5em;
|
64
|
+
border-bottom: 1px dotted #aaaaaa;
|
65
|
+
padding-top: 6px;
|
66
|
+
}
|
67
|
+
|
68
|
+
/* content for the examples */
|
69
|
+
.content h3 {
|
70
|
+
font-weight: bold;
|
71
|
+
font-size: 120%;
|
72
|
+
color: #959DAF;
|
73
|
+
margin-bottom: .5em;
|
74
|
+
padding-left: 10px;
|
75
|
+
padding-top: 6px;
|
76
|
+
}
|
77
|
+
|
78
|
+
.content p {
|
79
|
+
margin-left: 15px;
|
80
|
+
}
|
81
|
+
|
82
|
+
.content dd {
|
83
|
+
margin-left: 15px;
|
84
|
+
padding-bottom: 5px;
|
85
|
+
}
|
86
|
+
|
87
|
+
.content dt {
|
88
|
+
margin-left: 10px;
|
89
|
+
padding-bottom: 5px;
|
90
|
+
}
|
91
|
+
|
92
|
+
.content table {
|
93
|
+
border: 1px solid #ECECEA;
|
94
|
+
}
|
95
|
+
|
96
|
+
.content th {
|
97
|
+
font-size: 60%;
|
98
|
+
font-weight: bold;
|
99
|
+
color: #FFFFFF;
|
100
|
+
background-color: #959DAF;
|
101
|
+
text-align: left;
|
102
|
+
padding-left: 10px;
|
103
|
+
padding-right: 10px;
|
104
|
+
padding-top: 6px;
|
105
|
+
padding-bottom: 6px;
|
106
|
+
}
|
107
|
+
|
108
|
+
.content td {
|
109
|
+
font-size: 60%;
|
110
|
+
padding-left: 10px;
|
111
|
+
padding-right: 10px;
|
112
|
+
padding-top: 6px;
|
113
|
+
padding-bottom: 6px;
|
114
|
+
}
|
115
|
+
|
116
|
+
/* Lists are top-level lists for each class, i.e. constructors, methods, etc. */
|
117
|
+
.list {
|
118
|
+
margin-left: 20px;
|
119
|
+
}
|
120
|
+
|
121
|
+
.list h3 {
|
122
|
+
font-weight: bold;
|
123
|
+
padding-top: 10px;
|
124
|
+
padding-left: 0px;
|
125
|
+
padding-bottom: 4px;
|
126
|
+
}
|
127
|
+
|
128
|
+
.list dd {
|
129
|
+
margin-left: 0px;
|
130
|
+
}
|
131
|
+
|
132
|
+
.list dt {
|
133
|
+
margin-left: 14px;
|
134
|
+
}
|
135
|
+
|
136
|
+
.details dt {
|
137
|
+
font-weight: bold;
|
138
|
+
font-size: 1.2em;
|
139
|
+
color: #000000;
|
140
|
+
padding-top: 12px;
|
141
|
+
padding-left: 0px;
|
142
|
+
padding-bottom:0px;
|
143
|
+
margin-bottom: 0px;
|
144
|
+
margin-left: 15px;
|
145
|
+
}
|
146
|
+
|
147
|
+
.details dd {
|
148
|
+
padding-left: 15px;
|
149
|
+
margin: 0px;
|
150
|
+
}
|
151
|
+
|
152
|
+
.details dd p
|
153
|
+
{
|
154
|
+
margin:0px;
|
155
|
+
padding:0px;
|
156
|
+
padding-top:10px;
|
157
|
+
}
|
158
|
+
|
159
|
+
/* from the example documentation */
|
160
|
+
.details h3 {
|
161
|
+
font-weight: bold;
|
162
|
+
font-size: 1.2em;
|
163
|
+
color: #000000;
|
164
|
+
padding-left: 0px;
|
165
|
+
margin-bottom: 0px;
|
166
|
+
margin-left: 14px;
|
167
|
+
padding-bottom: 0px;
|
168
|
+
background-image: none;
|
169
|
+
}
|
170
|
+
|
171
|
+
.parameters dt {
|
172
|
+
font-weight: bold;
|
173
|
+
font-size: 1em;
|
174
|
+
color: #000000;
|
175
|
+
margin-left: 15px;
|
176
|
+
}
|
177
|
+
|
178
|
+
.padded {
|
179
|
+
margin-top: 4px;
|
180
|
+
margin-left: 10px;
|
181
|
+
margin-bottom: 6px;
|
182
|
+
}
|
183
|
+
|
184
|
+
.parameter-table {
|
185
|
+
background-color: #F9F9F9;
|
186
|
+
}
|
187
|
+
|
188
|
+
.parameters dd {
|
189
|
+
margin-left: 15px;
|
190
|
+
margin-bottom: 10px;
|
191
|
+
}
|
192
|
+
|
193
|
+
.navigator {
|
194
|
+
padding-top: 10px;
|
195
|
+
font-weight: bold;
|
196
|
+
font-size: 80%;
|
197
|
+
padding-bottom: 10px;
|
198
|
+
}
|
199
|
+
|
200
|
+
.classDescription {
|
201
|
+
font-size: 1.4em;
|
202
|
+
padding-bottom:10px;
|
203
|
+
}
|
204
|
+
|
205
|
+
DIV#catlinks {
|
206
|
+
CLEAR: both; BORDER-RIGHT: #bbb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #bbb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 0.9em; BACKGROUND: #eee; PADDING-BOTTOM: 0px; MARGIN: 40px 0px 0px; BORDER-LEFT: #bbb 1px solid; PADDING-TOP: 0px; BORDER-BOTTOM: #bbb 1px solid
|
207
|
+
}
|
208
|
+
|
209
|
+
DIV#catlinks P {
|
210
|
+
PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 2px; MARGIN: 0px; PADDING-TOP: 0px
|
211
|
+
}
|
212
|
+
|
213
|
+
.catlink-table {
|
214
|
+
WIDTH: 100%
|
215
|
+
}
|
216
|
+
|
217
|
+
.catlink-table TD {
|
218
|
+
PADDING-RIGHT: 8px; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; PADDING-TOP: 8px
|
219
|
+
}
|
220
|
+
|
221
|
+
.catlink-table TD H4 {
|
222
|
+
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bold; FONT-SIZE: 1em; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; BORDER-BOTTOM: #bbb 1px solid
|
223
|
+
}
|
224
|
+
|
225
|
+
.catlink-table UL {
|
226
|
+
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 5px 0px; PADDING-TOP: 0px
|
227
|
+
}
|
228
|
+
|
229
|
+
.catlink-table LI {
|
230
|
+
MARGIN: 0px 0px 0px 2em; LINE-HEIGHT: 1.45em
|
231
|
+
}
|
232
|
+
|
233
|
+
#updatedContent {
|
234
|
+
margin-left: 20px;
|
235
|
+
margin-right: 20px;
|
236
|
+
padding:10px;
|
237
|
+
border:1px solid #CCCCCC;
|
238
|
+
background-color:#FFFFE1;
|
239
|
+
}
|
240
|
+
|
241
|
+
ol { list-style-type: decimal; }
|
242
|
+
ol ol { list-style-type: lower-alpha; }
|
243
|
+
ol ol ol { list-style-type: lower-roman; }
|
244
|
+
ol ol ol ol { list-style-type: decimal; }
|
245
|
+
ol ol ol ol ol { list-style-type: lower-alpha; }
|
246
|
+
ol ol ol ol ol ol { list-style-type: lower-roman; }
|
247
|
+
ul { list-style-type: square; }
|
248
|
+
ul ul { list-style-type: disc; }
|
249
|
+
ul ul ul { list-style-type: circle; }
|
250
|
+
ul ul ul ul { list-style-type: square; }
|
251
|
+
ul ul ul ul ul { list-style-type: disc; }
|
252
|
+
ul ul ul ul ul ul { list-style-type: circle; }
|
253
|
+
|
254
|
+
|
255
|
+
/* COMPATIBILITY TABLES */
|
256
|
+
|
257
|
+
tr.compheader {
|
258
|
+
}
|
259
|
+
|
260
|
+
tr.compheader th {
|
261
|
+
font-weight: normal;
|
262
|
+
font-size: 80%;
|
263
|
+
text-align:center;
|
264
|
+
}
|
265
|
+
|
266
|
+
td.header {
|
267
|
+
background-color: #F2F3EF;
|
268
|
+
padding: 0.3em;
|
269
|
+
}
|
270
|
+
|
271
|
+
td.header h3,td.header h4 {
|
272
|
+
margin-top: 0.5em;
|
273
|
+
text-align: center;
|
274
|
+
}
|
275
|
+
|
276
|
+
td.declaration {
|
277
|
+
background-color: #F2F3EF;
|
278
|
+
text-align: left;
|
279
|
+
vertical-align: top;
|
280
|
+
padding-right: 10px;
|
281
|
+
color: #666666;
|
282
|
+
}
|
283
|
+
|
284
|
+
td.declaration a {
|
285
|
+
text-decoration: none;
|
286
|
+
}
|
287
|
+
|
288
|
+
div.name {
|
289
|
+
font-weight: bold;
|
290
|
+
margin-bottom: 2em;
|
291
|
+
margin-top: 1em;
|
292
|
+
font-size:110%;
|
293
|
+
}
|
294
|
+
|
295
|
+
b.warning {
|
296
|
+
display: block;
|
297
|
+
margin: 0.5em 0;
|
298
|
+
}
|
299
|
+
|
300
|
+
td.comparison {
|
301
|
+
font-family: verdana,sans-serif;
|
302
|
+
font-size: 80%;
|
303
|
+
text-transform: lowercase;
|
304
|
+
text-align: center;
|
305
|
+
height: 3em;
|
306
|
+
border: 1px solid;
|
307
|
+
width:8%;
|
308
|
+
border-collapse:separate;
|
309
|
+
}
|
310
|
+
|
311
|
+
td.yes {
|
312
|
+
background-color: #00882D;
|
313
|
+
color: #ffffff;
|
314
|
+
}
|
315
|
+
|
316
|
+
td.almost {
|
317
|
+
color: #00882D;
|
318
|
+
border-width: 3px;
|
319
|
+
}
|
320
|
+
|
321
|
+
td.incomplete {
|
322
|
+
color: #00882D;
|
323
|
+
border-color: #00882D;
|
324
|
+
}
|
325
|
+
|
326
|
+
td.alternative {
|
327
|
+
color: #006699;
|
328
|
+
}
|
329
|
+
|
330
|
+
td.untestable {
|
331
|
+
color: #006699;
|
332
|
+
border: none;
|
333
|
+
}
|
334
|
+
|
335
|
+
td.minimal {
|
336
|
+
color: #CB000F;
|
337
|
+
}
|
338
|
+
|
339
|
+
td.incorrect {
|
340
|
+
color: #CB000F;
|
341
|
+
border-width: 2px;
|
342
|
+
}
|
343
|
+
|
344
|
+
td.buggy {
|
345
|
+
color: #CB000F;
|
346
|
+
border-color: #CB000F;
|
347
|
+
border-width: 3px;
|
348
|
+
}
|
349
|
+
|
350
|
+
td.no {
|
351
|
+
background-color: #CB000F;
|
352
|
+
color: #ffffff;
|
353
|
+
}
|
354
|
+
|
355
|
+
td.crash {
|
356
|
+
background-color: #535353;
|
357
|
+
font-weight: bold;
|
358
|
+
text-transform: uppercase;
|
359
|
+
color: #ffffff;
|
360
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title> ScriptDoc Reference</title><link rel="stylesheet" href="images/shared.css" type="text/css"></head><body><h1> ScriptDoc Reference</h1><div class="content"></div></body></html>
|
File without changes
|
@@ -0,0 +1,360 @@
|
|
1
|
+
body {
|
2
|
+
font-family: Verdana, sans-serif;
|
3
|
+
background-image: url('doc_background.gif');
|
4
|
+
background-repeat: repeat-x;
|
5
|
+
padding-left: 0px;
|
6
|
+
padding-right: 0px;
|
7
|
+
margin: 0px;
|
8
|
+
font-size: 70%;
|
9
|
+
}
|
10
|
+
|
11
|
+
a {
|
12
|
+
color: #5E83C1;
|
13
|
+
text-decoration: none;
|
14
|
+
}
|
15
|
+
|
16
|
+
a:visited {
|
17
|
+
color: #5E83C1;
|
18
|
+
text-decoration: none;
|
19
|
+
}
|
20
|
+
|
21
|
+
a:hover {
|
22
|
+
color: #B7D4F3;
|
23
|
+
text-decoration: underline;
|
24
|
+
}
|
25
|
+
|
26
|
+
img {
|
27
|
+
border:0px;
|
28
|
+
}
|
29
|
+
|
30
|
+
h1 {
|
31
|
+
width: 100%;
|
32
|
+
font-weight: bold;
|
33
|
+
font-size: 130%;
|
34
|
+
color: #FFFFFF;
|
35
|
+
background-color: #636D84;
|
36
|
+
padding: 10px;
|
37
|
+
padding-left: 20px;
|
38
|
+
margin-top: 0px;
|
39
|
+
}
|
40
|
+
|
41
|
+
h1 a { color: #FFFFFF; }
|
42
|
+
|
43
|
+
h1 a:visited { color: #FFFFFF; }
|
44
|
+
|
45
|
+
pre {
|
46
|
+
font-size: 120%;
|
47
|
+
color: #1C1D1F;
|
48
|
+
background: #f3f3f3;
|
49
|
+
padding: 1em 2em;
|
50
|
+
border-left: 3px solid #ccc;
|
51
|
+
margin-left: 15px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.content {
|
55
|
+
padding-left: 20px;
|
56
|
+
padding-right: 20px;
|
57
|
+
}
|
58
|
+
|
59
|
+
.content h2 {
|
60
|
+
font-weight: bold;
|
61
|
+
font-size: 120%;
|
62
|
+
color: #959DAF;
|
63
|
+
margin-bottom: .5em;
|
64
|
+
border-bottom: 1px dotted #aaaaaa;
|
65
|
+
padding-top: 6px;
|
66
|
+
}
|
67
|
+
|
68
|
+
/* content for the examples */
|
69
|
+
.content h3 {
|
70
|
+
font-weight: bold;
|
71
|
+
font-size: 120%;
|
72
|
+
color: #959DAF;
|
73
|
+
margin-bottom: .5em;
|
74
|
+
padding-left: 10px;
|
75
|
+
padding-top: 6px;
|
76
|
+
}
|
77
|
+
|
78
|
+
.content p {
|
79
|
+
margin-left: 15px;
|
80
|
+
}
|
81
|
+
|
82
|
+
.content dd {
|
83
|
+
margin-left: 15px;
|
84
|
+
padding-bottom: 5px;
|
85
|
+
}
|
86
|
+
|
87
|
+
.content dt {
|
88
|
+
margin-left: 10px;
|
89
|
+
padding-bottom: 5px;
|
90
|
+
}
|
91
|
+
|
92
|
+
.content table {
|
93
|
+
border: 1px solid #ECECEA;
|
94
|
+
}
|
95
|
+
|
96
|
+
.content th {
|
97
|
+
font-size: 60%;
|
98
|
+
font-weight: bold;
|
99
|
+
color: #FFFFFF;
|
100
|
+
background-color: #959DAF;
|
101
|
+
text-align: left;
|
102
|
+
padding-left: 10px;
|
103
|
+
padding-right: 10px;
|
104
|
+
padding-top: 6px;
|
105
|
+
padding-bottom: 6px;
|
106
|
+
}
|
107
|
+
|
108
|
+
.content td {
|
109
|
+
font-size: 60%;
|
110
|
+
padding-left: 10px;
|
111
|
+
padding-right: 10px;
|
112
|
+
padding-top: 6px;
|
113
|
+
padding-bottom: 6px;
|
114
|
+
}
|
115
|
+
|
116
|
+
/* Lists are top-level lists for each class, i.e. constructors, methods, etc. */
|
117
|
+
.list {
|
118
|
+
margin-left: 20px;
|
119
|
+
}
|
120
|
+
|
121
|
+
.list h3 {
|
122
|
+
font-weight: bold;
|
123
|
+
padding-top: 10px;
|
124
|
+
padding-left: 0px;
|
125
|
+
padding-bottom: 4px;
|
126
|
+
}
|
127
|
+
|
128
|
+
.list dd {
|
129
|
+
margin-left: 0px;
|
130
|
+
}
|
131
|
+
|
132
|
+
.list dt {
|
133
|
+
margin-left: 14px;
|
134
|
+
}
|
135
|
+
|
136
|
+
.details dt {
|
137
|
+
font-weight: bold;
|
138
|
+
font-size: 1.2em;
|
139
|
+
color: #000000;
|
140
|
+
padding-top: 12px;
|
141
|
+
padding-left: 0px;
|
142
|
+
padding-bottom:0px;
|
143
|
+
margin-bottom: 0px;
|
144
|
+
margin-left: 15px;
|
145
|
+
}
|
146
|
+
|
147
|
+
.details dd {
|
148
|
+
padding-left: 15px;
|
149
|
+
margin: 0px;
|
150
|
+
}
|
151
|
+
|
152
|
+
.details dd p
|
153
|
+
{
|
154
|
+
margin:0px;
|
155
|
+
padding:0px;
|
156
|
+
padding-top:10px;
|
157
|
+
}
|
158
|
+
|
159
|
+
/* from the example documentation */
|
160
|
+
.details h3 {
|
161
|
+
font-weight: bold;
|
162
|
+
font-size: 1.2em;
|
163
|
+
color: #000000;
|
164
|
+
padding-left: 0px;
|
165
|
+
margin-bottom: 0px;
|
166
|
+
margin-left: 14px;
|
167
|
+
padding-bottom: 0px;
|
168
|
+
background-image: none;
|
169
|
+
}
|
170
|
+
|
171
|
+
.parameters dt {
|
172
|
+
font-weight: bold;
|
173
|
+
font-size: 1em;
|
174
|
+
color: #000000;
|
175
|
+
margin-left: 15px;
|
176
|
+
}
|
177
|
+
|
178
|
+
.padded {
|
179
|
+
margin-top: 4px;
|
180
|
+
margin-left: 10px;
|
181
|
+
margin-bottom: 6px;
|
182
|
+
}
|
183
|
+
|
184
|
+
.parameter-table {
|
185
|
+
background-color: #F9F9F9;
|
186
|
+
}
|
187
|
+
|
188
|
+
.parameters dd {
|
189
|
+
margin-left: 15px;
|
190
|
+
margin-bottom: 10px;
|
191
|
+
}
|
192
|
+
|
193
|
+
.navigator {
|
194
|
+
padding-top: 10px;
|
195
|
+
font-weight: bold;
|
196
|
+
font-size: 80%;
|
197
|
+
padding-bottom: 10px;
|
198
|
+
}
|
199
|
+
|
200
|
+
.classDescription {
|
201
|
+
font-size: 1.4em;
|
202
|
+
padding-bottom:10px;
|
203
|
+
}
|
204
|
+
|
205
|
+
DIV#catlinks {
|
206
|
+
CLEAR: both; BORDER-RIGHT: #bbb 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #bbb 1px solid; PADDING-LEFT: 0px; FONT-SIZE: 0.9em; BACKGROUND: #eee; PADDING-BOTTOM: 0px; MARGIN: 40px 0px 0px; BORDER-LEFT: #bbb 1px solid; PADDING-TOP: 0px; BORDER-BOTTOM: #bbb 1px solid
|
207
|
+
}
|
208
|
+
|
209
|
+
DIV#catlinks P {
|
210
|
+
PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 2px; MARGIN: 0px; PADDING-TOP: 0px
|
211
|
+
}
|
212
|
+
|
213
|
+
.catlink-table {
|
214
|
+
WIDTH: 100%
|
215
|
+
}
|
216
|
+
|
217
|
+
.catlink-table TD {
|
218
|
+
PADDING-RIGHT: 8px; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; PADDING-TOP: 8px
|
219
|
+
}
|
220
|
+
|
221
|
+
.catlink-table TD H4 {
|
222
|
+
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bold; FONT-SIZE: 1em; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; BORDER-BOTTOM: #bbb 1px solid
|
223
|
+
}
|
224
|
+
|
225
|
+
.catlink-table UL {
|
226
|
+
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 5px 0px; PADDING-TOP: 0px
|
227
|
+
}
|
228
|
+
|
229
|
+
.catlink-table LI {
|
230
|
+
MARGIN: 0px 0px 0px 2em; LINE-HEIGHT: 1.45em
|
231
|
+
}
|
232
|
+
|
233
|
+
#updatedContent {
|
234
|
+
margin-left: 20px;
|
235
|
+
margin-right: 20px;
|
236
|
+
padding:10px;
|
237
|
+
border:1px solid #CCCCCC;
|
238
|
+
background-color:#FFFFE1;
|
239
|
+
}
|
240
|
+
|
241
|
+
ol { list-style-type: decimal; }
|
242
|
+
ol ol { list-style-type: lower-alpha; }
|
243
|
+
ol ol ol { list-style-type: lower-roman; }
|
244
|
+
ol ol ol ol { list-style-type: decimal; }
|
245
|
+
ol ol ol ol ol { list-style-type: lower-alpha; }
|
246
|
+
ol ol ol ol ol ol { list-style-type: lower-roman; }
|
247
|
+
ul { list-style-type: square; }
|
248
|
+
ul ul { list-style-type: disc; }
|
249
|
+
ul ul ul { list-style-type: circle; }
|
250
|
+
ul ul ul ul { list-style-type: square; }
|
251
|
+
ul ul ul ul ul { list-style-type: disc; }
|
252
|
+
ul ul ul ul ul ul { list-style-type: circle; }
|
253
|
+
|
254
|
+
|
255
|
+
/* COMPATIBILITY TABLES */
|
256
|
+
|
257
|
+
tr.compheader {
|
258
|
+
}
|
259
|
+
|
260
|
+
tr.compheader th {
|
261
|
+
font-weight: normal;
|
262
|
+
font-size: 80%;
|
263
|
+
text-align:center;
|
264
|
+
}
|
265
|
+
|
266
|
+
td.header {
|
267
|
+
background-color: #F2F3EF;
|
268
|
+
padding: 0.3em;
|
269
|
+
}
|
270
|
+
|
271
|
+
td.header h3,td.header h4 {
|
272
|
+
margin-top: 0.5em;
|
273
|
+
text-align: center;
|
274
|
+
}
|
275
|
+
|
276
|
+
td.declaration {
|
277
|
+
background-color: #F2F3EF;
|
278
|
+
text-align: left;
|
279
|
+
vertical-align: top;
|
280
|
+
padding-right: 10px;
|
281
|
+
color: #666666;
|
282
|
+
}
|
283
|
+
|
284
|
+
td.declaration a {
|
285
|
+
text-decoration: none;
|
286
|
+
}
|
287
|
+
|
288
|
+
div.name {
|
289
|
+
font-weight: bold;
|
290
|
+
margin-bottom: 2em;
|
291
|
+
margin-top: 1em;
|
292
|
+
font-size:110%;
|
293
|
+
}
|
294
|
+
|
295
|
+
b.warning {
|
296
|
+
display: block;
|
297
|
+
margin: 0.5em 0;
|
298
|
+
}
|
299
|
+
|
300
|
+
td.comparison {
|
301
|
+
font-family: verdana,sans-serif;
|
302
|
+
font-size: 80%;
|
303
|
+
text-transform: lowercase;
|
304
|
+
text-align: center;
|
305
|
+
height: 3em;
|
306
|
+
border: 1px solid;
|
307
|
+
width:8%;
|
308
|
+
border-collapse:separate;
|
309
|
+
}
|
310
|
+
|
311
|
+
td.yes {
|
312
|
+
background-color: #00882D;
|
313
|
+
color: #ffffff;
|
314
|
+
}
|
315
|
+
|
316
|
+
td.almost {
|
317
|
+
color: #00882D;
|
318
|
+
border-width: 3px;
|
319
|
+
}
|
320
|
+
|
321
|
+
td.incomplete {
|
322
|
+
color: #00882D;
|
323
|
+
border-color: #00882D;
|
324
|
+
}
|
325
|
+
|
326
|
+
td.alternative {
|
327
|
+
color: #006699;
|
328
|
+
}
|
329
|
+
|
330
|
+
td.untestable {
|
331
|
+
color: #006699;
|
332
|
+
border: none;
|
333
|
+
}
|
334
|
+
|
335
|
+
td.minimal {
|
336
|
+
color: #CB000F;
|
337
|
+
}
|
338
|
+
|
339
|
+
td.incorrect {
|
340
|
+
color: #CB000F;
|
341
|
+
border-width: 2px;
|
342
|
+
}
|
343
|
+
|
344
|
+
td.buggy {
|
345
|
+
color: #CB000F;
|
346
|
+
border-color: #CB000F;
|
347
|
+
border-width: 3px;
|
348
|
+
}
|
349
|
+
|
350
|
+
td.no {
|
351
|
+
background-color: #CB000F;
|
352
|
+
color: #ffffff;
|
353
|
+
}
|
354
|
+
|
355
|
+
td.crash {
|
356
|
+
background-color: #535353;
|
357
|
+
font-weight: bold;
|
358
|
+
text-transform: uppercase;
|
359
|
+
color: #ffffff;
|
360
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title> ScriptDoc Reference</title><link rel="stylesheet" href="images/shared.css" type="text/css"></head><body><h1> ScriptDoc Reference</h1><div class="content"></div></body></html>
|