@qooxdoo/framework 7.0.0-beta.8 → 7.0.0-beta.9
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 +1 -1
- package/lib/compiler/compile-info.json +51 -51
- package/lib/compiler/index.js +229 -243
- package/npm-shrinkwrap.json +14 -7
- package/package.json +3 -2
- package/source/class/qx/Class.js +0 -28
- package/source/class/qx/data/Array.js +1 -1
- package/source/class/qx/test/Mixin.js +175 -1
- package/source/class/qx/tool/cli/commands/Lint.js +4 -3
- package/source/class/qx/tool/compiler/ClassFile.js +3 -5
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-beta.
|
|
99
|
+
"qx.version": "7.0.0-beta.9",
|
|
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-beta.
|
|
131
|
+
"qx.compiler.version": "7.0.0-beta.9",
|
|
132
132
|
"qx.headless": true,
|
|
133
133
|
"qx.compiler.applicationType": "node",
|
|
134
134
|
"qx.compiler.applicationName": "compiler"
|
|
@@ -9543,20 +9543,6 @@ try {
|
|
|
9543
9543
|
}
|
|
9544
9544
|
},
|
|
9545
9545
|
|
|
9546
|
-
/**
|
|
9547
|
-
* Wraps a member function of a mixin, which is included using "patch". This
|
|
9548
|
-
* allows "base" calls in the mixin member function.
|
|
9549
|
-
*
|
|
9550
|
-
* @param member {Function} The mixin method to wrap
|
|
9551
|
-
* @param base {Function} The overwritten method
|
|
9552
|
-
* @return {Function} the wrapped mixin member
|
|
9553
|
-
*/
|
|
9554
|
-
__P_137_16(member, base) {
|
|
9555
|
-
{
|
|
9556
|
-
throw new Error("This function should not be used except with code compiled by the generator (ie python toolchain)");
|
|
9557
|
-
}
|
|
9558
|
-
},
|
|
9559
|
-
|
|
9560
9546
|
/**
|
|
9561
9547
|
* Add a single interface to a class
|
|
9562
9548
|
*
|
|
@@ -19201,7 +19187,7 @@ try {
|
|
|
19201
19187
|
* @return {qx.event.type.Data} the initialized instance.
|
|
19202
19188
|
*/
|
|
19203
19189
|
init(data, old, cancelable) {
|
|
19204
|
-
qx.event.type.Data.prototype.init.
|
|
19190
|
+
qx.event.type.Data.superclass.prototype.init.call(this, false, cancelable);
|
|
19205
19191
|
this.__P_149_0 = data;
|
|
19206
19192
|
this.__P_149_1 = old;
|
|
19207
19193
|
return this;
|
|
@@ -19217,7 +19203,7 @@ try {
|
|
|
19217
19203
|
* @return {qx.event.type.Data} a copy of this object
|
|
19218
19204
|
*/
|
|
19219
19205
|
clone(embryo) {
|
|
19220
|
-
var clone = qx.event.type.Data.prototype.clone.
|
|
19206
|
+
var clone = qx.event.type.Data.superclass.prototype.clone.call(this, embryo);
|
|
19221
19207
|
clone.__P_149_0 = this.__P_149_0;
|
|
19222
19208
|
clone.__P_149_1 = this.__P_149_1;
|
|
19223
19209
|
return clone;
|
|
@@ -31573,7 +31559,7 @@ try {
|
|
|
31573
31559
|
* <li><code>index</code>: the index of the current item</li>
|
|
31574
31560
|
* <li><code>array</code>: The native array instance, NOT the data array instance.</li>
|
|
31575
31561
|
* @param self {var?undefined} The context of the callback.
|
|
31576
|
-
* @return {
|
|
31562
|
+
* @return {var | undefined} The found item.
|
|
31577
31563
|
*/
|
|
31578
31564
|
find(callback, self) {
|
|
31579
31565
|
return this.__P_72_0.find(callback, self);
|
|
@@ -36445,7 +36431,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
36445
36431
|
* @return {String}
|
|
36446
36432
|
*/
|
|
36447
36433
|
getCompilerVersion() {
|
|
36448
|
-
return "7.0.0-beta.
|
|
36434
|
+
return "7.0.0-beta.9";
|
|
36449
36435
|
},
|
|
36450
36436
|
|
|
36451
36437
|
/**
|
|
@@ -37922,7 +37908,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
37922
37908
|
}
|
|
37923
37909
|
|
|
37924
37910
|
this.setConfiguration(config);
|
|
37925
|
-
return qx.tool.cli.api.CompilerApi.prototype.load.
|
|
37911
|
+
return qx.tool.cli.api.CompilerApi.superclass.prototype.load.call(this);
|
|
37926
37912
|
},
|
|
37927
37913
|
|
|
37928
37914
|
/**
|
|
@@ -38342,7 +38328,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
38342
38328
|
* Installs a package
|
|
38343
38329
|
*/
|
|
38344
38330
|
async process() {
|
|
38345
|
-
await qx.tool.cli.commands.package.Install.prototype.process.
|
|
38331
|
+
await qx.tool.cli.commands.package.Install.superclass.prototype.process.call(this);
|
|
38346
38332
|
await this.__P_16_1();
|
|
38347
38333
|
const [manifestModel, lockfileModel] = await this._getConfigData(); // create shorthand for uri@id
|
|
38348
38334
|
|
|
@@ -39719,7 +39705,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
39719
39705
|
* @overridden
|
|
39720
39706
|
*/
|
|
39721
39707
|
async load() {
|
|
39722
|
-
return qx.tool.cli.api.LibraryApi.prototype.load.
|
|
39708
|
+
return qx.tool.cli.api.LibraryApi.superclass.prototype.load.call(this);
|
|
39723
39709
|
},
|
|
39724
39710
|
|
|
39725
39711
|
/**
|
|
@@ -42979,7 +42965,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
42979
42965
|
* Updates the cache with information from GitHub.
|
|
42980
42966
|
*/
|
|
42981
42967
|
async process() {
|
|
42982
|
-
qx.tool.cli.commands.package.Update.prototype.process.
|
|
42968
|
+
qx.tool.cli.commands.package.Update.superclass.prototype.process.call(this); // init
|
|
42983
42969
|
|
|
42984
42970
|
this.__P_20_0 = []; // export only
|
|
42985
42971
|
|
|
@@ -43436,7 +43422,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
43436
43422
|
* Lists library packages compatible with the current project
|
|
43437
43423
|
*/
|
|
43438
43424
|
async process() {
|
|
43439
|
-
await qx.tool.cli.commands.package.List.prototype.process.
|
|
43425
|
+
await qx.tool.cli.commands.package.List.superclass.prototype.process.call(this);
|
|
43440
43426
|
this.__P_17_0 = [];
|
|
43441
43427
|
this.__P_17_1 = {};
|
|
43442
43428
|
this.__P_17_2 = {};
|
|
@@ -45681,7 +45667,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45681
45667
|
* Deletes all generated and cache files
|
|
45682
45668
|
*/
|
|
45683
45669
|
async process() {
|
|
45684
|
-
qx.tool.cli.commands.Clean.prototype.process.
|
|
45670
|
+
qx.tool.cli.commands.Clean.superclass.prototype.process.call(this);
|
|
45685
45671
|
let compileConfig = await qx.tool.config.Compile.getInstance().load();
|
|
45686
45672
|
|
|
45687
45673
|
for (let target of compileConfig.getValue("targets")) {
|
|
@@ -46079,7 +46065,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
46079
46065
|
* @Override
|
|
46080
46066
|
*/
|
|
46081
46067
|
async process() {
|
|
46082
|
-
await qx.tool.cli.commands.Compile.prototype.process.
|
|
46068
|
+
await qx.tool.cli.commands.Compile.superclass.prototype.process.call(this);
|
|
46083
46069
|
let configDb = await qx.tool.cli.ConfigDb.getInstance();
|
|
46084
46070
|
|
|
46085
46071
|
if (this.argv["feedback"] === null) {
|
|
@@ -48246,7 +48232,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
48246
48232
|
appMeta.getBootMetaJs().wrap(new qx.tool.compiler.targets.meta.Uglify(appMeta, bootMeta));
|
|
48247
48233
|
}
|
|
48248
48234
|
|
|
48249
|
-
return await qx.tool.compiler.targets.BuildTarget.prototype._writeApplication.
|
|
48235
|
+
return await qx.tool.compiler.targets.BuildTarget.superclass.prototype._writeApplication.call(this);
|
|
48250
48236
|
},
|
|
48251
48237
|
|
|
48252
48238
|
/*
|
|
@@ -52736,12 +52722,11 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
52736
52722
|
|
|
52737
52723
|
if (t.__P_22_28 == "Mixin") {
|
|
52738
52724
|
expr = types.callExpression(expandMemberExpression("qx.Mixin.baseClassMethod"), [expandMemberExpression("this.constructor"), types.identifier(t.__P_22_24.className), types.stringLiteral(t.__P_22_24.functionName)]);
|
|
52739
|
-
expr = types.memberExpression(expr, types.identifier("call"));
|
|
52740
|
-
//expr = expandMemberExpression(t.__classMeta.className + ".$$members." + t.__classMeta.functionName + ".base.call");
|
|
52725
|
+
expr = types.memberExpression(expr, types.identifier("call"));
|
|
52741
52726
|
} else if (t.__P_22_24.functionName == "$$constructor") {
|
|
52742
52727
|
expr = expandMemberExpression(t.__P_22_24.superClass + ".constructor.call");
|
|
52743
52728
|
} else if (t.__P_22_24.className) {
|
|
52744
|
-
expr = expandMemberExpression(t.__P_22_24.className + ".prototype." + t.__P_22_24.functionName + ".
|
|
52729
|
+
expr = expandMemberExpression(t.__P_22_24.className + ".superclass" + ".prototype." + t.__P_22_24.functionName + ".call");
|
|
52745
52730
|
} else {
|
|
52746
52731
|
expr = expandMemberExpression(t.__P_22_24.superClass + ".prototype." + t.__P_22_24.functionName + ".call");
|
|
52747
52732
|
}
|
|
@@ -53905,7 +53890,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
53905
53890
|
await appMeta.syncAssets();
|
|
53906
53891
|
}
|
|
53907
53892
|
|
|
53908
|
-
return await qx.tool.compiler.targets.SourceTarget.prototype._writeApplication.
|
|
53893
|
+
return await qx.tool.compiler.targets.SourceTarget.superclass.prototype._writeApplication.call(this);
|
|
53909
53894
|
},
|
|
53910
53895
|
|
|
53911
53896
|
/*
|
|
@@ -60445,7 +60430,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
60445
60430
|
* @Override
|
|
60446
60431
|
*/
|
|
60447
60432
|
async writeToDisk() {
|
|
60448
|
-
await qx.tool.compiler.targets.meta.PackageJavascript.prototype.writeToDisk.
|
|
60433
|
+
await qx.tool.compiler.targets.meta.PackageJavascript.superclass.prototype.writeToDisk.call(this);
|
|
60449
60434
|
|
|
60450
60435
|
if (!this.__P_45_0.isEmbedAllJavascript()) {
|
|
60451
60436
|
for (let i = 0; i < this.__P_45_0.getJavascriptMetas().length; i++) {
|
|
@@ -60616,7 +60601,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
60616
60601
|
return true;
|
|
60617
60602
|
}
|
|
60618
60603
|
|
|
60619
|
-
return qx.tool.compiler.resources.ImageLoader.prototype.needsLoad.
|
|
60604
|
+
return qx.tool.compiler.resources.ImageLoader.superclass.prototype.needsLoad.call(this, filename, fileInfo, stat);
|
|
60620
60605
|
},
|
|
60621
60606
|
|
|
60622
60607
|
/**
|
|
@@ -60631,7 +60616,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
60631
60616
|
}
|
|
60632
60617
|
}
|
|
60633
60618
|
|
|
60634
|
-
return qx.tool.compiler.resources.ImageLoader.prototype.matches.
|
|
60619
|
+
return qx.tool.compiler.resources.ImageLoader.superclass.prototype.matches.call(this, filename, library);
|
|
60635
60620
|
},
|
|
60636
60621
|
|
|
60637
60622
|
/**
|
|
@@ -61713,7 +61698,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
61713
61698
|
* @Override
|
|
61714
61699
|
*/
|
|
61715
61700
|
processArgs(argv) {
|
|
61716
|
-
qx.tool.cli.commands.Deploy.prototype.processArgs.
|
|
61701
|
+
qx.tool.cli.commands.Deploy.superclass.prototype.processArgs.call(this, argv);
|
|
61717
61702
|
|
|
61718
61703
|
if (!argv.clean) {
|
|
61719
61704
|
qx.tool.compiler.Console.print("qx.tool.cli.deploy.notClean");
|
|
@@ -61736,7 +61721,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
61736
61721
|
* @Override
|
|
61737
61722
|
*/
|
|
61738
61723
|
async process() {
|
|
61739
|
-
await qx.tool.cli.commands.Deploy.prototype.process.
|
|
61724
|
+
await qx.tool.cli.commands.Deploy.superclass.prototype.process.call(this);
|
|
61740
61725
|
let argv = this.argv;
|
|
61741
61726
|
let appNames = null;
|
|
61742
61727
|
|
|
@@ -61958,7 +61943,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
61958
61943
|
},
|
|
61959
61944
|
members: {
|
|
61960
61945
|
async process() {
|
|
61961
|
-
await qx.tool.cli.commands.Es6ify.prototype.process.
|
|
61946
|
+
await qx.tool.cli.commands.Es6ify.superclass.prototype.process.call(this);
|
|
61962
61947
|
const ignoreFileName = ".prettierignore";
|
|
61963
61948
|
const ig = ignore();
|
|
61964
61949
|
|
|
@@ -62556,6 +62541,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62556
62541
|
lintOptions.parserOptions = lintOptions.parserOptions || {};
|
|
62557
62542
|
lintOptions.parserOptions.requireConfigFile = false;
|
|
62558
62543
|
lintOptions.parserOptions.babelOptions = {
|
|
62544
|
+
cwd: helperFilePath,
|
|
62559
62545
|
plugins: ["@babel/plugin-syntax-jsx"],
|
|
62560
62546
|
parserOpts: {
|
|
62561
62547
|
allowSuperOutsideMethod: true
|
|
@@ -62909,7 +62895,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62909
62895
|
this.argv.watch = true;
|
|
62910
62896
|
this.argv["machine-readable"] = false;
|
|
62911
62897
|
this.argv["feedback"] = false;
|
|
62912
|
-
await qx.tool.cli.commands.Run.prototype.process.
|
|
62898
|
+
await qx.tool.cli.commands.Run.superclass.prototype.process.call(this);
|
|
62913
62899
|
|
|
62914
62900
|
let config = this._getConfig();
|
|
62915
62901
|
|
|
@@ -63148,7 +63134,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63148
63134
|
this.argv.watch = true;
|
|
63149
63135
|
this.argv["machine-readable"] = false;
|
|
63150
63136
|
this.argv["feedback"] = false;
|
|
63151
|
-
await qx.tool.cli.commands.Serve.prototype.process.
|
|
63137
|
+
await qx.tool.cli.commands.Serve.superclass.prototype.process.call(this); // build website if it hasn't been built yet.
|
|
63152
63138
|
|
|
63153
63139
|
const website = this._website = new qx.tool.utils.Website();
|
|
63154
63140
|
|
|
@@ -63926,7 +63912,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63926
63912
|
|
|
63927
63913
|
if (this.__P_15_1()) {
|
|
63928
63914
|
// start server
|
|
63929
|
-
await qx.tool.cli.commands.Test.prototype.process.
|
|
63915
|
+
await qx.tool.cli.commands.Test.superclass.prototype.process.call(this);
|
|
63930
63916
|
} else {
|
|
63931
63917
|
// compile only
|
|
63932
63918
|
await qx.tool.cli.commands.Compile.prototype.process.call(this); // since the server is not started, manually fire the event necessary for firing the "runTests" event
|
|
@@ -64354,7 +64340,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
64354
64340
|
members: {
|
|
64355
64341
|
async process() {
|
|
64356
64342
|
qx.tool.compiler.Console.warn("`qx package migrate` has been deprecated in favor of `qx migrate`.");
|
|
64357
|
-
qx.tool.cli.commands.package.Migrate.prototype.process.
|
|
64343
|
+
qx.tool.cli.commands.package.Migrate.superclass.prototype.process.call(this);
|
|
64358
64344
|
}
|
|
64359
64345
|
|
|
64360
64346
|
}
|
|
@@ -64514,7 +64500,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
64514
64500
|
*
|
|
64515
64501
|
*/
|
|
64516
64502
|
async process() {
|
|
64517
|
-
await qx.tool.cli.commands.package.Publish.prototype.process.
|
|
64503
|
+
await qx.tool.cli.commands.package.Publish.superclass.prototype.process.call(this); // init
|
|
64518
64504
|
|
|
64519
64505
|
const argv = this.argv; // qooxdoo version
|
|
64520
64506
|
|
|
@@ -64989,7 +64975,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
64989
64975
|
* Removes packages
|
|
64990
64976
|
*/
|
|
64991
64977
|
async process() {
|
|
64992
|
-
await qx.tool.cli.commands.package.Remove.prototype.process.
|
|
64978
|
+
await qx.tool.cli.commands.package.Remove.superclass.prototype.process.call(this);
|
|
64993
64979
|
|
|
64994
64980
|
if (!this.argv.uri) {
|
|
64995
64981
|
throw new qx.tool.utils.Utils.UserError("No repository name given.");
|
|
@@ -65193,7 +65179,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
65193
65179
|
* @return {Promise<void>}
|
|
65194
65180
|
*/
|
|
65195
65181
|
async process() {
|
|
65196
|
-
await qx.tool.cli.commands.package.Upgrade.prototype.process.
|
|
65182
|
+
await qx.tool.cli.commands.package.Upgrade.superclass.prototype.process.call(this);
|
|
65197
65183
|
let qxVersion = await this.getAppQxVersion();
|
|
65198
65184
|
await new qx.tool.cli.commands.package.Update({
|
|
65199
65185
|
quiet: true,
|
|
@@ -71535,25 +71521,25 @@ qx.$$packageData['0'] = {
|
|
|
71535
71521
|
"gif",
|
|
71536
71522
|
"qx"
|
|
71537
71523
|
],
|
|
71538
|
-
"qx/decoration/Simple/arrows/
|
|
71524
|
+
"qx/decoration/Simple/arrows/forward.gif": [
|
|
71525
|
+
8,
|
|
71539
71526
|
7,
|
|
71540
|
-
4,
|
|
71541
71527
|
"gif",
|
|
71542
71528
|
"qx"
|
|
71543
71529
|
],
|
|
71544
|
-
"qx/decoration/Simple/arrows/
|
|
71545
|
-
8,
|
|
71530
|
+
"qx/decoration/Simple/arrows/down.gif": [
|
|
71546
71531
|
7,
|
|
71532
|
+
4,
|
|
71547
71533
|
"gif",
|
|
71548
71534
|
"qx"
|
|
71549
71535
|
],
|
|
71550
|
-
"qx/decoration/Simple/arrows/left.gif": [
|
|
71536
|
+
"qx/decoration/Simple/arrows/left-invert.gif": [
|
|
71551
71537
|
4,
|
|
71552
71538
|
7,
|
|
71553
71539
|
"gif",
|
|
71554
71540
|
"qx"
|
|
71555
71541
|
],
|
|
71556
|
-
"qx/decoration/Simple/arrows/left
|
|
71542
|
+
"qx/decoration/Simple/arrows/left.gif": [
|
|
71557
71543
|
4,
|
|
71558
71544
|
7,
|
|
71559
71545
|
"gif",
|
|
@@ -71565,13 +71551,13 @@ qx.$$packageData['0'] = {
|
|
|
71565
71551
|
"gif",
|
|
71566
71552
|
"qx"
|
|
71567
71553
|
],
|
|
71568
|
-
"qx/decoration/Simple/arrows/right.gif": [
|
|
71554
|
+
"qx/decoration/Simple/arrows/right-invert.gif": [
|
|
71569
71555
|
4,
|
|
71570
71556
|
7,
|
|
71571
71557
|
"gif",
|
|
71572
71558
|
"qx"
|
|
71573
71559
|
],
|
|
71574
|
-
"qx/decoration/Simple/arrows/right
|
|
71560
|
+
"qx/decoration/Simple/arrows/right.gif": [
|
|
71575
71561
|
4,
|
|
71576
71562
|
7,
|
|
71577
71563
|
"gif",
|
|
@@ -71607,39 +71593,21 @@ qx.$$packageData['0'] = {
|
|
|
71607
71593
|
"png",
|
|
71608
71594
|
"qx"
|
|
71609
71595
|
],
|
|
71610
|
-
"qx/decoration/Simple/checkbox/checked.png": [
|
|
71611
|
-
6,
|
|
71612
|
-
6,
|
|
71613
|
-
"png",
|
|
71614
|
-
"qx"
|
|
71615
|
-
],
|
|
71616
71596
|
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
71617
71597
|
6,
|
|
71618
71598
|
2,
|
|
71619
71599
|
"png",
|
|
71620
71600
|
"qx"
|
|
71621
71601
|
],
|
|
71622
|
-
"qx/decoration/Simple/
|
|
71623
|
-
|
|
71624
|
-
|
|
71625
|
-
"
|
|
71626
|
-
"qx"
|
|
71627
|
-
],
|
|
71628
|
-
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
71629
|
-
16,
|
|
71630
|
-
7,
|
|
71631
|
-
"gif",
|
|
71632
|
-
"qx"
|
|
71633
|
-
],
|
|
71634
|
-
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
71635
|
-
16,
|
|
71636
|
-
5,
|
|
71637
|
-
"gif",
|
|
71602
|
+
"qx/decoration/Simple/checkbox/checked.png": [
|
|
71603
|
+
6,
|
|
71604
|
+
6,
|
|
71605
|
+
"png",
|
|
71638
71606
|
"qx"
|
|
71639
71607
|
],
|
|
71640
|
-
"qx/decoration/Simple/
|
|
71641
|
-
|
|
71642
|
-
|
|
71608
|
+
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
71609
|
+
35,
|
|
71610
|
+
11,
|
|
71643
71611
|
"gif",
|
|
71644
71612
|
"qx"
|
|
71645
71613
|
],
|
|
@@ -71649,12 +71617,6 @@ qx.$$packageData['0'] = {
|
|
|
71649
71617
|
"png",
|
|
71650
71618
|
"qx"
|
|
71651
71619
|
],
|
|
71652
|
-
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
71653
|
-
35,
|
|
71654
|
-
11,
|
|
71655
|
-
"gif",
|
|
71656
|
-
"qx"
|
|
71657
|
-
],
|
|
71658
71620
|
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
71659
71621
|
256,
|
|
71660
71622
|
256,
|
|
@@ -71667,27 +71629,27 @@ qx.$$packageData['0'] = {
|
|
|
71667
71629
|
"gif",
|
|
71668
71630
|
"qx"
|
|
71669
71631
|
],
|
|
71670
|
-
"qx/decoration/Simple/
|
|
71671
|
-
|
|
71672
|
-
|
|
71632
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
71633
|
+
16,
|
|
71634
|
+
7,
|
|
71673
71635
|
"gif",
|
|
71674
71636
|
"qx"
|
|
71675
71637
|
],
|
|
71676
|
-
"qx/decoration/Simple/
|
|
71677
|
-
|
|
71678
|
-
|
|
71638
|
+
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
71639
|
+
16,
|
|
71640
|
+
7,
|
|
71679
71641
|
"gif",
|
|
71680
71642
|
"qx"
|
|
71681
71643
|
],
|
|
71682
|
-
"qx/decoration/Simple/
|
|
71683
|
-
|
|
71684
|
-
|
|
71644
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
71645
|
+
16,
|
|
71646
|
+
5,
|
|
71685
71647
|
"gif",
|
|
71686
71648
|
"qx"
|
|
71687
71649
|
],
|
|
71688
|
-
"qx/decoration/Simple/
|
|
71689
|
-
|
|
71690
|
-
|
|
71650
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
71651
|
+
16,
|
|
71652
|
+
5,
|
|
71691
71653
|
"gif",
|
|
71692
71654
|
"qx"
|
|
71693
71655
|
],
|
|
@@ -71709,12 +71671,6 @@ qx.$$packageData['0'] = {
|
|
|
71709
71671
|
"png",
|
|
71710
71672
|
"qx"
|
|
71711
71673
|
],
|
|
71712
|
-
"qx/decoration/Simple/table/ascending.png": [
|
|
71713
|
-
10,
|
|
71714
|
-
10,
|
|
71715
|
-
"png",
|
|
71716
|
-
"qx"
|
|
71717
|
-
],
|
|
71718
71674
|
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
71719
71675
|
10,
|
|
71720
71676
|
10,
|
|
@@ -71727,6 +71683,12 @@ qx.$$packageData['0'] = {
|
|
|
71727
71683
|
"png",
|
|
71728
71684
|
"qx"
|
|
71729
71685
|
],
|
|
71686
|
+
"qx/decoration/Simple/table/ascending.png": [
|
|
71687
|
+
10,
|
|
71688
|
+
10,
|
|
71689
|
+
"png",
|
|
71690
|
+
"qx"
|
|
71691
|
+
],
|
|
71730
71692
|
"qx/decoration/Simple/table/descending-invert.png": [
|
|
71731
71693
|
10,
|
|
71732
71694
|
10,
|
|
@@ -71745,141 +71707,165 @@ qx.$$packageData['0'] = {
|
|
|
71745
71707
|
"png",
|
|
71746
71708
|
"qx"
|
|
71747
71709
|
],
|
|
71748
|
-
"qx/decoration/Simple/
|
|
71749
|
-
|
|
71750
|
-
|
|
71710
|
+
"qx/decoration/Simple/tabview/close.gif": [
|
|
71711
|
+
10,
|
|
71712
|
+
9,
|
|
71751
71713
|
"gif",
|
|
71752
71714
|
"qx"
|
|
71753
71715
|
],
|
|
71754
|
-
"qx/decoration/Simple/
|
|
71716
|
+
"qx/decoration/Simple/cursors/alias.gif": [
|
|
71755
71717
|
19,
|
|
71756
|
-
|
|
71718
|
+
15,
|
|
71757
71719
|
"gif",
|
|
71758
71720
|
"qx"
|
|
71759
71721
|
],
|
|
71760
|
-
"qx/decoration/Simple/
|
|
71761
|
-
|
|
71762
|
-
|
|
71722
|
+
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
71723
|
+
20,
|
|
71724
|
+
20,
|
|
71763
71725
|
"gif",
|
|
71764
71726
|
"qx"
|
|
71765
71727
|
],
|
|
71766
|
-
"qx/decoration/Simple/
|
|
71728
|
+
"qx/decoration/Simple/cursors/copy.gif": [
|
|
71767
71729
|
19,
|
|
71768
|
-
|
|
71730
|
+
15,
|
|
71769
71731
|
"gif",
|
|
71770
71732
|
"qx"
|
|
71771
71733
|
],
|
|
71772
|
-
"qx/decoration/Simple/
|
|
71773
|
-
|
|
71774
|
-
|
|
71734
|
+
"qx/decoration/Simple/cursors/move.gif": [
|
|
71735
|
+
13,
|
|
71736
|
+
9,
|
|
71775
71737
|
"gif",
|
|
71776
71738
|
"qx"
|
|
71777
71739
|
],
|
|
71778
|
-
"qx/decoration/Simple/
|
|
71740
|
+
"qx/decoration/Simple/tree/minus.gif": [
|
|
71779
71741
|
19,
|
|
71780
71742
|
16,
|
|
71781
71743
|
"gif",
|
|
71782
71744
|
"qx"
|
|
71783
71745
|
],
|
|
71784
|
-
"qx/decoration/Simple/
|
|
71746
|
+
"qx/decoration/Simple/tree/plus.gif": [
|
|
71785
71747
|
19,
|
|
71786
71748
|
16,
|
|
71787
71749
|
"gif",
|
|
71788
71750
|
"qx"
|
|
71789
71751
|
],
|
|
71790
|
-
"qx/decoration/Simple/
|
|
71791
|
-
|
|
71792
|
-
|
|
71752
|
+
"qx/decoration/Simple/window/close-white.gif": [
|
|
71753
|
+
10,
|
|
71754
|
+
9,
|
|
71793
71755
|
"gif",
|
|
71794
71756
|
"qx"
|
|
71795
71757
|
],
|
|
71796
|
-
"qx/decoration/Simple/
|
|
71797
|
-
|
|
71798
|
-
|
|
71758
|
+
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
71759
|
+
9,
|
|
71760
|
+
9,
|
|
71799
71761
|
"gif",
|
|
71800
71762
|
"qx"
|
|
71801
71763
|
],
|
|
71802
|
-
"qx/decoration/Simple/
|
|
71803
|
-
|
|
71804
|
-
|
|
71764
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
71765
|
+
10,
|
|
71766
|
+
9,
|
|
71805
71767
|
"gif",
|
|
71806
71768
|
"qx"
|
|
71807
71769
|
],
|
|
71808
|
-
"qx/decoration/Simple/
|
|
71809
|
-
|
|
71810
|
-
|
|
71770
|
+
"qx/decoration/Simple/window/maximize.gif": [
|
|
71771
|
+
9,
|
|
71772
|
+
9,
|
|
71811
71773
|
"gif",
|
|
71812
71774
|
"qx"
|
|
71813
71775
|
],
|
|
71814
|
-
"qx/decoration/Simple/
|
|
71776
|
+
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
71777
|
+
9,
|
|
71778
|
+
9,
|
|
71779
|
+
"gif",
|
|
71780
|
+
"qx"
|
|
71781
|
+
],
|
|
71782
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
71783
|
+
9,
|
|
71784
|
+
9,
|
|
71785
|
+
"gif",
|
|
71786
|
+
"qx"
|
|
71787
|
+
],
|
|
71788
|
+
"qx/decoration/Simple/window/restore-white.gif": [
|
|
71789
|
+
8,
|
|
71790
|
+
9,
|
|
71791
|
+
"gif",
|
|
71792
|
+
"qx"
|
|
71793
|
+
],
|
|
71794
|
+
"qx/decoration/Simple/window/restore.gif": [
|
|
71795
|
+
8,
|
|
71796
|
+
9,
|
|
71797
|
+
"gif",
|
|
71798
|
+
"qx"
|
|
71799
|
+
],
|
|
71800
|
+
"qx/decoration/Simple/treevirtual/cross.gif": [
|
|
71815
71801
|
19,
|
|
71816
71802
|
16,
|
|
71817
71803
|
"gif",
|
|
71818
71804
|
"qx"
|
|
71819
71805
|
],
|
|
71820
|
-
"qx/decoration/Simple/
|
|
71806
|
+
"qx/decoration/Simple/treevirtual/cross_minus.gif": [
|
|
71821
71807
|
19,
|
|
71822
71808
|
16,
|
|
71823
71809
|
"gif",
|
|
71824
71810
|
"qx"
|
|
71825
71811
|
],
|
|
71826
|
-
"qx/decoration/Simple/
|
|
71812
|
+
"qx/decoration/Simple/treevirtual/cross_plus.gif": [
|
|
71827
71813
|
19,
|
|
71828
71814
|
16,
|
|
71829
71815
|
"gif",
|
|
71830
71816
|
"qx"
|
|
71831
71817
|
],
|
|
71832
|
-
"qx/decoration/Simple/
|
|
71833
|
-
|
|
71834
|
-
|
|
71818
|
+
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
71819
|
+
19,
|
|
71820
|
+
16,
|
|
71835
71821
|
"gif",
|
|
71836
71822
|
"qx"
|
|
71837
71823
|
],
|
|
71838
|
-
"qx/decoration/Simple/
|
|
71839
|
-
|
|
71840
|
-
|
|
71824
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
71825
|
+
19,
|
|
71826
|
+
16,
|
|
71841
71827
|
"gif",
|
|
71842
71828
|
"qx"
|
|
71843
71829
|
],
|
|
71844
|
-
"qx/decoration/Simple/
|
|
71845
|
-
|
|
71846
|
-
|
|
71830
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
71831
|
+
19,
|
|
71832
|
+
16,
|
|
71847
71833
|
"gif",
|
|
71848
71834
|
"qx"
|
|
71849
71835
|
],
|
|
71850
|
-
"qx/decoration/Simple/
|
|
71851
|
-
|
|
71852
|
-
|
|
71836
|
+
"qx/decoration/Simple/treevirtual/only_plus.gif": [
|
|
71837
|
+
19,
|
|
71838
|
+
16,
|
|
71853
71839
|
"gif",
|
|
71854
71840
|
"qx"
|
|
71855
71841
|
],
|
|
71856
|
-
"qx/decoration/Simple/
|
|
71857
|
-
|
|
71858
|
-
|
|
71842
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
71843
|
+
19,
|
|
71844
|
+
16,
|
|
71859
71845
|
"gif",
|
|
71860
71846
|
"qx"
|
|
71861
71847
|
],
|
|
71862
|
-
"qx/decoration/Simple/
|
|
71863
|
-
|
|
71864
|
-
|
|
71848
|
+
"qx/decoration/Simple/treevirtual/only_minus.gif": [
|
|
71849
|
+
19,
|
|
71850
|
+
16,
|
|
71865
71851
|
"gif",
|
|
71866
71852
|
"qx"
|
|
71867
71853
|
],
|
|
71868
|
-
"qx/decoration/Simple/
|
|
71869
|
-
|
|
71870
|
-
|
|
71854
|
+
"qx/decoration/Simple/treevirtual/start.gif": [
|
|
71855
|
+
19,
|
|
71856
|
+
16,
|
|
71871
71857
|
"gif",
|
|
71872
71858
|
"qx"
|
|
71873
71859
|
],
|
|
71874
|
-
"qx/decoration/Simple/
|
|
71875
|
-
|
|
71876
|
-
|
|
71860
|
+
"qx/decoration/Simple/treevirtual/start_minus.gif": [
|
|
71861
|
+
19,
|
|
71862
|
+
16,
|
|
71877
71863
|
"gif",
|
|
71878
71864
|
"qx"
|
|
71879
71865
|
],
|
|
71880
|
-
"qx/decoration/Simple/
|
|
71881
|
-
|
|
71882
|
-
|
|
71866
|
+
"qx/decoration/Simple/treevirtual/start_plus.gif": [
|
|
71867
|
+
19,
|
|
71868
|
+
16,
|
|
71883
71869
|
"gif",
|
|
71884
71870
|
"qx"
|
|
71885
71871
|
],
|
|
@@ -71895,19 +71881,19 @@ qx.$$packageData['0'] = {
|
|
|
71895
71881
|
"js",
|
|
71896
71882
|
"qx"
|
|
71897
71883
|
],
|
|
71898
|
-
"qx/tool/bin/
|
|
71884
|
+
"qx/tool/bin/download-assets": [
|
|
71899
71885
|
null,
|
|
71900
71886
|
null,
|
|
71901
71887
|
"",
|
|
71902
71888
|
"qx"
|
|
71903
71889
|
],
|
|
71904
|
-
"qx/tool/bin/build-
|
|
71890
|
+
"qx/tool/bin/build-devtools": [
|
|
71905
71891
|
null,
|
|
71906
71892
|
null,
|
|
71907
71893
|
"",
|
|
71908
71894
|
"qx"
|
|
71909
71895
|
],
|
|
71910
|
-
"qx/tool/bin/
|
|
71896
|
+
"qx/tool/bin/build-website": [
|
|
71911
71897
|
null,
|
|
71912
71898
|
null,
|
|
71913
71899
|
"",
|
|
@@ -71925,12 +71911,6 @@ qx.$$packageData['0'] = {
|
|
|
71925
71911
|
"json",
|
|
71926
71912
|
"qx"
|
|
71927
71913
|
],
|
|
71928
|
-
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
71929
|
-
null,
|
|
71930
|
-
null,
|
|
71931
|
-
"json",
|
|
71932
|
-
"qx"
|
|
71933
|
-
],
|
|
71934
71914
|
"qx/tool/schema/qooxdoo-1-0-0.json": [
|
|
71935
71915
|
null,
|
|
71936
71916
|
null,
|
|
@@ -71943,10 +71923,10 @@ qx.$$packageData['0'] = {
|
|
|
71943
71923
|
"",
|
|
71944
71924
|
"qx"
|
|
71945
71925
|
],
|
|
71946
|
-
"qx/tool/
|
|
71926
|
+
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
71947
71927
|
null,
|
|
71948
71928
|
null,
|
|
71949
|
-
"
|
|
71929
|
+
"json",
|
|
71950
71930
|
"qx"
|
|
71951
71931
|
],
|
|
71952
71932
|
"qx/tool/cli/templates/template_vars.js": [
|
|
@@ -71955,6 +71935,12 @@ qx.$$packageData['0'] = {
|
|
|
71955
71935
|
"js",
|
|
71956
71936
|
"qx"
|
|
71957
71937
|
],
|
|
71938
|
+
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt": [
|
|
71939
|
+
null,
|
|
71940
|
+
null,
|
|
71941
|
+
"txt",
|
|
71942
|
+
"qx"
|
|
71943
|
+
],
|
|
71958
71944
|
"qx/tool/website/build/404.html": [
|
|
71959
71945
|
null,
|
|
71960
71946
|
null,
|
|
@@ -71979,10 +71965,16 @@ qx.$$packageData['0'] = {
|
|
|
71979
71965
|
"css",
|
|
71980
71966
|
"qx"
|
|
71981
71967
|
],
|
|
71982
|
-
"qx/tool/website/
|
|
71968
|
+
"qx/tool/website/layouts/default.dot": [
|
|
71983
71969
|
null,
|
|
71984
71970
|
null,
|
|
71985
|
-
"
|
|
71971
|
+
"dot",
|
|
71972
|
+
"qx"
|
|
71973
|
+
],
|
|
71974
|
+
"qx/tool/website/sass/qooxdoo.scss": [
|
|
71975
|
+
null,
|
|
71976
|
+
null,
|
|
71977
|
+
"scss",
|
|
71986
71978
|
"qx"
|
|
71987
71979
|
],
|
|
71988
71980
|
"qx/tool/website/partials/footer.html": [
|
|
@@ -71991,13 +71983,13 @@ qx.$$packageData['0'] = {
|
|
|
71991
71983
|
"html",
|
|
71992
71984
|
"qx"
|
|
71993
71985
|
],
|
|
71994
|
-
"qx/tool/website/partials/
|
|
71986
|
+
"qx/tool/website/partials/head.html": [
|
|
71995
71987
|
null,
|
|
71996
71988
|
null,
|
|
71997
71989
|
"html",
|
|
71998
71990
|
"qx"
|
|
71999
71991
|
],
|
|
72000
|
-
"qx/tool/website/partials/
|
|
71992
|
+
"qx/tool/website/partials/header.html": [
|
|
72001
71993
|
null,
|
|
72002
71994
|
null,
|
|
72003
71995
|
"html",
|
|
@@ -72009,28 +72001,22 @@ qx.$$packageData['0'] = {
|
|
|
72009
72001
|
"svg",
|
|
72010
72002
|
"qx"
|
|
72011
72003
|
],
|
|
72012
|
-
"qx/tool/website/partials/icon-
|
|
72013
|
-
16,
|
|
72014
|
-
16,
|
|
72015
|
-
"svg",
|
|
72016
|
-
"qx"
|
|
72017
|
-
],
|
|
72018
|
-
"qx/tool/website/partials/icon-twitter.html": [
|
|
72004
|
+
"qx/tool/website/partials/icon-github.html": [
|
|
72019
72005
|
null,
|
|
72020
72006
|
null,
|
|
72021
72007
|
"html",
|
|
72022
72008
|
"qx"
|
|
72023
72009
|
],
|
|
72024
|
-
"qx/tool/website/
|
|
72010
|
+
"qx/tool/website/partials/icon-twitter.html": [
|
|
72025
72011
|
null,
|
|
72026
72012
|
null,
|
|
72027
|
-
"
|
|
72013
|
+
"html",
|
|
72028
72014
|
"qx"
|
|
72029
72015
|
],
|
|
72030
|
-
"qx/tool/website/
|
|
72031
|
-
|
|
72032
|
-
|
|
72033
|
-
"
|
|
72016
|
+
"qx/tool/website/partials/icon-twitter.svg": [
|
|
72017
|
+
16,
|
|
72018
|
+
16,
|
|
72019
|
+
"svg",
|
|
72034
72020
|
"qx"
|
|
72035
72021
|
],
|
|
72036
72022
|
"qx/tool/website/src/404.html": [
|
|
@@ -72069,13 +72055,13 @@ qx.$$packageData['0'] = {
|
|
|
72069
72055
|
"js",
|
|
72070
72056
|
"qx"
|
|
72071
72057
|
],
|
|
72072
|
-
"qx/tool/cli/templates/class/
|
|
72058
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
72073
72059
|
null,
|
|
72074
72060
|
null,
|
|
72075
72061
|
"js",
|
|
72076
72062
|
"qx"
|
|
72077
72063
|
],
|
|
72078
|
-
"qx/tool/cli/templates/class/
|
|
72064
|
+
"qx/tool/cli/templates/class/singleton.tmpl.js": [
|
|
72079
72065
|
null,
|
|
72080
72066
|
null,
|
|
72081
72067
|
"js",
|
|
@@ -72117,22 +72103,16 @@ qx.$$packageData['0'] = {
|
|
|
72117
72103
|
"css",
|
|
72118
72104
|
"qx"
|
|
72119
72105
|
],
|
|
72120
|
-
"qx/tool/website/build/assets/bootstrap.min.css.map": [
|
|
72121
|
-
null,
|
|
72122
|
-
null,
|
|
72123
|
-
"map",
|
|
72124
|
-
"qx"
|
|
72125
|
-
],
|
|
72126
72106
|
"qx/tool/website/build/assets/bootstrap.min.css": [
|
|
72127
72107
|
null,
|
|
72128
72108
|
null,
|
|
72129
72109
|
"css",
|
|
72130
72110
|
"qx"
|
|
72131
72111
|
],
|
|
72132
|
-
"qx/tool/website/build/assets/
|
|
72112
|
+
"qx/tool/website/build/assets/bootstrap.min.css.map": [
|
|
72133
72113
|
null,
|
|
72134
72114
|
null,
|
|
72135
|
-
"
|
|
72115
|
+
"map",
|
|
72136
72116
|
"qx"
|
|
72137
72117
|
],
|
|
72138
72118
|
"qx/tool/website/build/assets/favicon.png": [
|
|
@@ -72141,16 +72121,16 @@ qx.$$packageData['0'] = {
|
|
|
72141
72121
|
"png",
|
|
72142
72122
|
"qx"
|
|
72143
72123
|
],
|
|
72144
|
-
"qx/tool/website/build/assets/
|
|
72124
|
+
"qx/tool/website/build/assets/buttons.js": [
|
|
72145
72125
|
null,
|
|
72146
72126
|
null,
|
|
72147
72127
|
"js",
|
|
72148
72128
|
"qx"
|
|
72149
72129
|
],
|
|
72150
|
-
"qx/tool/website/build/assets/
|
|
72151
|
-
|
|
72152
|
-
|
|
72153
|
-
"
|
|
72130
|
+
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
72131
|
+
null,
|
|
72132
|
+
null,
|
|
72133
|
+
"js",
|
|
72154
72134
|
"qx"
|
|
72155
72135
|
],
|
|
72156
72136
|
"qx/tool/website/build/assets/jquery.js": [
|
|
@@ -72159,6 +72139,12 @@ qx.$$packageData['0'] = {
|
|
|
72159
72139
|
"js",
|
|
72160
72140
|
"qx"
|
|
72161
72141
|
],
|
|
72142
|
+
"qx/tool/website/build/assets/logo.svg": [
|
|
72143
|
+
512,
|
|
72144
|
+
145,
|
|
72145
|
+
"svg",
|
|
72146
|
+
"qx"
|
|
72147
|
+
],
|
|
72162
72148
|
"qx/tool/website/build/assets/qx-api.png": [
|
|
72163
72149
|
1144,
|
|
72164
72150
|
640,
|
|
@@ -72231,22 +72217,16 @@ qx.$$packageData['0'] = {
|
|
|
72231
72217
|
"css",
|
|
72232
72218
|
"qx"
|
|
72233
72219
|
],
|
|
72234
|
-
"qx/tool/website/src/assets/bootstrap.min.css.map": [
|
|
72235
|
-
null,
|
|
72236
|
-
null,
|
|
72237
|
-
"map",
|
|
72238
|
-
"qx"
|
|
72239
|
-
],
|
|
72240
72220
|
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72241
72221
|
null,
|
|
72242
72222
|
null,
|
|
72243
72223
|
"css",
|
|
72244
72224
|
"qx"
|
|
72245
72225
|
],
|
|
72246
|
-
"qx/tool/website/src/assets/
|
|
72226
|
+
"qx/tool/website/src/assets/bootstrap.min.css.map": [
|
|
72247
72227
|
null,
|
|
72248
72228
|
null,
|
|
72249
|
-
"
|
|
72229
|
+
"map",
|
|
72250
72230
|
"qx"
|
|
72251
72231
|
],
|
|
72252
72232
|
"qx/tool/website/src/assets/favicon.png": [
|
|
@@ -72255,6 +72235,12 @@ qx.$$packageData['0'] = {
|
|
|
72255
72235
|
"png",
|
|
72256
72236
|
"qx"
|
|
72257
72237
|
],
|
|
72238
|
+
"qx/tool/website/src/assets/buttons.js": [
|
|
72239
|
+
null,
|
|
72240
|
+
null,
|
|
72241
|
+
"js",
|
|
72242
|
+
"qx"
|
|
72243
|
+
],
|
|
72258
72244
|
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
72259
72245
|
null,
|
|
72260
72246
|
null,
|
|
@@ -72297,19 +72283,19 @@ qx.$$packageData['0'] = {
|
|
|
72297
72283
|
"svg",
|
|
72298
72284
|
"qx"
|
|
72299
72285
|
],
|
|
72300
|
-
"qx/tool/website/src/
|
|
72286
|
+
"qx/tool/website/src/scripts/serve.js": [
|
|
72301
72287
|
null,
|
|
72302
72288
|
null,
|
|
72303
|
-
"
|
|
72289
|
+
"js",
|
|
72304
72290
|
"qx"
|
|
72305
72291
|
],
|
|
72306
|
-
"qx/tool/website/src/diagnostics/dependson.
|
|
72292
|
+
"qx/tool/website/src/diagnostics/dependson.html": [
|
|
72307
72293
|
null,
|
|
72308
72294
|
null,
|
|
72309
|
-
"
|
|
72295
|
+
"html",
|
|
72310
72296
|
"qx"
|
|
72311
72297
|
],
|
|
72312
|
-
"qx/tool/website/src/diagnostics/
|
|
72298
|
+
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
72313
72299
|
null,
|
|
72314
72300
|
null,
|
|
72315
72301
|
"js",
|
|
@@ -72321,7 +72307,7 @@ qx.$$packageData['0'] = {
|
|
|
72321
72307
|
"html",
|
|
72322
72308
|
"qx"
|
|
72323
72309
|
],
|
|
72324
|
-
"qx/tool/website/src/
|
|
72310
|
+
"qx/tool/website/src/diagnostics/requiredby.js": [
|
|
72325
72311
|
null,
|
|
72326
72312
|
null,
|
|
72327
72313
|
"js",
|
|
@@ -72339,16 +72325,16 @@ qx.$$packageData['0'] = {
|
|
|
72339
72325
|
"json",
|
|
72340
72326
|
"qx"
|
|
72341
72327
|
],
|
|
72342
|
-
"qx/tool/cli/templates/skeleton/desktop/
|
|
72328
|
+
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
|
|
72343
72329
|
null,
|
|
72344
72330
|
null,
|
|
72345
|
-
"
|
|
72331
|
+
"json",
|
|
72346
72332
|
"qx"
|
|
72347
72333
|
],
|
|
72348
|
-
"qx/tool/cli/templates/skeleton/desktop/
|
|
72334
|
+
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
|
|
72349
72335
|
null,
|
|
72350
72336
|
null,
|
|
72351
|
-
"
|
|
72337
|
+
"md",
|
|
72352
72338
|
"qx"
|
|
72353
72339
|
],
|
|
72354
72340
|
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
|
|
@@ -72381,13 +72367,13 @@ qx.$$packageData['0'] = {
|
|
|
72381
72367
|
"tmpl",
|
|
72382
72368
|
"qx"
|
|
72383
72369
|
],
|
|
72384
|
-
"qx/tool/cli/templates/skeleton/package/
|
|
72370
|
+
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
|
|
72385
72371
|
null,
|
|
72386
72372
|
null,
|
|
72387
72373
|
"json",
|
|
72388
72374
|
"qx"
|
|
72389
72375
|
],
|
|
72390
|
-
"qx/tool/cli/templates/skeleton/package/
|
|
72376
|
+
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
|
|
72391
72377
|
null,
|
|
72392
72378
|
null,
|
|
72393
72379
|
"json",
|
|
@@ -72441,13 +72427,13 @@ qx.$$packageData['0'] = {
|
|
|
72441
72427
|
"txt",
|
|
72442
72428
|
"qx"
|
|
72443
72429
|
],
|
|
72444
|
-
"qx/tool/cli/templates/skeleton/mobile/source/boot/
|
|
72430
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
72445
72431
|
null,
|
|
72446
72432
|
null,
|
|
72447
72433
|
"html",
|
|
72448
72434
|
"qx"
|
|
72449
72435
|
],
|
|
72450
|
-
"qx/tool/cli/templates/skeleton/mobile/source/boot/
|
|
72436
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
72451
72437
|
null,
|
|
72452
72438
|
null,
|
|
72453
72439
|
"html",
|
|
@@ -72537,12 +72523,6 @@ qx.$$packageData['0'] = {
|
|
|
72537
72523
|
"js",
|
|
72538
72524
|
"qx"
|
|
72539
72525
|
],
|
|
72540
|
-
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
72541
|
-
32,
|
|
72542
|
-
32,
|
|
72543
|
-
"png",
|
|
72544
|
-
"qx"
|
|
72545
|
-
],
|
|
72546
72526
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
72547
72527
|
null,
|
|
72548
72528
|
null,
|
|
@@ -72555,10 +72535,10 @@ qx.$$packageData['0'] = {
|
|
|
72555
72535
|
"js",
|
|
72556
72536
|
"qx"
|
|
72557
72537
|
],
|
|
72558
|
-
"qx/tool/cli/templates/skeleton/
|
|
72559
|
-
|
|
72560
|
-
|
|
72561
|
-
"
|
|
72538
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
72539
|
+
32,
|
|
72540
|
+
32,
|
|
72541
|
+
"png",
|
|
72562
72542
|
"qx"
|
|
72563
72543
|
],
|
|
72564
72544
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
@@ -72573,6 +72553,12 @@ qx.$$packageData['0'] = {
|
|
|
72573
72553
|
"js",
|
|
72574
72554
|
"qx"
|
|
72575
72555
|
],
|
|
72556
|
+
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
|
|
72557
|
+
null,
|
|
72558
|
+
null,
|
|
72559
|
+
"tmpl",
|
|
72560
|
+
"qx"
|
|
72561
|
+
],
|
|
72576
72562
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
72577
72563
|
null,
|
|
72578
72564
|
null,
|
|
@@ -72615,34 +72601,34 @@ qx.$$packageData['0'] = {
|
|
|
72615
72601
|
"tmpl",
|
|
72616
72602
|
"qx"
|
|
72617
72603
|
],
|
|
72618
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
72604
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
72619
72605
|
null,
|
|
72620
72606
|
null,
|
|
72621
|
-
"
|
|
72607
|
+
"scss",
|
|
72622
72608
|
"qx"
|
|
72623
72609
|
],
|
|
72624
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
72610
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
72625
72611
|
null,
|
|
72626
72612
|
null,
|
|
72627
|
-
"
|
|
72613
|
+
"scss",
|
|
72628
72614
|
"qx"
|
|
72629
72615
|
],
|
|
72630
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/
|
|
72616
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
72631
72617
|
null,
|
|
72632
72618
|
null,
|
|
72633
72619
|
"js",
|
|
72634
72620
|
"qx"
|
|
72635
72621
|
],
|
|
72636
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
72622
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
72637
72623
|
null,
|
|
72638
72624
|
null,
|
|
72639
|
-
"
|
|
72625
|
+
"js",
|
|
72640
72626
|
"qx"
|
|
72641
72627
|
],
|
|
72642
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
72628
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
72643
72629
|
null,
|
|
72644
72630
|
null,
|
|
72645
|
-
"
|
|
72631
|
+
"js",
|
|
72646
72632
|
"qx"
|
|
72647
72633
|
],
|
|
72648
72634
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|