resin 0.2.2 → 0.2.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/amber/css/amber-normalize.css +73 -73
- data/amber/css/amber-normalize.less +1 -1
- data/amber/css/amber.css +106 -106
- data/amber/css/helios.css +242 -0
- data/amber/images/hsplitter.png +0 -0
- data/amber/images/vsplitter.png +0 -0
- data/amber/js/Benchfib.deploy.js +116 -38
- data/amber/js/Benchfib.js +120 -42
- data/amber/js/Canvas.deploy.js +674 -403
- data/amber/js/Canvas.js +682 -411
- data/amber/js/Compiler-AST.deploy.js +1150 -0
- data/amber/js/Compiler-AST.js +1591 -0
- data/amber/js/Compiler-Core.deploy.js +1562 -0
- data/amber/js/Compiler-Core.js +1972 -0
- data/amber/js/Compiler-Exceptions.deploy.js +114 -0
- data/amber/js/Compiler-Exceptions.js +161 -0
- data/amber/js/Compiler-IR.deploy.js +2326 -0
- data/amber/js/Compiler-IR.js +3146 -0
- data/amber/js/Compiler-Inlining.deploy.js +1147 -0
- data/amber/js/Compiler-Inlining.js +1514 -0
- data/amber/js/Compiler-Semantic.deploy.js +1207 -0
- data/amber/js/Compiler-Semantic.js +1628 -0
- data/amber/js/Compiler-Tests.deploy.js +646 -60
- data/amber/js/Compiler-Tests.js +843 -82
- data/amber/js/Compiler.deploy.js +1097 -159
- data/amber/js/Compiler.js +1414 -161
- data/amber/js/Examples.deploy.js +31 -15
- data/amber/js/Examples.js +33 -17
- data/amber/js/Helios-Announcements.deploy.js +127 -0
- data/amber/js/Helios-Announcements.js +157 -0
- data/amber/js/Helios-Browser.deploy.js +1473 -0
- data/amber/js/Helios-Browser.js +1953 -0
- data/amber/js/Helios-Commands.deploy.js +403 -0
- data/amber/js/Helios-Commands.js +563 -0
- data/amber/js/Helios-Core.deploy.js +1070 -0
- data/amber/js/Helios-Core.js +1445 -0
- data/amber/js/Helios-Environments.deploy.js +132 -0
- data/amber/js/Helios-Environments.js +179 -0
- data/amber/js/Helios-Inspector.deploy.js +855 -0
- data/amber/js/Helios-Inspector.js +1155 -0
- data/amber/js/Helios-KeyBindings.deploy.js +753 -0
- data/amber/js/Helios-KeyBindings.js +1023 -0
- data/amber/js/Helios-Layout.deploy.js +383 -0
- data/amber/js/Helios-Layout.js +523 -0
- data/amber/js/Helios-Workspace.deploy.js +799 -0
- data/amber/js/Helios-Workspace.js +1074 -0
- data/amber/js/IDE.deploy.js +2541 -1490
- data/amber/js/IDE.js +2721 -1660
- data/amber/js/Importer-Exporter.deploy.js +671 -0
- data/amber/js/Importer-Exporter.js +816 -0
- data/amber/js/Kernel-Announcements.deploy.js +137 -20
- data/amber/js/Kernel-Announcements.js +176 -22
- data/amber/js/Kernel-Classes.deploy.js +555 -168
- data/amber/js/Kernel-Classes.js +662 -205
- data/amber/js/Kernel-Collections.deploy.js +1403 -618
- data/amber/js/Kernel-Collections.js +1545 -690
- data/amber/js/Kernel-Exceptions.deploy.js +109 -45
- data/amber/js/Kernel-Exceptions.js +123 -49
- data/amber/js/Kernel-Methods.deploy.js +196 -81
- data/amber/js/Kernel-Methods.js +214 -89
- data/amber/js/Kernel-Objects.deploy.js +1542 -1117
- data/amber/js/Kernel-Objects.js +1593 -1148
- data/amber/js/Kernel-Tests.deploy.js +1725 -772
- data/amber/js/Kernel-Tests.js +2301 -1123
- data/amber/js/Kernel-Transcript.deploy.js +23 -25
- data/amber/js/Kernel-Transcript.js +24 -26
- data/amber/js/SUnit.deploy.js +204 -131
- data/amber/js/SUnit.js +222 -139
- data/amber/js/Spaces.deploy.js +240 -0
- data/amber/js/Spaces.js +326 -0
- data/amber/js/amber.js +26 -7
- data/amber/js/boot.js +65 -47
- data/amber/js/init.js +1 -1
- data/amber/js/lib/CodeMirror/amber.css +21 -21
- data/amber/js/lib/CodeMirror/codemirror.css +119 -13
- data/amber/js/lib/CodeMirror/codemirror.js +2219 -1220
- data/amber/js/lib/CodeMirror/smalltalk.js +134 -129
- data/amber/js/lib/bootstrap/css/bootstrap.css +5837 -0
- data/amber/js/lib/bootstrap/css/bootstrap.min.css +841 -0
- data/amber/js/lib/bootstrap/img/glyphicons-halflings-white.png +0 -0
- data/amber/js/lib/bootstrap/img/glyphicons-halflings.png +0 -0
- data/amber/js/lib/bootstrap/js/bootstrap.js +2038 -0
- data/amber/js/lib/bootstrap/js/bootstrap.min.js +7 -0
- data/amber/js/lib/jQuery/jquery-1.8.2.min.js +2 -0
- data/amber/js/lib/jQuery/jquery-ui-1.8.24.custom.min.js +125 -0
- data/amber/st/Compiler-AST.st +505 -0
- data/amber/st/Compiler-Core.st +835 -0
- data/amber/st/Compiler-Exceptions.st +87 -0
- data/amber/st/Compiler-IR.st +1097 -0
- data/amber/st/Compiler-Inlining.st +650 -0
- data/amber/st/Compiler-Semantic.st +558 -0
- data/amber/st/Compiler-Tests.st +285 -381
- data/amber/st/Compiler.st +725 -2
- data/amber/st/Helios-Announcements.st +104 -0
- data/amber/st/Helios-Browser.st +708 -0
- data/amber/st/Helios-Commands.st +223 -0
- data/amber/st/Helios-Core.st +532 -0
- data/amber/st/Helios-Environments.st +98 -0
- data/amber/st/Helios-Inspector.st +367 -0
- data/amber/st/Helios-KeyBindings.st +337 -0
- data/amber/st/Helios-Layout.st +199 -0
- data/amber/st/Helios-Workspace.st +367 -0
- data/amber/st/IDE.st +75 -53
- data/amber/st/Importer-Exporter.st +386 -0
- data/amber/st/Kernel-Announcements.st +92 -0
- data/amber/st/Kernel-Classes.st +137 -15
- data/amber/st/Kernel-Collections.st +137 -47
- data/amber/st/Kernel-Exceptions.st +14 -0
- data/amber/st/Kernel-Methods.st +9 -1
- data/amber/st/Kernel-Objects.st +29 -5
- data/amber/st/Kernel-Tests.st +545 -199
- data/amber/st/SUnit.st +10 -0
- data/amber/st/Spaces.st +142 -0
- data/lib/resin/app.rb +1 -1
- metadata +86 -31
- data/amber/js/lib/jQuery/jquery-1.4.4.min.js +0 -167
- data/amber/js/lib/jQuery/jquery-1.6.4.min.js +0 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */
|
|
2
2
|
/* normalize.css co-opted for the amber browser */
|
|
3
|
-
#
|
|
3
|
+
#amber {
|
|
4
4
|
/* =============================================================================
|
|
5
5
|
HTML5 display definitions
|
|
6
6
|
========================================================================== */
|
|
@@ -219,138 +219,138 @@
|
|
|
219
219
|
*/
|
|
220
220
|
|
|
221
221
|
}
|
|
222
|
-
#
|
|
223
|
-
#
|
|
224
|
-
#
|
|
225
|
-
#
|
|
226
|
-
#
|
|
227
|
-
#
|
|
228
|
-
#
|
|
229
|
-
#
|
|
230
|
-
#
|
|
231
|
-
#
|
|
232
|
-
#
|
|
222
|
+
#amber article,
|
|
223
|
+
#amber aside,
|
|
224
|
+
#amber details,
|
|
225
|
+
#amber figcaption,
|
|
226
|
+
#amber figure,
|
|
227
|
+
#amber footer,
|
|
228
|
+
#amber header,
|
|
229
|
+
#amber hgroup,
|
|
230
|
+
#amber nav,
|
|
231
|
+
#amber section,
|
|
232
|
+
#amber summary {
|
|
233
233
|
display: block;
|
|
234
234
|
}
|
|
235
|
-
#
|
|
235
|
+
#amber audio, #amber canvas, #amber video {
|
|
236
236
|
display: inline-block;
|
|
237
237
|
*display: inline;
|
|
238
238
|
*zoom: 1;
|
|
239
239
|
}
|
|
240
|
-
#
|
|
240
|
+
#amber audio:not([controls]) {
|
|
241
241
|
display: none;
|
|
242
242
|
height: 0;
|
|
243
243
|
}
|
|
244
|
-
#
|
|
244
|
+
#amber [hidden] {
|
|
245
245
|
display: none;
|
|
246
246
|
}
|
|
247
|
-
#
|
|
248
|
-
#
|
|
249
|
-
#
|
|
250
|
-
#
|
|
247
|
+
#amber button,
|
|
248
|
+
#amber input,
|
|
249
|
+
#amber select,
|
|
250
|
+
#amber textarea {
|
|
251
251
|
font-family: sans-serif;
|
|
252
252
|
}
|
|
253
|
-
#
|
|
253
|
+
#amber a:focus {
|
|
254
254
|
outline: thin dotted;
|
|
255
255
|
}
|
|
256
|
-
#
|
|
256
|
+
#amber a:hover, #amber a:active {
|
|
257
257
|
outline: 0;
|
|
258
258
|
}
|
|
259
|
-
#
|
|
259
|
+
#amber h1 {
|
|
260
260
|
font-size: 2em;
|
|
261
261
|
margin: 0.67em 0;
|
|
262
262
|
}
|
|
263
|
-
#
|
|
263
|
+
#amber h2 {
|
|
264
264
|
font-size: 1.5em;
|
|
265
265
|
margin: 0.83em 0;
|
|
266
266
|
}
|
|
267
|
-
#
|
|
267
|
+
#amber h3 {
|
|
268
268
|
font-size: 1.17em;
|
|
269
269
|
margin: 1em 0;
|
|
270
270
|
}
|
|
271
|
-
#
|
|
271
|
+
#amber h4 {
|
|
272
272
|
font-size: 1em;
|
|
273
273
|
margin: 1.33em 0;
|
|
274
274
|
}
|
|
275
|
-
#
|
|
275
|
+
#amber h5 {
|
|
276
276
|
font-size: 0.83em;
|
|
277
277
|
margin: 1.67em 0;
|
|
278
278
|
}
|
|
279
|
-
#
|
|
279
|
+
#amber h6 {
|
|
280
280
|
font-size: 0.75em;
|
|
281
281
|
margin: 2.33em 0;
|
|
282
282
|
}
|
|
283
|
-
#
|
|
283
|
+
#amber abbr[title] {
|
|
284
284
|
border-bottom: 1px dotted;
|
|
285
285
|
}
|
|
286
|
-
#
|
|
286
|
+
#amber b, #amber strong {
|
|
287
287
|
font-weight: bold;
|
|
288
288
|
}
|
|
289
|
-
#
|
|
289
|
+
#amber blockquote {
|
|
290
290
|
margin: 1em 40px;
|
|
291
291
|
}
|
|
292
|
-
#
|
|
292
|
+
#amber dfn {
|
|
293
293
|
font-style: italic;
|
|
294
294
|
}
|
|
295
|
-
#
|
|
295
|
+
#amber mark {
|
|
296
296
|
background: #ff0;
|
|
297
297
|
color: #000;
|
|
298
298
|
}
|
|
299
|
-
#
|
|
299
|
+
#amber p, #amber pre {
|
|
300
300
|
margin: 1em 0;
|
|
301
301
|
}
|
|
302
|
-
#
|
|
303
|
-
#
|
|
304
|
-
#
|
|
305
|
-
#
|
|
302
|
+
#amber pre,
|
|
303
|
+
#amber code,
|
|
304
|
+
#amber kbd,
|
|
305
|
+
#amber samp {
|
|
306
306
|
font-family: monospace, serif;
|
|
307
307
|
_font-family: 'courier new', monospace;
|
|
308
308
|
font-size: 1em;
|
|
309
309
|
}
|
|
310
|
-
#
|
|
310
|
+
#amber pre {
|
|
311
311
|
white-space: pre;
|
|
312
312
|
white-space: pre-wrap;
|
|
313
313
|
word-wrap: break-word;
|
|
314
314
|
}
|
|
315
|
-
#
|
|
315
|
+
#amber q {
|
|
316
316
|
quotes: none;
|
|
317
317
|
}
|
|
318
|
-
#
|
|
318
|
+
#amber q:before, #amber q:after {
|
|
319
319
|
content: '';
|
|
320
320
|
content: none;
|
|
321
321
|
}
|
|
322
|
-
#
|
|
322
|
+
#amber small {
|
|
323
323
|
font-size: 75%;
|
|
324
324
|
}
|
|
325
|
-
#
|
|
325
|
+
#amber sub, #amber sup {
|
|
326
326
|
font-size: 75%;
|
|
327
327
|
line-height: 0;
|
|
328
328
|
position: relative;
|
|
329
329
|
vertical-align: baseline;
|
|
330
330
|
}
|
|
331
|
-
#
|
|
331
|
+
#amber sup {
|
|
332
332
|
top: -0.5em;
|
|
333
333
|
}
|
|
334
|
-
#
|
|
334
|
+
#amber sub {
|
|
335
335
|
bottom: -0.25em;
|
|
336
336
|
}
|
|
337
|
-
#
|
|
338
|
-
#
|
|
339
|
-
#
|
|
340
|
-
#
|
|
337
|
+
#amber dl,
|
|
338
|
+
#amber menu,
|
|
339
|
+
#amber ol,
|
|
340
|
+
#amber ul {
|
|
341
341
|
margin: 1em 0;
|
|
342
342
|
}
|
|
343
|
-
#
|
|
343
|
+
#amber dd {
|
|
344
344
|
margin: 0 0 0 40px;
|
|
345
345
|
}
|
|
346
|
-
#
|
|
346
|
+
#amber menu, #amber ol, #amber ul {
|
|
347
347
|
padding: 0 0 0 40px;
|
|
348
348
|
}
|
|
349
|
-
#
|
|
349
|
+
#amber nav ul, #amber nav ol {
|
|
350
350
|
list-style: none;
|
|
351
351
|
list-style-image: none;
|
|
352
352
|
}
|
|
353
|
-
#
|
|
353
|
+
#amber img {
|
|
354
354
|
border: 0;
|
|
355
355
|
/* 1 */
|
|
356
356
|
|
|
@@ -358,21 +358,21 @@
|
|
|
358
358
|
/* 2 */
|
|
359
359
|
|
|
360
360
|
}
|
|
361
|
-
#
|
|
361
|
+
#amber svg:not(:root) {
|
|
362
362
|
overflow: hidden;
|
|
363
363
|
}
|
|
364
|
-
#
|
|
364
|
+
#amber figure {
|
|
365
365
|
margin: 0;
|
|
366
366
|
}
|
|
367
|
-
#
|
|
367
|
+
#amber form {
|
|
368
368
|
margin: 0;
|
|
369
369
|
}
|
|
370
|
-
#
|
|
370
|
+
#amber fieldset {
|
|
371
371
|
border: 1px solid #c0c0c0;
|
|
372
372
|
margin: 0 2px;
|
|
373
373
|
padding: 0.35em 0.625em 0.75em;
|
|
374
374
|
}
|
|
375
|
-
#
|
|
375
|
+
#amber legend {
|
|
376
376
|
border: 0;
|
|
377
377
|
/* 1 */
|
|
378
378
|
|
|
@@ -384,10 +384,10 @@
|
|
|
384
384
|
/* 3 */
|
|
385
385
|
|
|
386
386
|
}
|
|
387
|
-
#
|
|
388
|
-
#
|
|
389
|
-
#
|
|
390
|
-
#
|
|
387
|
+
#amber button,
|
|
388
|
+
#amber input,
|
|
389
|
+
#amber select,
|
|
390
|
+
#amber textarea {
|
|
391
391
|
font-size: 100%;
|
|
392
392
|
/* 1 */
|
|
393
393
|
|
|
@@ -401,15 +401,15 @@
|
|
|
401
401
|
/* 3 */
|
|
402
402
|
|
|
403
403
|
}
|
|
404
|
-
#
|
|
404
|
+
#amber button, #amber input {
|
|
405
405
|
line-height: normal;
|
|
406
406
|
/* 1 */
|
|
407
407
|
|
|
408
408
|
}
|
|
409
|
-
#
|
|
410
|
-
#
|
|
411
|
-
#
|
|
412
|
-
#
|
|
409
|
+
#amber button,
|
|
410
|
+
#amber input[type="button"],
|
|
411
|
+
#amber input[type="reset"],
|
|
412
|
+
#amber input[type="submit"] {
|
|
413
413
|
cursor: pointer;
|
|
414
414
|
/* 1 */
|
|
415
415
|
|
|
@@ -420,10 +420,10 @@
|
|
|
420
420
|
/* 3 */
|
|
421
421
|
|
|
422
422
|
}
|
|
423
|
-
#
|
|
423
|
+
#amber button[disabled], #amber input[disabled] {
|
|
424
424
|
cursor: default;
|
|
425
425
|
}
|
|
426
|
-
#
|
|
426
|
+
#amber input[type="checkbox"], #amber input[type="radio"] {
|
|
427
427
|
box-sizing: border-box;
|
|
428
428
|
/* 1 */
|
|
429
429
|
|
|
@@ -437,7 +437,7 @@
|
|
|
437
437
|
/* 3 */
|
|
438
438
|
|
|
439
439
|
}
|
|
440
|
-
#
|
|
440
|
+
#amber input[type="search"] {
|
|
441
441
|
-webkit-appearance: textfield;
|
|
442
442
|
/* 1 */
|
|
443
443
|
|
|
@@ -447,14 +447,14 @@
|
|
|
447
447
|
|
|
448
448
|
box-sizing: content-box;
|
|
449
449
|
}
|
|
450
|
-
#
|
|
450
|
+
#amber input[type="search"]::-webkit-search-decoration, #amber input[type="search"]::-webkit-search-cancel-button {
|
|
451
451
|
-webkit-appearance: none;
|
|
452
452
|
}
|
|
453
|
-
#
|
|
453
|
+
#amber button::-moz-focus-inner, #amber input::-moz-focus-inner {
|
|
454
454
|
border: 0;
|
|
455
455
|
padding: 0;
|
|
456
456
|
}
|
|
457
|
-
#
|
|
457
|
+
#amber textarea {
|
|
458
458
|
overflow: auto;
|
|
459
459
|
/* 1 */
|
|
460
460
|
|
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
/* 2 */
|
|
463
463
|
|
|
464
464
|
}
|
|
465
|
-
#
|
|
465
|
+
#amber table {
|
|
466
466
|
border-collapse: collapse;
|
|
467
467
|
border-spacing: 0;
|
|
468
468
|
}
|
data/amber/css/amber.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
body.
|
|
1
|
+
body.amberBody {
|
|
2
2
|
margin-bottom: 350px;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
#
|
|
5
|
+
#amberTabs, #amber .amber_tabs {
|
|
6
6
|
margin: 0;
|
|
7
7
|
padding: 0;
|
|
8
8
|
background: url("../images/sprite.amber.png") #DBD9C9 0 -27px;
|
|
@@ -12,75 +12,75 @@ body.jtalkBody {
|
|
|
12
12
|
font-weight: bold;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
#
|
|
15
|
+
#amberTabs li, #amber .amber_tabs li {
|
|
16
16
|
padding: 0 1px;
|
|
17
17
|
cursor: pointer;
|
|
18
18
|
color: #565656;
|
|
19
19
|
max-width: 200px;
|
|
20
20
|
float:left;
|
|
21
21
|
}
|
|
22
|
-
#
|
|
22
|
+
#amber li {
|
|
23
23
|
line-height: 14px;
|
|
24
24
|
|
|
25
25
|
}
|
|
26
|
-
#
|
|
26
|
+
#amber .ltab, #amber .rtab, #amber .mtab {
|
|
27
27
|
height: 22px;
|
|
28
28
|
float: left;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
#
|
|
31
|
+
#amber .ltab, #amber .rtab {
|
|
32
32
|
width: 8px;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
#
|
|
35
|
+
#amber .rtab {
|
|
36
36
|
margin-right: 1px;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
#
|
|
39
|
+
#amber .mtab {
|
|
40
40
|
line-height: 20px;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
#
|
|
44
|
-
#
|
|
43
|
+
#amberTabs li:hover .ltab,
|
|
44
|
+
#amber .amber_tabs li:hover .ltab {
|
|
45
45
|
background: url("../images/sprite.amber.png") -16px -96px;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
#
|
|
49
|
-
#
|
|
48
|
+
#amberTabs li:hover .mtab,
|
|
49
|
+
#amber .amber_tabs li:hover .mtab {
|
|
50
50
|
background: url("../images/sprite.amber.png") 0 -73px;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
#
|
|
54
|
-
#
|
|
53
|
+
#amberTabs li:hover .rtab,
|
|
54
|
+
#amber .amber_tabs li:hover .rtab {
|
|
55
55
|
background: url("../images/sprite.amber.png") -24px -96px;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
#
|
|
59
|
-
#
|
|
58
|
+
#amberTabs li.selected,
|
|
59
|
+
#amber .amber_tabs li.selected {
|
|
60
60
|
color: #111;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
#
|
|
64
|
-
#
|
|
63
|
+
#amberTabs li.selected .ltab,
|
|
64
|
+
#amber .amber_tabs li.selected .ltab {
|
|
65
65
|
background: url("../images/sprite.amber.png") 0px -96px;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
#
|
|
69
|
-
#
|
|
68
|
+
#amberTabs li.selected .mtab,
|
|
69
|
+
#amber .amber_tabs li.selected .mtab {
|
|
70
70
|
background: url("../images/sprite.amber.png") 0 -50px;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
-
#
|
|
74
|
-
#
|
|
73
|
+
#amberTabs li.selected .rtab,
|
|
74
|
+
#amber .amber_tabs li.selected .rtab {
|
|
75
75
|
background: url("../images/sprite.amber.png") -8px -96px;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
#
|
|
78
|
+
#amberTabs li .close {
|
|
79
79
|
margin-right: 5px;
|
|
80
80
|
color: #aaa;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
#
|
|
83
|
+
#amber {
|
|
84
84
|
position: fixed;
|
|
85
85
|
bottom: 0;
|
|
86
86
|
left: 0;
|
|
@@ -89,12 +89,12 @@ body.jtalkBody {
|
|
|
89
89
|
z-index: 1000;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
#
|
|
92
|
+
#amber, #amber button, #amber input, #amber select {
|
|
93
93
|
font-family: Lucida Grande, Tahoma, sans-serif;
|
|
94
94
|
font-size: 11px;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
#
|
|
97
|
+
#amber #logo {
|
|
98
98
|
position: absolute;
|
|
99
99
|
top: 3px;
|
|
100
100
|
left: 8px;
|
|
@@ -103,18 +103,18 @@ body.jtalkBody {
|
|
|
103
103
|
background: url("../images/tinylogo.amber.png") top left no-repeat;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
#
|
|
106
|
+
#amber #amber_toolbar {
|
|
107
107
|
height: 27px;
|
|
108
108
|
background: url("../images/sprite.amber.png") 0 0;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
#
|
|
111
|
+
#amber #amber_toolbar input {
|
|
112
112
|
margin-left: 50px;
|
|
113
113
|
width: 250px;
|
|
114
114
|
margin-top: 5px;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
#
|
|
117
|
+
#amber #amber_toolbar #amber_close {
|
|
118
118
|
position: absolute;
|
|
119
119
|
right: 4px;
|
|
120
120
|
top: 6px;
|
|
@@ -124,12 +124,12 @@ body.jtalkBody {
|
|
|
124
124
|
cursor: pointer;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
#
|
|
127
|
+
#amber #amber_toolbar #amber_close:hover {
|
|
128
128
|
background: url('../images/offHover.amber.png');
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
|
|
132
|
-
#
|
|
132
|
+
#amber .ui-resizable-handle {
|
|
133
133
|
background-color: transparent;
|
|
134
134
|
top: 0;
|
|
135
135
|
cursor: row-resize;
|
|
@@ -140,7 +140,7 @@ body.jtalkBody {
|
|
|
140
140
|
width: auto !important;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
.
|
|
143
|
+
.amberTool {
|
|
144
144
|
width: 100%;
|
|
145
145
|
color: #333;
|
|
146
146
|
line-height: 1.3em;
|
|
@@ -154,7 +154,7 @@ body.jtalkBody {
|
|
|
154
154
|
background: white;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
.
|
|
157
|
+
.amberTool .amber_box {
|
|
158
158
|
width: 100%;
|
|
159
159
|
margin: 0;
|
|
160
160
|
position: absolute;
|
|
@@ -162,7 +162,7 @@ body.jtalkBody {
|
|
|
162
162
|
bottom: 27px;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
.
|
|
165
|
+
.amberTool .amber_buttons {
|
|
166
166
|
position: absolute;
|
|
167
167
|
bottom: 0;
|
|
168
168
|
left: 0;
|
|
@@ -172,16 +172,16 @@ body.jtalkBody {
|
|
|
172
172
|
background: url("../images/sprite.amber.png") 0 0 repeat;
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
.
|
|
175
|
+
.amberTool .amber_buttons .right {
|
|
176
176
|
float: right;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
.
|
|
179
|
+
.amberTool .important {
|
|
180
180
|
font-weight: bold;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
183
|
|
|
184
|
-
.
|
|
184
|
+
.amberTool button {
|
|
185
185
|
border: 1px solid transparent;
|
|
186
186
|
background: transparent;
|
|
187
187
|
padding: 2px 4px;
|
|
@@ -189,14 +189,14 @@ body.jtalkBody {
|
|
|
189
189
|
cursor: pointer;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
-
.
|
|
192
|
+
.amberTool button:hover {
|
|
193
193
|
border-top: 1px solid #fff;
|
|
194
194
|
border-left: 1px solid #fff;
|
|
195
195
|
border-right: 1px solid #bbb;
|
|
196
196
|
border-bottom: 1px solid #bbb;
|
|
197
197
|
}
|
|
198
198
|
|
|
199
|
-
.
|
|
199
|
+
.amberTool button:active {
|
|
200
200
|
border-top: 1px solid #bbb;
|
|
201
201
|
border-left: 1px solid #bbb;
|
|
202
202
|
border-right: 1px solid #fff;
|
|
@@ -204,7 +204,7 @@ body.jtalkBody {
|
|
|
204
204
|
background: #ddd;
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
-
.
|
|
207
|
+
.amberTool select, #amber input {
|
|
208
208
|
border-top: 1px solid #bbb;
|
|
209
209
|
border-left: 1px solid #bbb;
|
|
210
210
|
border-right: 1px solid #fff;
|
|
@@ -221,7 +221,7 @@ body.jtalkBody {
|
|
|
221
221
|
outline: none;
|
|
222
222
|
vertical-align:baseline;
|
|
223
223
|
}
|
|
224
|
-
.
|
|
224
|
+
.amberTool select {
|
|
225
225
|
height:18px;
|
|
226
226
|
width: auto;
|
|
227
227
|
}
|
|
@@ -229,17 +229,17 @@ body.jtalkBody {
|
|
|
229
229
|
|
|
230
230
|
|
|
231
231
|
|
|
232
|
-
.
|
|
232
|
+
.amberTool li {
|
|
233
233
|
margin: 0;
|
|
234
234
|
padding: 0;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
.
|
|
237
|
+
.amberTool .source {
|
|
238
238
|
height: 100%;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
-
.
|
|
242
|
-
.
|
|
241
|
+
.amberTool textarea,
|
|
242
|
+
.amberTool input {
|
|
243
243
|
border: 0 none;
|
|
244
244
|
font-family: "DejaVu Sans", Helvetica, sans;
|
|
245
245
|
line-height: 1.3em;
|
|
@@ -248,7 +248,7 @@ body.jtalkBody {
|
|
|
248
248
|
padding: 0;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
.
|
|
251
|
+
.amberTool .CodeMirror {
|
|
252
252
|
border: 0 none;
|
|
253
253
|
font-family: "DejaVu Sans", Helvetica, sans;
|
|
254
254
|
font-size: 11px;
|
|
@@ -257,32 +257,32 @@ body.jtalkBody {
|
|
|
257
257
|
background: white;
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
-
.
|
|
260
|
+
.amberTool .CodeMirror-scroll {
|
|
261
261
|
height: 100%;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
.
|
|
264
|
+
.amberTool .CodeMirror-scroll pre {
|
|
265
265
|
font-family: "DejaVu Sans", Helvetica, sans;
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
-
.
|
|
268
|
+
.amberTool .amber_clear {
|
|
269
269
|
clear: both;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
-
.
|
|
273
|
-
.
|
|
272
|
+
.amberTool .amber_transcript,
|
|
273
|
+
.amberTool .amber_workspace {
|
|
274
274
|
width: 100%;
|
|
275
275
|
height: 100%;
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
-
.
|
|
278
|
+
.amberTool .amber_packagesButtons {
|
|
279
279
|
position: absolute;
|
|
280
280
|
top: 149px;
|
|
281
281
|
left: 0;
|
|
282
282
|
z-index: 1;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
.
|
|
285
|
+
.amberTool .amber_column {
|
|
286
286
|
width: 25%;
|
|
287
287
|
padding: 0;
|
|
288
288
|
margin: 0;
|
|
@@ -297,28 +297,28 @@ body.jtalkBody {
|
|
|
297
297
|
top: 0;
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
-
.
|
|
300
|
+
.amberTool .amber_column.classes {
|
|
301
301
|
left: 25%
|
|
302
302
|
}
|
|
303
303
|
|
|
304
|
-
.
|
|
304
|
+
.amberTool .amber_column.classes ul {
|
|
305
305
|
margin-left: 0;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
-
.
|
|
308
|
+
.amberTool .amber_column.classes ul li {
|
|
309
309
|
padding-left: 10px;
|
|
310
310
|
margin-left: 0;
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
.
|
|
313
|
+
.amberTool .amber_column.protocols {
|
|
314
314
|
left: 50%
|
|
315
315
|
}
|
|
316
316
|
|
|
317
|
-
.
|
|
317
|
+
.amberTool .amber_column.methods {
|
|
318
318
|
left: 75%
|
|
319
319
|
}
|
|
320
320
|
|
|
321
|
-
.
|
|
321
|
+
.amberTool .amber_column li {
|
|
322
322
|
list-style-type: none;
|
|
323
323
|
padding-left: 5px;
|
|
324
324
|
cursor: pointer;
|
|
@@ -326,26 +326,26 @@ body.jtalkBody {
|
|
|
326
326
|
font-weight: bold;
|
|
327
327
|
}
|
|
328
328
|
|
|
329
|
-
.
|
|
329
|
+
.amberTool .amber_column li.selected {
|
|
330
330
|
background: #c5c5c5;
|
|
331
331
|
color: #222;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
|
-
.
|
|
334
|
+
.amberTool .amber_column li:hover {
|
|
335
335
|
background: #08c;
|
|
336
336
|
color: white;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
|
-
#
|
|
339
|
+
#amber .amberTool .amber_tabs {
|
|
340
340
|
top: 150px;
|
|
341
341
|
position: absolute;
|
|
342
342
|
}
|
|
343
343
|
|
|
344
|
-
#
|
|
344
|
+
#amber .amberTool .amber_tabs.amber_browser {
|
|
345
345
|
padding-left: 25%;
|
|
346
346
|
}
|
|
347
347
|
|
|
348
|
-
.
|
|
348
|
+
.amberTool .amber_sourceCode {
|
|
349
349
|
position: absolute;
|
|
350
350
|
top: 172px;
|
|
351
351
|
bottom: 0;
|
|
@@ -353,14 +353,14 @@ body.jtalkBody {
|
|
|
353
353
|
right: 0;
|
|
354
354
|
}
|
|
355
355
|
|
|
356
|
-
.
|
|
356
|
+
.amberTool .amber_sourceCode textarea.source {
|
|
357
357
|
width: 100%;
|
|
358
358
|
height: 100%;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
361
|
/* Debugger & inspector */
|
|
362
362
|
|
|
363
|
-
.
|
|
363
|
+
.amberTool .amber_box .label {
|
|
364
364
|
width: 100%;
|
|
365
365
|
font-weight: bold;
|
|
366
366
|
text-align: center;
|
|
@@ -372,21 +372,21 @@ body.jtalkBody {
|
|
|
372
372
|
height: 27px;
|
|
373
373
|
}
|
|
374
374
|
|
|
375
|
-
.
|
|
375
|
+
.amberTool .amber_box .amber_column.debugger {
|
|
376
376
|
top: 178px;
|
|
377
377
|
}
|
|
378
378
|
|
|
379
|
-
.
|
|
379
|
+
.amberTool .amber_box .amber_column.debugger.contexts {
|
|
380
380
|
top: 27px;
|
|
381
381
|
width: 100%;
|
|
382
382
|
}
|
|
383
383
|
|
|
384
|
-
.
|
|
384
|
+
.amberTool .amber_sourceCode.debugger {
|
|
385
385
|
width: 60%;
|
|
386
386
|
top: 178px;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
|
-
.
|
|
389
|
+
.amberTool .amber_box .amber_column.debugger.variables {
|
|
390
390
|
width: 10%;
|
|
391
391
|
left: 60%;
|
|
392
392
|
bottom: 0;
|
|
@@ -394,7 +394,7 @@ body.jtalkBody {
|
|
|
394
394
|
height: auto;
|
|
395
395
|
}
|
|
396
396
|
|
|
397
|
-
.
|
|
397
|
+
.amberTool .amber_box .amber_column.debugger.inspector {
|
|
398
398
|
width: 30%;
|
|
399
399
|
left: 70%;
|
|
400
400
|
bottom: 0;
|
|
@@ -402,17 +402,17 @@ body.jtalkBody {
|
|
|
402
402
|
height: auto;
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
.
|
|
405
|
+
.amberTool .amber_button.debugger.inspect {
|
|
406
406
|
position: absolute;
|
|
407
407
|
left: 60%;
|
|
408
408
|
}
|
|
409
409
|
|
|
410
|
-
.
|
|
410
|
+
.amberTool .amber_column.value {
|
|
411
411
|
left: 25%;
|
|
412
412
|
width: 75%;
|
|
413
413
|
}
|
|
414
414
|
|
|
415
|
-
.
|
|
415
|
+
.amberTool .amber_buttons.inspector {
|
|
416
416
|
position: absolute;
|
|
417
417
|
top: 150px;
|
|
418
418
|
}
|
|
@@ -420,74 +420,74 @@ body.jtalkBody {
|
|
|
420
420
|
|
|
421
421
|
/* ReferencesBrowser */
|
|
422
422
|
|
|
423
|
-
.
|
|
423
|
+
.amberTool .amber_box .implementors {
|
|
424
424
|
width: 100%
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
.
|
|
428
|
-
.
|
|
429
|
-
.
|
|
430
|
-
.
|
|
427
|
+
.amberTool .amber_box .amber_column.implementors,
|
|
428
|
+
.amberTool .amber_box .amber_column.senders,
|
|
429
|
+
.amberTool .amber_box .amber_column.referenced_classes,
|
|
430
|
+
.amberTool .amber_box .amber_column.matches {
|
|
431
431
|
top: 20px;
|
|
432
432
|
height: auto;
|
|
433
433
|
bottom: 0;
|
|
434
434
|
width: 25%;
|
|
435
435
|
}
|
|
436
436
|
|
|
437
|
-
.
|
|
437
|
+
.amberTool .amber_box .amber_column.senders {
|
|
438
438
|
left: 25%
|
|
439
439
|
}
|
|
440
440
|
|
|
441
|
-
.
|
|
441
|
+
.amberTool .amber_box .amber_column.referenced_classes {
|
|
442
442
|
left: 50%
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
.
|
|
445
|
+
.amberTool .amber_box .amber_column.matches {
|
|
446
446
|
left: 75%
|
|
447
447
|
}
|
|
448
448
|
|
|
449
|
-
.
|
|
450
|
-
.
|
|
451
|
-
.
|
|
452
|
-
.
|
|
449
|
+
.amberTool .amber_box .amber_column.implementors .column_label,
|
|
450
|
+
.amberTool .amber_box .amber_column.senders .column_label,
|
|
451
|
+
.amberTool .amber_box .amber_column.referenced_classes .column_label,
|
|
452
|
+
.amberTool .amber_box .amber_column.matches .column_label {
|
|
453
453
|
background: #dbdbdb
|
|
454
454
|
}
|
|
455
455
|
|
|
456
|
-
.
|
|
457
|
-
.
|
|
458
|
-
.
|
|
459
|
-
.
|
|
456
|
+
.amberTool .amber_box .amber_column.implementors .column_label:hover,
|
|
457
|
+
.amberTool .amber_box .amber_column.senders .column_label:hover,
|
|
458
|
+
.amberTool .amber_box .amber_column.referenced_classes .column_label:hover,
|
|
459
|
+
.amberTool .amber_box .amber_column.matches .column_label:hover {
|
|
460
460
|
font-weight: bold;
|
|
461
461
|
color: #000;
|
|
462
462
|
cursor: default
|
|
463
463
|
}
|
|
464
464
|
|
|
465
465
|
|
|
466
|
-
.
|
|
466
|
+
.amberTool .classes .commented {
|
|
467
467
|
color: #33337F;
|
|
468
468
|
}
|
|
469
469
|
|
|
470
470
|
|
|
471
471
|
/* SUnit TestRunner */
|
|
472
472
|
|
|
473
|
-
.
|
|
474
|
-
.
|
|
473
|
+
.amberTool .amber_column.sunit.packages,
|
|
474
|
+
.amberTool .amber_column.sunit.classes {
|
|
475
475
|
height: 100%
|
|
476
476
|
}
|
|
477
477
|
|
|
478
|
-
.
|
|
479
|
-
.
|
|
478
|
+
.amberTool .amber_column.sunit.classes li.all,
|
|
479
|
+
.amberTool .amber_column.sunit.categories li.all {
|
|
480
480
|
background: #e3e3e3;
|
|
481
481
|
font-weight: bold
|
|
482
482
|
}
|
|
483
483
|
|
|
484
|
-
.
|
|
485
|
-
.
|
|
484
|
+
.amberTool .amber_column.sunit.classes li.all:hover ,
|
|
485
|
+
.amberTool .amber_column.sunit.categories li.all:hover {
|
|
486
486
|
background: #0088CC;
|
|
487
487
|
font-weight: bold
|
|
488
488
|
}
|
|
489
489
|
|
|
490
|
-
.
|
|
490
|
+
.amberTool .sunit.status {
|
|
491
491
|
position: absolute;
|
|
492
492
|
left: 50%;
|
|
493
493
|
width: 50%;
|
|
@@ -497,21 +497,21 @@ body.jtalkBody {
|
|
|
497
497
|
}
|
|
498
498
|
|
|
499
499
|
|
|
500
|
-
.
|
|
500
|
+
.amberTool .sunit.status.success {
|
|
501
501
|
background: #43d443;
|
|
502
502
|
}
|
|
503
503
|
|
|
504
504
|
|
|
505
|
-
.
|
|
505
|
+
.amberTool .sunit.status.failure {
|
|
506
506
|
background: #ecd443;
|
|
507
507
|
}
|
|
508
508
|
|
|
509
509
|
|
|
510
|
-
.
|
|
510
|
+
.amberTool .sunit.status.error {
|
|
511
511
|
background: #e56f3b;
|
|
512
512
|
}
|
|
513
513
|
|
|
514
|
-
.
|
|
514
|
+
.amberTool .progress_bar {
|
|
515
515
|
position: absolute;
|
|
516
516
|
left: 50%;
|
|
517
517
|
width: 50%;
|
|
@@ -521,12 +521,12 @@ body.jtalkBody {
|
|
|
521
521
|
min-height: 20px
|
|
522
522
|
}
|
|
523
523
|
|
|
524
|
-
.
|
|
524
|
+
.amberTool .progress_bar div {
|
|
525
525
|
background: #0088CC;
|
|
526
526
|
min-height: 20px;
|
|
527
527
|
}
|
|
528
528
|
|
|
529
|
-
.
|
|
529
|
+
.amberTool .amber_column.results.sunit {
|
|
530
530
|
left: 50%;
|
|
531
531
|
height: auto;
|
|
532
532
|
width: 50%;
|
|
@@ -534,11 +534,11 @@ body.jtalkBody {
|
|
|
534
534
|
bottom: 0;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
-
.
|
|
537
|
+
.amberTool .amber_column.sunit.results .errors {
|
|
538
538
|
color: red;
|
|
539
539
|
}
|
|
540
540
|
|
|
541
|
-
/*.
|
|
541
|
+
/*.amberTool .amber_column.sunit.results ul {padding: 0; margin: 0}*/
|
|
542
542
|
|
|
543
543
|
/* Code mirror overrides */
|
|
544
544
|
.CodeMirror pre {
|