@qooxdoo/framework 7.0.0-beta.9 → 7.0.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.
- package/Manifest.json +2 -2
- package/lib/compiler/compile-info.json +43 -43
- package/lib/compiler/index.js +203 -198
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/theme/custom/css/custom.css.map +1 -1
- package/npm-shrinkwrap.json +4 -4
- package/package.json +2 -2
- package/source/class/qx/Mixin.js +6 -0
- package/source/class/qx/test/Mixin.js +32 -1
- package/source/class/qx/tool/compiler/targets/meta/Uglify.js +4 -25
- package/source/class/qx/ui/table/model/Simple.js +11 -3
- package/source/class/qx/ui/table/pane/Pane.js +3 -1
package/lib/compiler/index.js
CHANGED
|
@@ -96,7 +96,7 @@ if (typeof global !== "undefined") {
|
|
|
96
96
|
"qx.application": "qx.tool.cli.Application",
|
|
97
97
|
"qx.revision": "",
|
|
98
98
|
"qx.theme": "qx.theme.Simple",
|
|
99
|
-
"qx.version": "7.0.0
|
|
99
|
+
"qx.version": "7.0.0",
|
|
100
100
|
"qx.compiler.targetType": "source",
|
|
101
101
|
"qx.compiler.outputDir": "compiled/node/build/",
|
|
102
102
|
"true": true,
|
|
@@ -128,7 +128,7 @@ if (typeof global !== "undefined") {
|
|
|
128
128
|
"qx.promise.warnings": true,
|
|
129
129
|
"qx.promise.longStackTraces": true,
|
|
130
130
|
"qx.compiler": true,
|
|
131
|
-
"qx.compiler.version": "7.0.0
|
|
131
|
+
"qx.compiler.version": "7.0.0",
|
|
132
132
|
"qx.headless": true,
|
|
133
133
|
"qx.compiler.applicationType": "node",
|
|
134
134
|
"qx.compiler.applicationName": "compiler"
|
|
@@ -5431,7 +5431,13 @@ try {
|
|
|
5431
5431
|
|
|
5432
5432
|
|
|
5433
5433
|
if (!fn && mixedInAt.prototype[methodName]) {
|
|
5434
|
-
fn = mixedInAt.prototype[methodName].base;
|
|
5434
|
+
fn = mixedInAt.prototype[methodName].base; // if fn.self is set fn is an overloaded mixin method from
|
|
5435
|
+
// another mixin. In this case fn.base contains the original
|
|
5436
|
+
// class method.
|
|
5437
|
+
|
|
5438
|
+
if (fn && fn.self) {
|
|
5439
|
+
fn = fn.base;
|
|
5440
|
+
}
|
|
5435
5441
|
} // Try looking in the superclass
|
|
5436
5442
|
|
|
5437
5443
|
|
|
@@ -36431,7 +36437,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
36431
36437
|
* @return {String}
|
|
36432
36438
|
*/
|
|
36433
36439
|
getCompilerVersion() {
|
|
36434
|
-
return "7.0.0
|
|
36440
|
+
return "7.0.0";
|
|
36435
36441
|
},
|
|
36436
36442
|
|
|
36437
36443
|
/**
|
|
@@ -55302,7 +55308,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55302
55308
|
"require": true
|
|
55303
55309
|
},
|
|
55304
55310
|
"qx.tool.utils.Utils": {},
|
|
55305
|
-
"qx.tool.utils.files.Utils": {},
|
|
55306
55311
|
"qx.tool.compiler.Console": {}
|
|
55307
55312
|
}
|
|
55308
55313
|
};
|
|
@@ -55405,11 +55410,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55405
55410
|
});
|
|
55406
55411
|
return ss.toString();
|
|
55407
55412
|
})();
|
|
55408
|
-
await qx.tool.utils.files.Utils.safeUnlink(outJsFilename + ".unminified");
|
|
55409
|
-
await qx.tool.utils.files.Utils.safeRename(outJsFilename, outJsFilename + ".unminified");
|
|
55410
55413
|
let inSourceMap = await this.__P_48_0.getSourceMap();
|
|
55411
|
-
await qx.tool.utils.files.Utils.safeUnlink(outJsFilename + ".unminified.map");
|
|
55412
|
-
await qx.tool.utils.files.Utils.safeRename(outJsFilename + ".map", outJsFilename + ".unminified.map");
|
|
55413
55414
|
this.fireDataEvent("minifyingApplication", {
|
|
55414
55415
|
application: application,
|
|
55415
55416
|
filename: baseJsFilename
|
|
@@ -55433,15 +55434,19 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55433
55434
|
await fs.writeFileAsync(outJsFilename, result.code, {
|
|
55434
55435
|
encoding: "utf8"
|
|
55435
55436
|
});
|
|
55436
|
-
|
|
55437
|
-
if (!this._appMeta.getTarget().isSaveUnminified()) {
|
|
55438
|
-
await qx.tool.utils.files.Utils.safeUnlink(outJsFilename + ".unminified");
|
|
55439
|
-
await qx.tool.utils.files.Utils.safeUnlink(outJsFilename + ".unminified.map");
|
|
55440
|
-
}
|
|
55441
|
-
|
|
55442
55437
|
await fs.writeFileAsync(outJsFilename + ".map", result.map, {
|
|
55443
55438
|
encoding: "utf8"
|
|
55444
55439
|
});
|
|
55440
|
+
|
|
55441
|
+
if (this._appMeta.getTarget().isSaveUnminified()) {
|
|
55442
|
+
await fs.writeFileAsync(outJsFilename + ".unminified", inSourceCode, {
|
|
55443
|
+
encoding: "utf8"
|
|
55444
|
+
});
|
|
55445
|
+
await fs.writeFileAsync(outJsFilename + ".unminified.map", JSON.stringify(inSourceMap, null, 2), {
|
|
55446
|
+
encoding: "utf8"
|
|
55447
|
+
});
|
|
55448
|
+
}
|
|
55449
|
+
|
|
55445
55450
|
this.fireDataEvent("minifiedApplication", {
|
|
55446
55451
|
application: application,
|
|
55447
55452
|
filename: baseJsFilename
|
|
@@ -71251,7 +71256,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
71251
71256
|
})();
|
|
71252
71257
|
qx.$$packageData['0'] = {
|
|
71253
71258
|
"locales": {
|
|
71254
|
-
"
|
|
71259
|
+
"en": {
|
|
71255
71260
|
"alternateQuotationEnd": "’",
|
|
71256
71261
|
"alternateQuotationStart": "‘",
|
|
71257
71262
|
"quotationEnd": "”",
|
|
@@ -71379,7 +71384,7 @@ qx.$$packageData['0'] = {
|
|
|
71379
71384
|
"time zone"
|
|
71380
71385
|
]
|
|
71381
71386
|
},
|
|
71382
|
-
"
|
|
71387
|
+
"C": {
|
|
71383
71388
|
"alternateQuotationEnd": "’",
|
|
71384
71389
|
"alternateQuotationStart": "‘",
|
|
71385
71390
|
"quotationEnd": "”",
|
|
@@ -71521,15 +71526,15 @@ qx.$$packageData['0'] = {
|
|
|
71521
71526
|
"gif",
|
|
71522
71527
|
"qx"
|
|
71523
71528
|
],
|
|
71524
|
-
"qx/decoration/Simple/arrows/
|
|
71525
|
-
|
|
71529
|
+
"qx/decoration/Simple/arrows/left.gif": [
|
|
71530
|
+
4,
|
|
71526
71531
|
7,
|
|
71527
71532
|
"gif",
|
|
71528
71533
|
"qx"
|
|
71529
71534
|
],
|
|
71530
|
-
"qx/decoration/Simple/arrows/
|
|
71535
|
+
"qx/decoration/Simple/arrows/forward.gif": [
|
|
71536
|
+
8,
|
|
71531
71537
|
7,
|
|
71532
|
-
4,
|
|
71533
71538
|
"gif",
|
|
71534
71539
|
"qx"
|
|
71535
71540
|
],
|
|
@@ -71539,9 +71544,9 @@ qx.$$packageData['0'] = {
|
|
|
71539
71544
|
"gif",
|
|
71540
71545
|
"qx"
|
|
71541
71546
|
],
|
|
71542
|
-
"qx/decoration/Simple/arrows/
|
|
71543
|
-
4,
|
|
71547
|
+
"qx/decoration/Simple/arrows/down.gif": [
|
|
71544
71548
|
7,
|
|
71549
|
+
4,
|
|
71545
71550
|
"gif",
|
|
71546
71551
|
"qx"
|
|
71547
71552
|
],
|
|
@@ -71557,12 +71562,6 @@ qx.$$packageData['0'] = {
|
|
|
71557
71562
|
"gif",
|
|
71558
71563
|
"qx"
|
|
71559
71564
|
],
|
|
71560
|
-
"qx/decoration/Simple/arrows/right.gif": [
|
|
71561
|
-
4,
|
|
71562
|
-
7,
|
|
71563
|
-
"gif",
|
|
71564
|
-
"qx"
|
|
71565
|
-
],
|
|
71566
71565
|
"qx/decoration/Simple/arrows/up-invert.gif": [
|
|
71567
71566
|
7,
|
|
71568
71567
|
4,
|
|
@@ -71575,6 +71574,12 @@ qx.$$packageData['0'] = {
|
|
|
71575
71574
|
"gif",
|
|
71576
71575
|
"qx"
|
|
71577
71576
|
],
|
|
71577
|
+
"qx/decoration/Simple/arrows/right.gif": [
|
|
71578
|
+
4,
|
|
71579
|
+
7,
|
|
71580
|
+
"gif",
|
|
71581
|
+
"qx"
|
|
71582
|
+
],
|
|
71578
71583
|
"qx/decoration/Simple/arrows/up.gif": [
|
|
71579
71584
|
7,
|
|
71580
71585
|
4,
|
|
@@ -71587,9 +71592,9 @@ qx.$$packageData['0'] = {
|
|
|
71587
71592
|
"png",
|
|
71588
71593
|
"qx"
|
|
71589
71594
|
],
|
|
71590
|
-
"qx/decoration/Simple/checkbox/
|
|
71595
|
+
"qx/decoration/Simple/checkbox/checked.png": [
|
|
71596
|
+
6,
|
|
71591
71597
|
6,
|
|
71592
|
-
2,
|
|
71593
71598
|
"png",
|
|
71594
71599
|
"qx"
|
|
71595
71600
|
],
|
|
@@ -71599,24 +71604,24 @@ qx.$$packageData['0'] = {
|
|
|
71599
71604
|
"png",
|
|
71600
71605
|
"qx"
|
|
71601
71606
|
],
|
|
71602
|
-
"qx/decoration/Simple/checkbox/
|
|
71603
|
-
6,
|
|
71607
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
71604
71608
|
6,
|
|
71609
|
+
2,
|
|
71605
71610
|
"png",
|
|
71606
71611
|
"qx"
|
|
71607
71612
|
],
|
|
71608
|
-
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
71609
|
-
35,
|
|
71610
|
-
11,
|
|
71611
|
-
"gif",
|
|
71612
|
-
"qx"
|
|
71613
|
-
],
|
|
71614
71613
|
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
71615
71614
|
19,
|
|
71616
71615
|
256,
|
|
71617
71616
|
"png",
|
|
71618
71617
|
"qx"
|
|
71619
71618
|
],
|
|
71619
|
+
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
71620
|
+
35,
|
|
71621
|
+
11,
|
|
71622
|
+
"gif",
|
|
71623
|
+
"qx"
|
|
71624
|
+
],
|
|
71620
71625
|
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
71621
71626
|
256,
|
|
71622
71627
|
256,
|
|
@@ -71629,6 +71634,30 @@ qx.$$packageData['0'] = {
|
|
|
71629
71634
|
"gif",
|
|
71630
71635
|
"qx"
|
|
71631
71636
|
],
|
|
71637
|
+
"qx/decoration/Simple/cursors/alias.gif": [
|
|
71638
|
+
19,
|
|
71639
|
+
15,
|
|
71640
|
+
"gif",
|
|
71641
|
+
"qx"
|
|
71642
|
+
],
|
|
71643
|
+
"qx/decoration/Simple/cursors/copy.gif": [
|
|
71644
|
+
19,
|
|
71645
|
+
15,
|
|
71646
|
+
"gif",
|
|
71647
|
+
"qx"
|
|
71648
|
+
],
|
|
71649
|
+
"qx/decoration/Simple/cursors/move.gif": [
|
|
71650
|
+
13,
|
|
71651
|
+
9,
|
|
71652
|
+
"gif",
|
|
71653
|
+
"qx"
|
|
71654
|
+
],
|
|
71655
|
+
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
71656
|
+
20,
|
|
71657
|
+
20,
|
|
71658
|
+
"gif",
|
|
71659
|
+
"qx"
|
|
71660
|
+
],
|
|
71632
71661
|
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
71633
71662
|
16,
|
|
71634
71663
|
7,
|
|
@@ -71641,37 +71670,25 @@ qx.$$packageData['0'] = {
|
|
|
71641
71670
|
"gif",
|
|
71642
71671
|
"qx"
|
|
71643
71672
|
],
|
|
71644
|
-
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
71673
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
71645
71674
|
16,
|
|
71646
71675
|
5,
|
|
71647
71676
|
"gif",
|
|
71648
71677
|
"qx"
|
|
71649
71678
|
],
|
|
71650
|
-
"qx/decoration/Simple/menu/radiobutton
|
|
71679
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
71651
71680
|
16,
|
|
71652
71681
|
5,
|
|
71653
71682
|
"gif",
|
|
71654
71683
|
"qx"
|
|
71655
71684
|
],
|
|
71656
|
-
"qx/decoration/Simple/
|
|
71657
|
-
|
|
71658
|
-
|
|
71659
|
-
"png",
|
|
71660
|
-
"qx"
|
|
71661
|
-
],
|
|
71662
|
-
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
71663
|
-
8,
|
|
71664
|
-
1,
|
|
71665
|
-
"png",
|
|
71666
|
-
"qx"
|
|
71667
|
-
],
|
|
71668
|
-
"qx/decoration/Simple/table/boolean-true.png": [
|
|
71669
|
-
11,
|
|
71670
|
-
11,
|
|
71685
|
+
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
71686
|
+
10,
|
|
71687
|
+
10,
|
|
71671
71688
|
"png",
|
|
71672
71689
|
"qx"
|
|
71673
71690
|
],
|
|
71674
|
-
"qx/decoration/Simple/table/ascending
|
|
71691
|
+
"qx/decoration/Simple/table/ascending.png": [
|
|
71675
71692
|
10,
|
|
71676
71693
|
10,
|
|
71677
71694
|
"png",
|
|
@@ -71683,15 +71700,15 @@ qx.$$packageData['0'] = {
|
|
|
71683
71700
|
"png",
|
|
71684
71701
|
"qx"
|
|
71685
71702
|
],
|
|
71686
|
-
"qx/decoration/Simple/table/
|
|
71703
|
+
"qx/decoration/Simple/table/descending-invert.png": [
|
|
71687
71704
|
10,
|
|
71688
71705
|
10,
|
|
71689
71706
|
"png",
|
|
71690
71707
|
"qx"
|
|
71691
71708
|
],
|
|
71692
|
-
"qx/decoration/Simple/table/
|
|
71693
|
-
|
|
71694
|
-
|
|
71709
|
+
"qx/decoration/Simple/table/boolean-true.png": [
|
|
71710
|
+
11,
|
|
71711
|
+
11,
|
|
71695
71712
|
"png",
|
|
71696
71713
|
"qx"
|
|
71697
71714
|
],
|
|
@@ -71707,32 +71724,20 @@ qx.$$packageData['0'] = {
|
|
|
71707
71724
|
"png",
|
|
71708
71725
|
"qx"
|
|
71709
71726
|
],
|
|
71710
|
-
"qx/decoration/Simple/
|
|
71711
|
-
|
|
71712
|
-
|
|
71713
|
-
"
|
|
71714
|
-
"qx"
|
|
71715
|
-
],
|
|
71716
|
-
"qx/decoration/Simple/cursors/alias.gif": [
|
|
71717
|
-
19,
|
|
71718
|
-
15,
|
|
71719
|
-
"gif",
|
|
71720
|
-
"qx"
|
|
71721
|
-
],
|
|
71722
|
-
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
71723
|
-
20,
|
|
71724
|
-
20,
|
|
71725
|
-
"gif",
|
|
71727
|
+
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
71728
|
+
1,
|
|
71729
|
+
8,
|
|
71730
|
+
"png",
|
|
71726
71731
|
"qx"
|
|
71727
71732
|
],
|
|
71728
|
-
"qx/decoration/Simple/
|
|
71729
|
-
|
|
71730
|
-
|
|
71731
|
-
"
|
|
71733
|
+
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
71734
|
+
8,
|
|
71735
|
+
1,
|
|
71736
|
+
"png",
|
|
71732
71737
|
"qx"
|
|
71733
71738
|
],
|
|
71734
|
-
"qx/decoration/Simple/
|
|
71735
|
-
|
|
71739
|
+
"qx/decoration/Simple/tabview/close.gif": [
|
|
71740
|
+
10,
|
|
71736
71741
|
9,
|
|
71737
71742
|
"gif",
|
|
71738
71743
|
"qx"
|
|
@@ -71749,123 +71754,123 @@ qx.$$packageData['0'] = {
|
|
|
71749
71754
|
"gif",
|
|
71750
71755
|
"qx"
|
|
71751
71756
|
],
|
|
71752
|
-
"qx/decoration/Simple/
|
|
71753
|
-
|
|
71754
|
-
|
|
71757
|
+
"qx/decoration/Simple/treevirtual/cross.gif": [
|
|
71758
|
+
19,
|
|
71759
|
+
16,
|
|
71755
71760
|
"gif",
|
|
71756
71761
|
"qx"
|
|
71757
71762
|
],
|
|
71758
|
-
"qx/decoration/Simple/
|
|
71759
|
-
|
|
71760
|
-
|
|
71763
|
+
"qx/decoration/Simple/treevirtual/cross_plus.gif": [
|
|
71764
|
+
19,
|
|
71765
|
+
16,
|
|
71761
71766
|
"gif",
|
|
71762
71767
|
"qx"
|
|
71763
71768
|
],
|
|
71764
|
-
"qx/decoration/Simple/
|
|
71765
|
-
|
|
71766
|
-
|
|
71769
|
+
"qx/decoration/Simple/treevirtual/cross_minus.gif": [
|
|
71770
|
+
19,
|
|
71771
|
+
16,
|
|
71767
71772
|
"gif",
|
|
71768
71773
|
"qx"
|
|
71769
71774
|
],
|
|
71770
|
-
"qx/decoration/Simple/
|
|
71771
|
-
|
|
71772
|
-
|
|
71775
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
71776
|
+
19,
|
|
71777
|
+
16,
|
|
71773
71778
|
"gif",
|
|
71774
71779
|
"qx"
|
|
71775
71780
|
],
|
|
71776
|
-
"qx/decoration/Simple/
|
|
71777
|
-
|
|
71778
|
-
|
|
71781
|
+
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
71782
|
+
19,
|
|
71783
|
+
16,
|
|
71779
71784
|
"gif",
|
|
71780
71785
|
"qx"
|
|
71781
71786
|
],
|
|
71782
|
-
"qx/decoration/Simple/
|
|
71783
|
-
|
|
71784
|
-
|
|
71787
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
71788
|
+
19,
|
|
71789
|
+
16,
|
|
71785
71790
|
"gif",
|
|
71786
71791
|
"qx"
|
|
71787
71792
|
],
|
|
71788
|
-
"qx/decoration/Simple/
|
|
71789
|
-
|
|
71790
|
-
|
|
71793
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
71794
|
+
19,
|
|
71795
|
+
16,
|
|
71791
71796
|
"gif",
|
|
71792
71797
|
"qx"
|
|
71793
71798
|
],
|
|
71794
|
-
"qx/decoration/Simple/
|
|
71795
|
-
|
|
71796
|
-
|
|
71799
|
+
"qx/decoration/Simple/treevirtual/only_minus.gif": [
|
|
71800
|
+
19,
|
|
71801
|
+
16,
|
|
71797
71802
|
"gif",
|
|
71798
71803
|
"qx"
|
|
71799
71804
|
],
|
|
71800
|
-
"qx/decoration/Simple/treevirtual/
|
|
71805
|
+
"qx/decoration/Simple/treevirtual/start.gif": [
|
|
71801
71806
|
19,
|
|
71802
71807
|
16,
|
|
71803
71808
|
"gif",
|
|
71804
71809
|
"qx"
|
|
71805
71810
|
],
|
|
71806
|
-
"qx/decoration/Simple/treevirtual/
|
|
71811
|
+
"qx/decoration/Simple/treevirtual/only_plus.gif": [
|
|
71807
71812
|
19,
|
|
71808
71813
|
16,
|
|
71809
71814
|
"gif",
|
|
71810
71815
|
"qx"
|
|
71811
71816
|
],
|
|
71812
|
-
"qx/decoration/Simple/treevirtual/
|
|
71817
|
+
"qx/decoration/Simple/treevirtual/start_plus.gif": [
|
|
71813
71818
|
19,
|
|
71814
71819
|
16,
|
|
71815
71820
|
"gif",
|
|
71816
71821
|
"qx"
|
|
71817
71822
|
],
|
|
71818
|
-
"qx/decoration/Simple/treevirtual/
|
|
71823
|
+
"qx/decoration/Simple/treevirtual/start_minus.gif": [
|
|
71819
71824
|
19,
|
|
71820
71825
|
16,
|
|
71821
71826
|
"gif",
|
|
71822
71827
|
"qx"
|
|
71823
71828
|
],
|
|
71824
|
-
"qx/decoration/Simple/
|
|
71825
|
-
|
|
71826
|
-
|
|
71829
|
+
"qx/decoration/Simple/window/close-white.gif": [
|
|
71830
|
+
10,
|
|
71831
|
+
9,
|
|
71827
71832
|
"gif",
|
|
71828
71833
|
"qx"
|
|
71829
71834
|
],
|
|
71830
|
-
"qx/decoration/Simple/
|
|
71831
|
-
|
|
71832
|
-
|
|
71835
|
+
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
71836
|
+
9,
|
|
71837
|
+
9,
|
|
71833
71838
|
"gif",
|
|
71834
71839
|
"qx"
|
|
71835
71840
|
],
|
|
71836
|
-
"qx/decoration/Simple/
|
|
71837
|
-
|
|
71838
|
-
|
|
71841
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
71842
|
+
10,
|
|
71843
|
+
9,
|
|
71839
71844
|
"gif",
|
|
71840
71845
|
"qx"
|
|
71841
71846
|
],
|
|
71842
|
-
"qx/decoration/Simple/
|
|
71843
|
-
|
|
71844
|
-
|
|
71847
|
+
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
71848
|
+
9,
|
|
71849
|
+
9,
|
|
71845
71850
|
"gif",
|
|
71846
71851
|
"qx"
|
|
71847
71852
|
],
|
|
71848
|
-
"qx/decoration/Simple/
|
|
71849
|
-
|
|
71850
|
-
|
|
71853
|
+
"qx/decoration/Simple/window/maximize.gif": [
|
|
71854
|
+
9,
|
|
71855
|
+
9,
|
|
71851
71856
|
"gif",
|
|
71852
71857
|
"qx"
|
|
71853
71858
|
],
|
|
71854
|
-
"qx/decoration/Simple/
|
|
71855
|
-
|
|
71856
|
-
|
|
71859
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
71860
|
+
9,
|
|
71861
|
+
9,
|
|
71857
71862
|
"gif",
|
|
71858
71863
|
"qx"
|
|
71859
71864
|
],
|
|
71860
|
-
"qx/decoration/Simple/
|
|
71861
|
-
|
|
71862
|
-
|
|
71865
|
+
"qx/decoration/Simple/window/restore-white.gif": [
|
|
71866
|
+
8,
|
|
71867
|
+
9,
|
|
71863
71868
|
"gif",
|
|
71864
71869
|
"qx"
|
|
71865
71870
|
],
|
|
71866
|
-
"qx/decoration/Simple/
|
|
71867
|
-
|
|
71868
|
-
|
|
71871
|
+
"qx/decoration/Simple/window/restore.gif": [
|
|
71872
|
+
8,
|
|
71873
|
+
9,
|
|
71869
71874
|
"gif",
|
|
71870
71875
|
"qx"
|
|
71871
71876
|
],
|
|
@@ -71881,13 +71886,13 @@ qx.$$packageData['0'] = {
|
|
|
71881
71886
|
"js",
|
|
71882
71887
|
"qx"
|
|
71883
71888
|
],
|
|
71884
|
-
"qx/tool/bin/
|
|
71889
|
+
"qx/tool/bin/build-devtools": [
|
|
71885
71890
|
null,
|
|
71886
71891
|
null,
|
|
71887
71892
|
"",
|
|
71888
71893
|
"qx"
|
|
71889
71894
|
],
|
|
71890
|
-
"qx/tool/bin/
|
|
71895
|
+
"qx/tool/bin/download-assets": [
|
|
71891
71896
|
null,
|
|
71892
71897
|
null,
|
|
71893
71898
|
"",
|
|
@@ -71899,34 +71904,34 @@ qx.$$packageData['0'] = {
|
|
|
71899
71904
|
"",
|
|
71900
71905
|
"qx"
|
|
71901
71906
|
],
|
|
71902
|
-
"qx/tool/schema/
|
|
71907
|
+
"qx/tool/schema/Manifest-1-0-0.json": [
|
|
71903
71908
|
null,
|
|
71904
71909
|
null,
|
|
71905
71910
|
"json",
|
|
71906
71911
|
"qx"
|
|
71907
71912
|
],
|
|
71908
|
-
"qx/tool/schema/
|
|
71913
|
+
"qx/tool/schema/compile-1-0-0.json": [
|
|
71909
71914
|
null,
|
|
71910
71915
|
null,
|
|
71911
71916
|
"json",
|
|
71912
71917
|
"qx"
|
|
71913
71918
|
],
|
|
71914
|
-
"qx/tool/schema/
|
|
71919
|
+
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
71915
71920
|
null,
|
|
71916
71921
|
null,
|
|
71917
71922
|
"json",
|
|
71918
71923
|
"qx"
|
|
71919
71924
|
],
|
|
71920
|
-
"qx/tool/
|
|
71925
|
+
"qx/tool/schema/qooxdoo-1-0-0.json": [
|
|
71921
71926
|
null,
|
|
71922
71927
|
null,
|
|
71923
|
-
"",
|
|
71928
|
+
"json",
|
|
71924
71929
|
"qx"
|
|
71925
71930
|
],
|
|
71926
|
-
"qx/tool/
|
|
71931
|
+
"qx/tool/website/.gitignore": [
|
|
71927
71932
|
null,
|
|
71928
71933
|
null,
|
|
71929
|
-
"
|
|
71934
|
+
"",
|
|
71930
71935
|
"qx"
|
|
71931
71936
|
],
|
|
71932
71937
|
"qx/tool/cli/templates/template_vars.js": [
|
|
@@ -71971,12 +71976,6 @@ qx.$$packageData['0'] = {
|
|
|
71971
71976
|
"dot",
|
|
71972
71977
|
"qx"
|
|
71973
71978
|
],
|
|
71974
|
-
"qx/tool/website/sass/qooxdoo.scss": [
|
|
71975
|
-
null,
|
|
71976
|
-
null,
|
|
71977
|
-
"scss",
|
|
71978
|
-
"qx"
|
|
71979
|
-
],
|
|
71980
71979
|
"qx/tool/website/partials/footer.html": [
|
|
71981
71980
|
null,
|
|
71982
71981
|
null,
|
|
@@ -72019,6 +72018,12 @@ qx.$$packageData['0'] = {
|
|
|
72019
72018
|
"svg",
|
|
72020
72019
|
"qx"
|
|
72021
72020
|
],
|
|
72021
|
+
"qx/tool/website/sass/qooxdoo.scss": [
|
|
72022
|
+
null,
|
|
72023
|
+
null,
|
|
72024
|
+
"scss",
|
|
72025
|
+
"qx"
|
|
72026
|
+
],
|
|
72022
72027
|
"qx/tool/website/src/404.html": [
|
|
72023
72028
|
null,
|
|
72024
72029
|
null,
|
|
@@ -72115,18 +72120,18 @@ qx.$$packageData['0'] = {
|
|
|
72115
72120
|
"map",
|
|
72116
72121
|
"qx"
|
|
72117
72122
|
],
|
|
72118
|
-
"qx/tool/website/build/assets/favicon.png": [
|
|
72119
|
-
32,
|
|
72120
|
-
32,
|
|
72121
|
-
"png",
|
|
72122
|
-
"qx"
|
|
72123
|
-
],
|
|
72124
72123
|
"qx/tool/website/build/assets/buttons.js": [
|
|
72125
72124
|
null,
|
|
72126
72125
|
null,
|
|
72127
72126
|
"js",
|
|
72128
72127
|
"qx"
|
|
72129
72128
|
],
|
|
72129
|
+
"qx/tool/website/build/assets/favicon.png": [
|
|
72130
|
+
32,
|
|
72131
|
+
32,
|
|
72132
|
+
"png",
|
|
72133
|
+
"qx"
|
|
72134
|
+
],
|
|
72130
72135
|
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
72131
72136
|
null,
|
|
72132
72137
|
null,
|
|
@@ -72229,18 +72234,18 @@ qx.$$packageData['0'] = {
|
|
|
72229
72234
|
"map",
|
|
72230
72235
|
"qx"
|
|
72231
72236
|
],
|
|
72232
|
-
"qx/tool/website/src/assets/favicon.png": [
|
|
72233
|
-
32,
|
|
72234
|
-
32,
|
|
72235
|
-
"png",
|
|
72236
|
-
"qx"
|
|
72237
|
-
],
|
|
72238
72237
|
"qx/tool/website/src/assets/buttons.js": [
|
|
72239
72238
|
null,
|
|
72240
72239
|
null,
|
|
72241
72240
|
"js",
|
|
72242
72241
|
"qx"
|
|
72243
72242
|
],
|
|
72243
|
+
"qx/tool/website/src/assets/favicon.png": [
|
|
72244
|
+
32,
|
|
72245
|
+
32,
|
|
72246
|
+
"png",
|
|
72247
|
+
"qx"
|
|
72248
|
+
],
|
|
72244
72249
|
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
72245
72250
|
null,
|
|
72246
72251
|
null,
|
|
@@ -72283,12 +72288,6 @@ qx.$$packageData['0'] = {
|
|
|
72283
72288
|
"svg",
|
|
72284
72289
|
"qx"
|
|
72285
72290
|
],
|
|
72286
|
-
"qx/tool/website/src/scripts/serve.js": [
|
|
72287
|
-
null,
|
|
72288
|
-
null,
|
|
72289
|
-
"js",
|
|
72290
|
-
"qx"
|
|
72291
|
-
],
|
|
72292
72291
|
"qx/tool/website/src/diagnostics/dependson.html": [
|
|
72293
72292
|
null,
|
|
72294
72293
|
null,
|
|
@@ -72313,6 +72312,12 @@ qx.$$packageData['0'] = {
|
|
|
72313
72312
|
"js",
|
|
72314
72313
|
"qx"
|
|
72315
72314
|
],
|
|
72315
|
+
"qx/tool/website/src/scripts/serve.js": [
|
|
72316
|
+
null,
|
|
72317
|
+
null,
|
|
72318
|
+
"js",
|
|
72319
|
+
"qx"
|
|
72320
|
+
],
|
|
72316
72321
|
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
72317
72322
|
null,
|
|
72318
72323
|
null,
|
|
@@ -72367,13 +72372,13 @@ qx.$$packageData['0'] = {
|
|
|
72367
72372
|
"tmpl",
|
|
72368
72373
|
"qx"
|
|
72369
72374
|
],
|
|
72370
|
-
"qx/tool/cli/templates/skeleton/package/
|
|
72375
|
+
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
|
|
72371
72376
|
null,
|
|
72372
72377
|
null,
|
|
72373
72378
|
"json",
|
|
72374
72379
|
"qx"
|
|
72375
72380
|
],
|
|
72376
|
-
"qx/tool/cli/templates/skeleton/package/
|
|
72381
|
+
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
|
|
72377
72382
|
null,
|
|
72378
72383
|
null,
|
|
72379
72384
|
"json",
|
|
@@ -72421,22 +72426,22 @@ qx.$$packageData['0'] = {
|
|
|
72421
72426
|
"html",
|
|
72422
72427
|
"qx"
|
|
72423
72428
|
],
|
|
72424
|
-
"qx/tool/cli/templates/skeleton/
|
|
72429
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
72425
72430
|
null,
|
|
72426
72431
|
null,
|
|
72427
|
-
"
|
|
72432
|
+
"html",
|
|
72428
72433
|
"qx"
|
|
72429
72434
|
],
|
|
72430
|
-
"qx/tool/cli/templates/skeleton/mobile/source/boot/
|
|
72435
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
72431
72436
|
null,
|
|
72432
72437
|
null,
|
|
72433
72438
|
"html",
|
|
72434
72439
|
"qx"
|
|
72435
72440
|
],
|
|
72436
|
-
"qx/tool/cli/templates/skeleton/
|
|
72441
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
72437
72442
|
null,
|
|
72438
72443
|
null,
|
|
72439
|
-
"
|
|
72444
|
+
"txt",
|
|
72440
72445
|
"qx"
|
|
72441
72446
|
],
|
|
72442
72447
|
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
@@ -72523,6 +72528,12 @@ qx.$$packageData['0'] = {
|
|
|
72523
72528
|
"js",
|
|
72524
72529
|
"qx"
|
|
72525
72530
|
],
|
|
72531
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
72532
|
+
32,
|
|
72533
|
+
32,
|
|
72534
|
+
"png",
|
|
72535
|
+
"qx"
|
|
72536
|
+
],
|
|
72526
72537
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
72527
72538
|
null,
|
|
72528
72539
|
null,
|
|
@@ -72535,12 +72546,6 @@ qx.$$packageData['0'] = {
|
|
|
72535
72546
|
"js",
|
|
72536
72547
|
"qx"
|
|
72537
72548
|
],
|
|
72538
|
-
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
72539
|
-
32,
|
|
72540
|
-
32,
|
|
72541
|
-
"png",
|
|
72542
|
-
"qx"
|
|
72543
|
-
],
|
|
72544
72549
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
72545
72550
|
null,
|
|
72546
72551
|
null,
|
|
@@ -72577,13 +72582,13 @@ qx.$$packageData['0'] = {
|
|
|
72577
72582
|
"js",
|
|
72578
72583
|
"qx"
|
|
72579
72584
|
],
|
|
72580
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
72585
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
|
|
72581
72586
|
null,
|
|
72582
72587
|
null,
|
|
72583
72588
|
"js",
|
|
72584
72589
|
"qx"
|
|
72585
72590
|
],
|
|
72586
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
72591
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
|
|
72587
72592
|
null,
|
|
72588
72593
|
null,
|
|
72589
72594
|
"js",
|
|
@@ -72601,18 +72606,6 @@ qx.$$packageData['0'] = {
|
|
|
72601
72606
|
"tmpl",
|
|
72602
72607
|
"qx"
|
|
72603
72608
|
],
|
|
72604
|
-
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
72605
|
-
null,
|
|
72606
|
-
null,
|
|
72607
|
-
"scss",
|
|
72608
|
-
"qx"
|
|
72609
|
-
],
|
|
72610
|
-
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
72611
|
-
null,
|
|
72612
|
-
null,
|
|
72613
|
-
"scss",
|
|
72614
|
-
"qx"
|
|
72615
|
-
],
|
|
72616
72609
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
72617
72610
|
null,
|
|
72618
72611
|
null,
|
|
@@ -72631,13 +72624,19 @@ qx.$$packageData['0'] = {
|
|
|
72631
72624
|
"js",
|
|
72632
72625
|
"qx"
|
|
72633
72626
|
],
|
|
72634
|
-
"qx/tool/cli/templates/skeleton/
|
|
72627
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
72635
72628
|
null,
|
|
72636
72629
|
null,
|
|
72637
|
-
"
|
|
72630
|
+
"scss",
|
|
72638
72631
|
"qx"
|
|
72639
72632
|
],
|
|
72640
|
-
"qx/tool/cli/templates/skeleton/
|
|
72633
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
72634
|
+
null,
|
|
72635
|
+
null,
|
|
72636
|
+
"scss",
|
|
72637
|
+
"qx"
|
|
72638
|
+
],
|
|
72639
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
72641
72640
|
null,
|
|
72642
72641
|
null,
|
|
72643
72642
|
"js",
|
|
@@ -72673,6 +72672,12 @@ qx.$$packageData['0'] = {
|
|
|
72673
72672
|
"js",
|
|
72674
72673
|
"qx"
|
|
72675
72674
|
],
|
|
72675
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
72676
|
+
null,
|
|
72677
|
+
null,
|
|
72678
|
+
"js",
|
|
72679
|
+
"qx"
|
|
72680
|
+
],
|
|
72676
72681
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
|
|
72677
72682
|
null,
|
|
72678
72683
|
null,
|