@qooxdoo/framework 7.3.3 → 7.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Manifest.json +1 -1
- package/lib/compiler/compile-info.json +65 -65
- package/lib/compiler/index.js +390 -313
- package/lib/resource/qx/tool/cli/templates/template_vars.js +0 -6
- package/lib/resource/qx/tool/schema/compile-1-0-0.json +7 -4
- package/package.json +1 -1
- package/source/class/qx/test/bom/media/MediaTestCase.js +1 -1
- package/source/class/qx/test/io/transport/Websocket.js +1 -1
- package/source/class/qx/test/ui/form/Form.js +5 -1
- package/source/class/qx/test/util/DeferredCall.js +4 -0
- package/source/class/qx/tool/cli/Cli.js +3 -2
- package/source/class/qx/tool/cli/Watch.js +18 -4
- package/source/class/qx/tool/cli/commands/Command.js +9 -1
- package/source/class/qx/tool/cli/commands/Compile.js +9 -18
- package/source/class/qx/tool/cli/commands/Run.js +1 -1
- package/source/class/qx/tool/cli/commands/Serve.js +1 -1
- package/source/class/qx/tool/compiler/ClassFile.js +6 -6
- package/source/class/qx/tool/compiler/makers/AppMaker.js +14 -3
- package/source/class/qx/tool/compiler/targets/meta/Browserify.js +97 -55
- package/source/class/qx/tool/utils/Utils.js +4 -1
- package/source/class/qx/ui/core/scroll/MRoll.js +0 -5
- package/source/class/qx/ui/form/MForm.js +2 -2
- package/source/class/qx/ui/form/validation/Manager.js +18 -11
- package/source/class/qxWeb.js +0 -1
- package/source/resource/qx/tool/cli/templates/template_vars.js +0 -6
- package/source/resource/qx/tool/schema/compile-1-0-0.json +7 -4
- package/npm-shrinkwrap.json +0 -8243
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.
|
|
99
|
+
"qx.version": "7.4.1",
|
|
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.
|
|
131
|
+
"qx.compiler.version": "7.4.1",
|
|
132
132
|
"qx.headless": true,
|
|
133
133
|
"qx.compiler.applicationType": "node",
|
|
134
134
|
"qx.compiler.applicationName": "compiler"
|
|
@@ -35509,7 +35509,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35509
35509
|
});
|
|
35510
35510
|
}
|
|
35511
35511
|
|
|
35512
|
-
|
|
35512
|
+
let targetType = this._compilerApi.getCommand().getTargetType();
|
|
35513
35513
|
|
|
35514
35514
|
if (!config.locales) {
|
|
35515
35515
|
config.locales = [];
|
|
@@ -35527,7 +35527,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35527
35527
|
|
|
35528
35528
|
|
|
35529
35529
|
if (config.targets) {
|
|
35530
|
-
const target = config.targets.find(target => target.type ===
|
|
35530
|
+
const target = config.targets.find(target => target.type === targetType);
|
|
35531
35531
|
target.environment = target.environment || {};
|
|
35532
35532
|
qx.lang.Object.mergeWith(target.environment, parsedArgs.environment, true);
|
|
35533
35533
|
}
|
|
@@ -36534,7 +36534,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
36534
36534
|
* @return {String}
|
|
36535
36535
|
*/
|
|
36536
36536
|
getCompilerVersion() {
|
|
36537
|
-
return "7.
|
|
36537
|
+
return "7.4.1";
|
|
36538
36538
|
},
|
|
36539
36539
|
|
|
36540
36540
|
/**
|
|
@@ -37412,6 +37412,14 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
37412
37412
|
} catch (e) {
|
|
37413
37413
|
throw new qx.tool.utils.Utils.UserError(e.message);
|
|
37414
37414
|
}
|
|
37415
|
+
},
|
|
37416
|
+
|
|
37417
|
+
/**
|
|
37418
|
+
* Returns the calculated target type
|
|
37419
|
+
* @returns {String}
|
|
37420
|
+
*/
|
|
37421
|
+
getTargetType() {
|
|
37422
|
+
return this.argv.target || this.getCompilerApi().getConfiguration().defaultTarget || "source";
|
|
37415
37423
|
}
|
|
37416
37424
|
|
|
37417
37425
|
}
|
|
@@ -39094,6 +39102,12 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
39094
39102
|
const child_process = require("child_process");
|
|
39095
39103
|
|
|
39096
39104
|
const psTree = require("ps-tree");
|
|
39105
|
+
/**
|
|
39106
|
+
* @ignore(process)
|
|
39107
|
+
*/
|
|
39108
|
+
|
|
39109
|
+
/* global process */
|
|
39110
|
+
|
|
39097
39111
|
/**
|
|
39098
39112
|
* Utility methods
|
|
39099
39113
|
*/
|
|
@@ -45245,6 +45259,16 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45245
45259
|
if (dir && !dirs.includes(dir)) {
|
|
45246
45260
|
dirs.push(dir);
|
|
45247
45261
|
}
|
|
45262
|
+
|
|
45263
|
+
let localModules = application.getLocalModules();
|
|
45264
|
+
|
|
45265
|
+
for (let requireName in localModules) {
|
|
45266
|
+
let dir = localModules[requireName];
|
|
45267
|
+
|
|
45268
|
+
if (dir && !dirs.includes(dir)) {
|
|
45269
|
+
dirs.push(dir);
|
|
45270
|
+
}
|
|
45271
|
+
}
|
|
45248
45272
|
});
|
|
45249
45273
|
|
|
45250
45274
|
if (this.isDebug()) {
|
|
@@ -45345,12 +45369,19 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45345
45369
|
data.dependsOn = {};
|
|
45346
45370
|
var deps = data.application.getDependencies();
|
|
45347
45371
|
deps.forEach(function (classname) {
|
|
45348
|
-
|
|
45349
|
-
|
|
45350
|
-
|
|
45351
|
-
|
|
45372
|
+
let info = db.classInfo[classname];
|
|
45373
|
+
let lib = analyser.findLibrary(info.libraryName);
|
|
45374
|
+
let parts = [lib.getRootDir(), lib.getSourcePath()].concat(classname.split("."));
|
|
45375
|
+
let filename = path.resolve.apply(path, parts) + ".js";
|
|
45352
45376
|
data.dependsOn[filename] = true;
|
|
45353
45377
|
});
|
|
45378
|
+
let localModules = data.application.getLocalModules();
|
|
45379
|
+
|
|
45380
|
+
for (let requireName in localModules) {
|
|
45381
|
+
let filename = path.resolve(localModules[requireName]);
|
|
45382
|
+
data.dependsOn[filename] = true;
|
|
45383
|
+
}
|
|
45384
|
+
|
|
45354
45385
|
var filename = path.resolve(data.application.getLoaderTemplate());
|
|
45355
45386
|
promises.push(qx.tool.utils.files.Utils.correctCase(filename).then(filename => data.dependsOn[filename] = true));
|
|
45356
45387
|
});
|
|
@@ -45842,7 +45873,6 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45842
45873
|
"qx.tool.compiler.Console": {
|
|
45843
45874
|
"defer": "runtime"
|
|
45844
45875
|
},
|
|
45845
|
-
"qx.tool.cli.Cli": {},
|
|
45846
45876
|
"qx.tool.utils.Utils": {},
|
|
45847
45877
|
"qx.Promise": {},
|
|
45848
45878
|
"qx.tool.utils.files.Utils": {},
|
|
@@ -46177,8 +46207,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
46177
46207
|
__P_8_0: null,
|
|
46178
46208
|
__P_8_1: null,
|
|
46179
46209
|
__P_8_2: null,
|
|
46180
|
-
__P_8_3:
|
|
46181
|
-
__P_8_4: false,
|
|
46210
|
+
__P_8_3: false,
|
|
46182
46211
|
|
|
46183
46212
|
/*
|
|
46184
46213
|
* @Override
|
|
@@ -46281,7 +46310,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46281
46310
|
this.addListener("writtenApplications", e => {
|
|
46282
46311
|
if (this.argv.verbose) {
|
|
46283
46312
|
qx.tool.compiler.Console.log("\nCompleted all applications, libraries used are:");
|
|
46284
|
-
Object.values(this.
|
|
46313
|
+
Object.values(this.__P_8_2).forEach(lib => qx.tool.compiler.Console.log(` ${lib.getNamespace()} (${lib.getRootDir()})`));
|
|
46285
46314
|
}
|
|
46286
46315
|
});
|
|
46287
46316
|
await this._loadConfigAndStartMaking();
|
|
@@ -46295,7 +46324,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46295
46324
|
success = false;
|
|
46296
46325
|
}
|
|
46297
46326
|
|
|
46298
|
-
if (!this.argv.deploying && !this.argv["machine-readable"] && this.argv["feedback"] && this.
|
|
46327
|
+
if (!this.argv.deploying && !this.argv["machine-readable"] && this.argv["feedback"] && this.__P_8_3 && this.argv.target === "build") {
|
|
46299
46328
|
qx.tool.compiler.Console.warn(" *******************************************************************************************\n ** **\n ** Your compilation will include temporary files that are only necessary during **\n ** development; these files speed up the compilation, but take up space that you would **\n ** probably not want to put on a production server. **\n ** **\n ** When you are ready to deploy, try running `qx deploy` to get a minimised version **\n ** **\n *******************************************************************************************");
|
|
46300
46329
|
}
|
|
46301
46330
|
|
|
@@ -46309,12 +46338,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46309
46338
|
* @return {Boolean} true if all makers succeeded
|
|
46310
46339
|
*/
|
|
46311
46340
|
async _loadConfigAndStartMaking() {
|
|
46312
|
-
var config = this.
|
|
46313
|
-
|
|
46314
|
-
if (!config) {
|
|
46315
|
-
throw new qx.tool.utils.Utils.UserError("Error: Cannot find any configuration");
|
|
46316
|
-
}
|
|
46317
|
-
|
|
46341
|
+
var config = this.getCompilerApi().getConfiguration();
|
|
46318
46342
|
var makers = this.__P_8_1 = await this.createMakersFromConfig(config);
|
|
46319
46343
|
|
|
46320
46344
|
if (!makers || !makers.length) {
|
|
@@ -46335,7 +46359,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46335
46359
|
analyser.setWritePoLineNumbers(cfg.db("qx.translation.strictPoCompatibility", false));
|
|
46336
46360
|
|
|
46337
46361
|
if (!(await fs.existsAsync(maker.getOutputDir()))) {
|
|
46338
|
-
this.
|
|
46362
|
+
this.__P_8_3 = true;
|
|
46339
46363
|
}
|
|
46340
46364
|
|
|
46341
46365
|
if (this.argv["clean"]) {
|
|
@@ -46491,7 +46515,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46491
46515
|
let targetConfigs = [];
|
|
46492
46516
|
let defaultTargetConfig = null;
|
|
46493
46517
|
data.targets.forEach(targetConfig => {
|
|
46494
|
-
if (targetConfig.type ===
|
|
46518
|
+
if (targetConfig.type === this.getTargetType()) {
|
|
46495
46519
|
if (!targetConfig["application-names"] && !targetConfig["application-types"]) {
|
|
46496
46520
|
if (defaultTargetConfig) {
|
|
46497
46521
|
qx.tool.compiler.Console.print("qx.tool.cli.compile.multipleDefaultTargets");
|
|
@@ -46564,7 +46588,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46564
46588
|
targetConfigs.push(defaultTargetConfig);
|
|
46565
46589
|
}
|
|
46566
46590
|
|
|
46567
|
-
let libraries = this.
|
|
46591
|
+
let libraries = this.__P_8_2 = {};
|
|
46568
46592
|
await qx.Promise.all(data.libraries.map(async libPath => {
|
|
46569
46593
|
var library = await qx.tool.compiler.app.Library.createLibrary(libPath);
|
|
46570
46594
|
libraries[library.getNamespace()] = library;
|
|
@@ -46583,7 +46607,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46583
46607
|
Console.log("Qooxdoo found in " + qxLib.getRootDir());
|
|
46584
46608
|
}
|
|
46585
46609
|
|
|
46586
|
-
let errors = await this.
|
|
46610
|
+
let errors = await this.__P_8_4(Object.values(libraries), data.packages);
|
|
46587
46611
|
|
|
46588
46612
|
if (errors.length > 0) {
|
|
46589
46613
|
if (this.argv.warnAsError) {
|
|
@@ -46913,7 +46937,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46913
46937
|
app.setDescription(appConfig.description);
|
|
46914
46938
|
}
|
|
46915
46939
|
|
|
46916
|
-
|
|
46940
|
+
appConfig.localModules = appConfig.localModules || {};
|
|
46941
|
+
qx.lang.Object.mergeWith(appConfig.localModules, data.localModules || {}, false);
|
|
46942
|
+
|
|
46943
|
+
if (!qx.lang.Object.isEmpty(appConfig.localModules)) {
|
|
46917
46944
|
app.setLocalModules(appConfig.localModules);
|
|
46918
46945
|
}
|
|
46919
46946
|
|
|
@@ -47015,7 +47042,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
47015
47042
|
* @return {Promise<Array>} Array of error messages
|
|
47016
47043
|
* @private
|
|
47017
47044
|
*/
|
|
47018
|
-
async
|
|
47045
|
+
async __P_8_4(libs, packages) {
|
|
47019
47046
|
const Console = qx.tool.compiler.Console.getInstance();
|
|
47020
47047
|
let errors = []; // check all requires
|
|
47021
47048
|
|
|
@@ -47215,20 +47242,13 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
47215
47242
|
});
|
|
47216
47243
|
},
|
|
47217
47244
|
|
|
47218
|
-
/**
|
|
47219
|
-
* Returns the configuration object being compiled
|
|
47220
|
-
*/
|
|
47221
|
-
_getConfig() {
|
|
47222
|
-
return this.__P_8_2;
|
|
47223
|
-
},
|
|
47224
|
-
|
|
47225
47245
|
/**
|
|
47226
47246
|
* Returns a list of libraries which are used
|
|
47227
47247
|
*
|
|
47228
47248
|
* @return {Library[]}
|
|
47229
47249
|
*/
|
|
47230
47250
|
getLibraries() {
|
|
47231
|
-
return this.
|
|
47251
|
+
return this.__P_8_2;
|
|
47232
47252
|
}
|
|
47233
47253
|
|
|
47234
47254
|
},
|
|
@@ -49621,6 +49641,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
49621
49641
|
"qx.tool.compiler.ClassFile": {},
|
|
49622
49642
|
"qx.tool.config.Utils": {},
|
|
49623
49643
|
"qx.tool.utils.Utils": {},
|
|
49644
|
+
"qx.tool.utils.files.Utils": {},
|
|
49624
49645
|
"qx.tool.compiler.Console": {},
|
|
49625
49646
|
"qx.tool.compiler.targets.TypeScriptWriter": {}
|
|
49626
49647
|
}
|
|
@@ -49813,19 +49834,27 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
49813
49834
|
// multiple times
|
|
49814
49835
|
|
|
49815
49836
|
let compiledClasses = this.getRecentlyCompiledClasses(true);
|
|
49816
|
-
|
|
49817
|
-
var appsThisTime = this.__P_32_0.filter(app => {
|
|
49837
|
+
let db = analyser.getDatabase();
|
|
49838
|
+
var appsThisTime = await this.__P_32_0.filter(async app => {
|
|
49818
49839
|
let loadDeps = app.getDependencies();
|
|
49819
49840
|
|
|
49820
49841
|
if (!loadDeps || !loadDeps.length) {
|
|
49821
49842
|
return true;
|
|
49822
49843
|
}
|
|
49823
49844
|
|
|
49824
|
-
|
|
49825
|
-
|
|
49845
|
+
let res = loadDeps.some(name => Boolean(compiledClasses[name]));
|
|
49846
|
+
let localModules = app.getLocalModules();
|
|
49826
49847
|
|
|
49848
|
+
for (let requireName in localModules) {
|
|
49849
|
+
var _db$modulesInfo;
|
|
49850
|
+
|
|
49851
|
+
let stat = await qx.tool.utils.files.Utils.safeStat(localModules[requireName]);
|
|
49852
|
+
res || (res = stat.mtime.getTime() > ((db === null || db === void 0 ? void 0 : (_db$modulesInfo = db.modulesInfo) === null || _db$modulesInfo === void 0 ? void 0 : _db$modulesInfo.localModules[requireName]) || 0));
|
|
49853
|
+
}
|
|
49854
|
+
|
|
49855
|
+
return res;
|
|
49856
|
+
});
|
|
49827
49857
|
let allAppInfos = [];
|
|
49828
|
-
let db = analyser.getDatabase();
|
|
49829
49858
|
|
|
49830
49859
|
for (let i = 0; i < appsThisTime.length; i++) {
|
|
49831
49860
|
let application = appsThisTime[i];
|
|
@@ -51082,8 +51111,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
51082
51111
|
|
|
51083
51112
|
var async = require("async");
|
|
51084
51113
|
|
|
51085
|
-
var pathModule = require("upath");
|
|
51086
|
-
|
|
51087
51114
|
var log = qx.tool.utils.LogManager.createLog("analyser");
|
|
51088
51115
|
/**
|
|
51089
51116
|
* Helper method that collapses the MemberExpression into a string
|
|
@@ -52775,7 +52802,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
52775
52802
|
if (typeof arg.value != "string") {
|
|
52776
52803
|
t.addMarker("compiler.requireLiteralArguments", path.node.loc, arg.value);
|
|
52777
52804
|
} else {
|
|
52778
|
-
qx.tool.compiler.Console.
|
|
52805
|
+
if (qx.tool.compiler.Console.getInstance().getVerbose()) {
|
|
52806
|
+
qx.tool.compiler.Console.log(`${t.__P_22_1}:${path.node.loc.start.line}:` + ` automatically detected \'require(${arg.value})\``);
|
|
52807
|
+
}
|
|
52808
|
+
|
|
52779
52809
|
t.addCommonjsModule(arg.value, t.__P_22_1, path.node.loc.start.line); // Don't show "unresolved" error for `require` since the
|
|
52780
52810
|
// browserified code defines it as a global
|
|
52781
52811
|
|
|
@@ -55026,9 +55056,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55026
55056
|
(function () {
|
|
55027
55057
|
var $$dbClassInfo = {
|
|
55028
55058
|
"dependsOn": {
|
|
55029
|
-
"qx.tool.utils.Promisify": {
|
|
55030
|
-
"require": true
|
|
55031
|
-
},
|
|
55032
55059
|
"qx.Class": {
|
|
55033
55060
|
"usage": "dynamic",
|
|
55034
55061
|
"require": true
|
|
@@ -55037,6 +55064,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55037
55064
|
"construct": true,
|
|
55038
55065
|
"require": true
|
|
55039
55066
|
},
|
|
55067
|
+
"qx.tool.utils.files.Utils": {},
|
|
55040
55068
|
"qx.tool.compiler.Console": {}
|
|
55041
55069
|
}
|
|
55042
55070
|
};
|
|
@@ -55063,9 +55091,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55063
55091
|
* * Derrell Lipman (@derrell)
|
|
55064
55092
|
*
|
|
55065
55093
|
* ************************************************************************/
|
|
55066
|
-
const
|
|
55067
|
-
|
|
55068
|
-
const path = require("upath");
|
|
55094
|
+
const hash = require("object-hash");
|
|
55069
55095
|
/**
|
|
55070
55096
|
*
|
|
55071
55097
|
*/
|
|
@@ -55076,60 +55102,118 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55076
55102
|
|
|
55077
55103
|
construct(appMeta) {
|
|
55078
55104
|
qx.tool.compiler.targets.meta.AbstractJavascriptMeta.constructor.call(this, appMeta, `${appMeta.getApplicationRoot()}commonjs-browserify.js`);
|
|
55079
|
-
this.__P_44_0 = appMeta;
|
|
55080
55105
|
this.setNeedsWriteToDisk(true);
|
|
55081
55106
|
},
|
|
55082
55107
|
|
|
55083
55108
|
members: {
|
|
55084
55109
|
__P_44_0: null,
|
|
55110
|
+
__P_44_1: null,
|
|
55085
55111
|
|
|
55086
|
-
|
|
55087
|
-
|
|
55088
|
-
|
|
55089
|
-
|
|
55090
|
-
|
|
55091
|
-
|
|
55092
|
-
|
|
55093
|
-
const localModules = this.__P_44_0.getApplication().getLocalModules() || {};
|
|
55094
|
-
|
|
55095
|
-
const db = this.__P_44_0.getAnalyser().getDatabase(); // Only include discovered `require()`d Node modules if the
|
|
55096
|
-
// target application type is browser.
|
|
55097
|
-
|
|
55112
|
+
__P_44_2() {
|
|
55113
|
+
if (this.__P_44_0 === null) {
|
|
55114
|
+
let commonjsModules = new Set();
|
|
55115
|
+
let references = {};
|
|
55116
|
+
const db = this.getAppMeta().getAnalyser().getDatabase();
|
|
55117
|
+
const localModules = this.getAppMeta().getApplication().getLocalModules() || {}; // Get a Set of unique `require`d CommonJS module names from
|
|
55118
|
+
// all classes
|
|
55098
55119
|
|
|
55099
|
-
|
|
55100
|
-
// Get a Set of unique `require`d CommonJS module names from classes needed by the application
|
|
55101
|
-
let classnames = this.__P_44_0.getApplication().getDependencies();
|
|
55102
|
-
|
|
55103
|
-
for (let className of classnames) {
|
|
55120
|
+
for (let className in db.classInfo) {
|
|
55104
55121
|
let classInfo = db.classInfo[className];
|
|
55105
55122
|
|
|
55106
55123
|
if (classInfo.commonjsModules) {
|
|
55107
55124
|
Object.keys(classInfo.commonjsModules).forEach(moduleName => {
|
|
55108
55125
|
// Ignore this found `require()` if its a local modules
|
|
55109
|
-
if (moduleName in localModules) {
|
|
55110
|
-
|
|
55111
|
-
|
|
55126
|
+
if (!(moduleName in localModules)) {
|
|
55127
|
+
// Add this module name to the set of module names
|
|
55128
|
+
commonjsModules.add(moduleName);
|
|
55129
|
+
} // Add the list of references from which this module was require()d
|
|
55112
55130
|
|
|
55113
55131
|
|
|
55114
|
-
commonjsModules.add(moduleName); // Add the list of references from which this module was require()d
|
|
55115
|
-
|
|
55116
55132
|
if (!references[moduleName]) {
|
|
55117
55133
|
references[moduleName] = new Set();
|
|
55118
55134
|
}
|
|
55119
55135
|
|
|
55120
|
-
references[moduleName].add([...classInfo.commonjsModules[moduleName]]);
|
|
55121
|
-
|
|
55122
|
-
hasCommonjsModules = true;
|
|
55136
|
+
references[moduleName].add([...classInfo.commonjsModules[moduleName]]);
|
|
55123
55137
|
});
|
|
55124
55138
|
}
|
|
55125
55139
|
}
|
|
55126
|
-
|
|
55140
|
+
|
|
55141
|
+
this.__P_44_0 = [...commonjsModules];
|
|
55142
|
+
this.__P_44_1 = references;
|
|
55143
|
+
}
|
|
55144
|
+
|
|
55145
|
+
return {
|
|
55146
|
+
commonjsModules: this.__P_44_0,
|
|
55147
|
+
references: this.__P_44_1
|
|
55148
|
+
};
|
|
55149
|
+
},
|
|
55150
|
+
|
|
55151
|
+
/**
|
|
55152
|
+
* @Override
|
|
55153
|
+
*/
|
|
55154
|
+
async writeToDisk() {
|
|
55155
|
+
var _db$modulesInfo2;
|
|
55156
|
+
|
|
55157
|
+
const localModules = this.getAppMeta().getApplication().getLocalModules();
|
|
55158
|
+
let db = this.getAppMeta().getAnalyser().getDatabase();
|
|
55159
|
+
|
|
55160
|
+
const {
|
|
55161
|
+
commonjsModules
|
|
55162
|
+
} = this.__P_44_2();
|
|
55163
|
+
|
|
55164
|
+
let modules = [];
|
|
55165
|
+
let modulesInfo = {};
|
|
55166
|
+
let doIt = !!!(await qx.tool.utils.files.Utils.safeStat(this.getFilename())); // Include any dynamically determined `require()`d modules
|
|
55167
|
+
|
|
55168
|
+
if (commonjsModules.length > 0) {
|
|
55169
|
+
modules.push(commonjsModules);
|
|
55170
|
+
} // Include any local modules specified for the application
|
|
55171
|
+
// in compile.json
|
|
55172
|
+
|
|
55173
|
+
|
|
55174
|
+
if (localModules) {
|
|
55175
|
+
modulesInfo.localModules = {};
|
|
55176
|
+
|
|
55177
|
+
for (let requireName in localModules) {
|
|
55178
|
+
var _db$modulesInfo;
|
|
55179
|
+
|
|
55180
|
+
modules.push(requireName);
|
|
55181
|
+
let stat = await qx.tool.utils.files.Utils.safeStat(localModules[requireName]);
|
|
55182
|
+
modulesInfo.localModules[requireName] = stat.mtime.getTime();
|
|
55183
|
+
doIt || (doIt = modulesInfo.localModules[requireName] > ((db === null || db === void 0 ? void 0 : (_db$modulesInfo = db.modulesInfo) === null || _db$modulesInfo === void 0 ? void 0 : _db$modulesInfo.localModules[requireName]) || 0));
|
|
55184
|
+
}
|
|
55185
|
+
}
|
|
55186
|
+
|
|
55187
|
+
modulesInfo.modulesHash = hash(modules);
|
|
55188
|
+
doIt || (doIt = modulesInfo.modulesHash !== ((db === null || db === void 0 ? void 0 : (_db$modulesInfo2 = db.modulesInfo) === null || _db$modulesInfo2 === void 0 ? void 0 : _db$modulesInfo2.modulesHash) || ""));
|
|
55189
|
+
|
|
55190
|
+
if (doIt) {
|
|
55191
|
+
db.modulesInfo = modulesInfo;
|
|
55192
|
+
await this.getAppMeta().getAnalyser().saveDatabase();
|
|
55193
|
+
}
|
|
55194
|
+
|
|
55195
|
+
this.setNeedsWriteToDisk(doIt);
|
|
55196
|
+
return qx.tool.compiler.targets.meta.Browserify.superclass.prototype.writeToDisk.call(this);
|
|
55197
|
+
},
|
|
55198
|
+
|
|
55199
|
+
/**
|
|
55200
|
+
* @Override
|
|
55201
|
+
*/
|
|
55202
|
+
async writeSourceCodeToStream(ws) {
|
|
55203
|
+
// If there are any CommonJS modules required to be bundled, or
|
|
55127
55204
|
// any local modules specified for the application in
|
|
55128
55205
|
// compile.json, browserify them
|
|
55206
|
+
if (this.getAppMeta().getEnvironmentValue("qx.compiler.applicationType") == "browser") {
|
|
55207
|
+
const localModules = this.getAppMeta().getApplication().getLocalModules();
|
|
55129
55208
|
|
|
55209
|
+
const {
|
|
55210
|
+
commonjsModules,
|
|
55211
|
+
references
|
|
55212
|
+
} = this.__P_44_2();
|
|
55130
55213
|
|
|
55131
|
-
|
|
55132
|
-
|
|
55214
|
+
if (commonjsModules.length > 0 || localModules) {
|
|
55215
|
+
await this.__P_44_3(commonjsModules, references, localModules, ws);
|
|
55216
|
+
}
|
|
55133
55217
|
}
|
|
55134
55218
|
|
|
55135
55219
|
await new Promise(resolve => {
|
|
@@ -55137,7 +55221,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55137
55221
|
});
|
|
55138
55222
|
},
|
|
55139
55223
|
|
|
55140
|
-
async
|
|
55224
|
+
async __P_44_3(commonjsModules, references, localModules, ws) {
|
|
55141
55225
|
const babelify = require("babelify");
|
|
55142
55226
|
|
|
55143
55227
|
const preset = require("@babel/preset-env");
|
|
@@ -55148,10 +55232,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55148
55232
|
// Make them equivalent.
|
|
55149
55233
|
|
|
55150
55234
|
|
|
55151
|
-
builtins.process = builtins._process;
|
|
55152
|
-
|
|
55153
|
-
commonjsModules = [...commonjsModules];
|
|
55154
|
-
return new Promise(resolve => {
|
|
55235
|
+
builtins.process = builtins._process;
|
|
55236
|
+
return new Promise(async resolve => {
|
|
55155
55237
|
let b = browserify([], {
|
|
55156
55238
|
builtins: builtins,
|
|
55157
55239
|
ignoreMissing: true,
|
|
@@ -55162,19 +55244,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55162
55244
|
b._mdeps.on("missing", (id, parent) => {
|
|
55163
55245
|
let message = [];
|
|
55164
55246
|
message.push(`ERROR: could not locate require()d module: "${id}"`);
|
|
55247
|
+
message.push(" required from:");
|
|
55165
55248
|
|
|
55166
|
-
|
|
55167
|
-
|
|
55168
|
-
|
|
55169
|
-
|
|
55170
|
-
[...references[id]].forEach(refs => {
|
|
55171
|
-
refs.forEach(ref => {
|
|
55172
|
-
message.push(` ${ref}`);
|
|
55173
|
-
});
|
|
55249
|
+
try {
|
|
55250
|
+
[...references[id]].forEach(refs => {
|
|
55251
|
+
refs.forEach(ref => {
|
|
55252
|
+
message.push(` ${ref}`);
|
|
55174
55253
|
});
|
|
55175
|
-
}
|
|
55176
|
-
|
|
55177
|
-
|
|
55254
|
+
});
|
|
55255
|
+
} catch (e) {
|
|
55256
|
+
message.push(` <compile.json:application.localModules'>`);
|
|
55178
55257
|
}
|
|
55179
55258
|
|
|
55180
55259
|
qx.tool.compiler.Console.error(message.join("\n"));
|
|
@@ -63404,8 +63483,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63404
63483
|
this.argv["machine-readable"] = false;
|
|
63405
63484
|
this.argv["feedback"] = false;
|
|
63406
63485
|
await qx.tool.cli.commands.Run.superclass.prototype.process.call(this);
|
|
63407
|
-
|
|
63408
|
-
let config = this._getConfig();
|
|
63486
|
+
let config = this.getCompilerApi().getConfiguration();
|
|
63409
63487
|
|
|
63410
63488
|
if (!config.run) {
|
|
63411
63489
|
qx.tool.compiler.Console.print("qx.tool.cli.run.noRunConfig");
|
|
@@ -63699,8 +63777,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63699
63777
|
this.__P_14_0 = defaultMaker === null;
|
|
63700
63778
|
}
|
|
63701
63779
|
|
|
63702
|
-
|
|
63703
|
-
|
|
63780
|
+
let config = this.getCompilerApi().getConfiguration();
|
|
63704
63781
|
const app = express();
|
|
63705
63782
|
app.use((req, res, next) => {
|
|
63706
63783
|
res.set({
|
|
@@ -72118,25 +72195,25 @@ qx.$$packageData['0'] = {
|
|
|
72118
72195
|
"gif",
|
|
72119
72196
|
"qx"
|
|
72120
72197
|
],
|
|
72121
|
-
"qx/decoration/Simple/arrows/
|
|
72122
|
-
8,
|
|
72198
|
+
"qx/decoration/Simple/arrows/down.gif": [
|
|
72123
72199
|
7,
|
|
72200
|
+
4,
|
|
72124
72201
|
"gif",
|
|
72125
72202
|
"qx"
|
|
72126
72203
|
],
|
|
72127
|
-
"qx/decoration/Simple/arrows/
|
|
72204
|
+
"qx/decoration/Simple/arrows/forward.gif": [
|
|
72205
|
+
8,
|
|
72128
72206
|
7,
|
|
72129
|
-
4,
|
|
72130
72207
|
"gif",
|
|
72131
72208
|
"qx"
|
|
72132
72209
|
],
|
|
72133
|
-
"qx/decoration/Simple/arrows/left.gif": [
|
|
72210
|
+
"qx/decoration/Simple/arrows/left-invert.gif": [
|
|
72134
72211
|
4,
|
|
72135
72212
|
7,
|
|
72136
72213
|
"gif",
|
|
72137
72214
|
"qx"
|
|
72138
72215
|
],
|
|
72139
|
-
"qx/decoration/Simple/arrows/left
|
|
72216
|
+
"qx/decoration/Simple/arrows/left.gif": [
|
|
72140
72217
|
4,
|
|
72141
72218
|
7,
|
|
72142
72219
|
"gif",
|
|
@@ -72148,13 +72225,13 @@ qx.$$packageData['0'] = {
|
|
|
72148
72225
|
"gif",
|
|
72149
72226
|
"qx"
|
|
72150
72227
|
],
|
|
72151
|
-
"qx/decoration/Simple/arrows/right.gif": [
|
|
72228
|
+
"qx/decoration/Simple/arrows/right-invert.gif": [
|
|
72152
72229
|
4,
|
|
72153
72230
|
7,
|
|
72154
72231
|
"gif",
|
|
72155
72232
|
"qx"
|
|
72156
72233
|
],
|
|
72157
|
-
"qx/decoration/Simple/arrows/right
|
|
72234
|
+
"qx/decoration/Simple/arrows/right.gif": [
|
|
72158
72235
|
4,
|
|
72159
72236
|
7,
|
|
72160
72237
|
"gif",
|
|
@@ -72178,76 +72255,70 @@ qx.$$packageData['0'] = {
|
|
|
72178
72255
|
"gif",
|
|
72179
72256
|
"qx"
|
|
72180
72257
|
],
|
|
72181
|
-
"qx/decoration/Simple/
|
|
72182
|
-
19,
|
|
72183
|
-
15,
|
|
72184
|
-
"gif",
|
|
72185
|
-
"qx"
|
|
72186
|
-
],
|
|
72187
|
-
"qx/decoration/Simple/cursors/move.gif": [
|
|
72188
|
-
13,
|
|
72189
|
-
9,
|
|
72190
|
-
"gif",
|
|
72191
|
-
"qx"
|
|
72192
|
-
],
|
|
72193
|
-
"qx/decoration/Simple/cursors/copy.gif": [
|
|
72194
|
-
19,
|
|
72195
|
-
15,
|
|
72196
|
-
"gif",
|
|
72197
|
-
"qx"
|
|
72198
|
-
],
|
|
72199
|
-
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
72200
|
-
20,
|
|
72201
|
-
20,
|
|
72202
|
-
"gif",
|
|
72203
|
-
"qx"
|
|
72204
|
-
],
|
|
72205
|
-
"qx/decoration/Simple/checkbox/checked.png": [
|
|
72258
|
+
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
72206
72259
|
6,
|
|
72207
72260
|
6,
|
|
72208
72261
|
"png",
|
|
72209
72262
|
"qx"
|
|
72210
72263
|
],
|
|
72211
|
-
"qx/decoration/Simple/checkbox/checked
|
|
72264
|
+
"qx/decoration/Simple/checkbox/checked.png": [
|
|
72212
72265
|
6,
|
|
72213
72266
|
6,
|
|
72214
72267
|
"png",
|
|
72215
72268
|
"qx"
|
|
72216
72269
|
],
|
|
72217
|
-
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
72270
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
72218
72271
|
6,
|
|
72219
72272
|
2,
|
|
72220
72273
|
"png",
|
|
72221
72274
|
"qx"
|
|
72222
72275
|
],
|
|
72223
|
-
"qx/decoration/Simple/checkbox/undetermined
|
|
72276
|
+
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
72224
72277
|
6,
|
|
72225
72278
|
2,
|
|
72226
72279
|
"png",
|
|
72227
72280
|
"qx"
|
|
72228
72281
|
],
|
|
72282
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
72283
|
+
16,
|
|
72284
|
+
7,
|
|
72285
|
+
"gif",
|
|
72286
|
+
"qx"
|
|
72287
|
+
],
|
|
72288
|
+
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
72289
|
+
16,
|
|
72290
|
+
7,
|
|
72291
|
+
"gif",
|
|
72292
|
+
"qx"
|
|
72293
|
+
],
|
|
72294
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
72295
|
+
16,
|
|
72296
|
+
5,
|
|
72297
|
+
"gif",
|
|
72298
|
+
"qx"
|
|
72299
|
+
],
|
|
72300
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
72301
|
+
16,
|
|
72302
|
+
5,
|
|
72303
|
+
"gif",
|
|
72304
|
+
"qx"
|
|
72305
|
+
],
|
|
72229
72306
|
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
72230
72307
|
19,
|
|
72231
72308
|
256,
|
|
72232
72309
|
"png",
|
|
72233
72310
|
"qx"
|
|
72234
72311
|
],
|
|
72235
|
-
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
72236
|
-
256,
|
|
72237
|
-
256,
|
|
72238
|
-
"jpg",
|
|
72239
|
-
"qx"
|
|
72240
|
-
],
|
|
72241
72312
|
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
72242
72313
|
35,
|
|
72243
72314
|
11,
|
|
72244
72315
|
"gif",
|
|
72245
72316
|
"qx"
|
|
72246
72317
|
],
|
|
72247
|
-
"qx/decoration/Simple/
|
|
72248
|
-
|
|
72249
|
-
|
|
72250
|
-
"
|
|
72318
|
+
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
72319
|
+
256,
|
|
72320
|
+
256,
|
|
72321
|
+
"jpg",
|
|
72251
72322
|
"qx"
|
|
72252
72323
|
],
|
|
72253
72324
|
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
@@ -72256,43 +72327,37 @@ qx.$$packageData['0'] = {
|
|
|
72256
72327
|
"gif",
|
|
72257
72328
|
"qx"
|
|
72258
72329
|
],
|
|
72259
|
-
"qx/decoration/Simple/
|
|
72260
|
-
|
|
72261
|
-
|
|
72330
|
+
"qx/decoration/Simple/cursors/alias.gif": [
|
|
72331
|
+
19,
|
|
72332
|
+
15,
|
|
72262
72333
|
"gif",
|
|
72263
72334
|
"qx"
|
|
72264
72335
|
],
|
|
72265
|
-
"qx/decoration/Simple/
|
|
72266
|
-
|
|
72267
|
-
|
|
72336
|
+
"qx/decoration/Simple/cursors/copy.gif": [
|
|
72337
|
+
19,
|
|
72338
|
+
15,
|
|
72268
72339
|
"gif",
|
|
72269
72340
|
"qx"
|
|
72270
72341
|
],
|
|
72271
|
-
"qx/decoration/Simple/
|
|
72272
|
-
|
|
72273
|
-
|
|
72342
|
+
"qx/decoration/Simple/cursors/move.gif": [
|
|
72343
|
+
13,
|
|
72344
|
+
9,
|
|
72274
72345
|
"gif",
|
|
72275
72346
|
"qx"
|
|
72276
72347
|
],
|
|
72277
|
-
"qx/decoration/Simple/
|
|
72278
|
-
|
|
72279
|
-
|
|
72280
|
-
"
|
|
72281
|
-
"qx"
|
|
72282
|
-
],
|
|
72283
|
-
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
72284
|
-
1,
|
|
72285
|
-
8,
|
|
72286
|
-
"png",
|
|
72348
|
+
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
72349
|
+
20,
|
|
72350
|
+
20,
|
|
72351
|
+
"gif",
|
|
72287
72352
|
"qx"
|
|
72288
72353
|
],
|
|
72289
|
-
"qx/decoration/Simple/table/ascending.png": [
|
|
72354
|
+
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
72290
72355
|
10,
|
|
72291
72356
|
10,
|
|
72292
72357
|
"png",
|
|
72293
72358
|
"qx"
|
|
72294
72359
|
],
|
|
72295
|
-
"qx/decoration/Simple/table/ascending
|
|
72360
|
+
"qx/decoration/Simple/table/ascending.png": [
|
|
72296
72361
|
10,
|
|
72297
72362
|
10,
|
|
72298
72363
|
"png",
|
|
@@ -72316,19 +72381,37 @@ qx.$$packageData['0'] = {
|
|
|
72316
72381
|
"png",
|
|
72317
72382
|
"qx"
|
|
72318
72383
|
],
|
|
72384
|
+
"qx/decoration/Simple/table/descending.png": [
|
|
72385
|
+
10,
|
|
72386
|
+
10,
|
|
72387
|
+
"png",
|
|
72388
|
+
"qx"
|
|
72389
|
+
],
|
|
72319
72390
|
"qx/decoration/Simple/table/select-column-order.png": [
|
|
72320
72391
|
10,
|
|
72321
72392
|
9,
|
|
72322
72393
|
"png",
|
|
72323
72394
|
"qx"
|
|
72324
72395
|
],
|
|
72325
|
-
"qx/decoration/Simple/
|
|
72326
|
-
|
|
72327
|
-
|
|
72396
|
+
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
72397
|
+
1,
|
|
72398
|
+
8,
|
|
72328
72399
|
"png",
|
|
72329
72400
|
"qx"
|
|
72330
72401
|
],
|
|
72331
|
-
"qx/decoration/Simple/
|
|
72402
|
+
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
72403
|
+
8,
|
|
72404
|
+
1,
|
|
72405
|
+
"png",
|
|
72406
|
+
"qx"
|
|
72407
|
+
],
|
|
72408
|
+
"qx/decoration/Simple/tree/minus.gif": [
|
|
72409
|
+
19,
|
|
72410
|
+
16,
|
|
72411
|
+
"gif",
|
|
72412
|
+
"qx"
|
|
72413
|
+
],
|
|
72414
|
+
"qx/decoration/Simple/tree/plus.gif": [
|
|
72332
72415
|
19,
|
|
72333
72416
|
16,
|
|
72334
72417
|
"gif",
|
|
@@ -72340,13 +72423,13 @@ qx.$$packageData['0'] = {
|
|
|
72340
72423
|
"gif",
|
|
72341
72424
|
"qx"
|
|
72342
72425
|
],
|
|
72343
|
-
"qx/decoration/Simple/treevirtual/
|
|
72426
|
+
"qx/decoration/Simple/treevirtual/cross.gif": [
|
|
72344
72427
|
19,
|
|
72345
72428
|
16,
|
|
72346
72429
|
"gif",
|
|
72347
72430
|
"qx"
|
|
72348
72431
|
],
|
|
72349
|
-
"qx/decoration/Simple/treevirtual/
|
|
72432
|
+
"qx/decoration/Simple/treevirtual/cross_minus.gif": [
|
|
72350
72433
|
19,
|
|
72351
72434
|
16,
|
|
72352
72435
|
"gif",
|
|
@@ -72358,7 +72441,7 @@ qx.$$packageData['0'] = {
|
|
|
72358
72441
|
"gif",
|
|
72359
72442
|
"qx"
|
|
72360
72443
|
],
|
|
72361
|
-
"qx/decoration/Simple/treevirtual/
|
|
72444
|
+
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
72362
72445
|
19,
|
|
72363
72446
|
16,
|
|
72364
72447
|
"gif",
|
|
@@ -72370,13 +72453,13 @@ qx.$$packageData['0'] = {
|
|
|
72370
72453
|
"gif",
|
|
72371
72454
|
"qx"
|
|
72372
72455
|
],
|
|
72373
|
-
"qx/decoration/Simple/treevirtual/
|
|
72456
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
72374
72457
|
19,
|
|
72375
72458
|
16,
|
|
72376
72459
|
"gif",
|
|
72377
72460
|
"qx"
|
|
72378
72461
|
],
|
|
72379
|
-
"qx/decoration/Simple/treevirtual/
|
|
72462
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
72380
72463
|
19,
|
|
72381
72464
|
16,
|
|
72382
72465
|
"gif",
|
|
@@ -72388,13 +72471,19 @@ qx.$$packageData['0'] = {
|
|
|
72388
72471
|
"gif",
|
|
72389
72472
|
"qx"
|
|
72390
72473
|
],
|
|
72391
|
-
"qx/decoration/Simple/treevirtual/
|
|
72474
|
+
"qx/decoration/Simple/treevirtual/start.gif": [
|
|
72392
72475
|
19,
|
|
72393
72476
|
16,
|
|
72394
72477
|
"gif",
|
|
72395
72478
|
"qx"
|
|
72396
72479
|
],
|
|
72397
|
-
"qx/decoration/Simple/treevirtual/
|
|
72480
|
+
"qx/decoration/Simple/treevirtual/only_plus.gif": [
|
|
72481
|
+
19,
|
|
72482
|
+
16,
|
|
72483
|
+
"gif",
|
|
72484
|
+
"qx"
|
|
72485
|
+
],
|
|
72486
|
+
"qx/decoration/Simple/treevirtual/start_minus.gif": [
|
|
72398
72487
|
19,
|
|
72399
72488
|
16,
|
|
72400
72489
|
"gif",
|
|
@@ -72418,25 +72507,25 @@ qx.$$packageData['0'] = {
|
|
|
72418
72507
|
"gif",
|
|
72419
72508
|
"qx"
|
|
72420
72509
|
],
|
|
72421
|
-
"qx/decoration/Simple/window/maximize.gif": [
|
|
72510
|
+
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
72422
72511
|
9,
|
|
72423
72512
|
9,
|
|
72424
72513
|
"gif",
|
|
72425
72514
|
"qx"
|
|
72426
72515
|
],
|
|
72427
|
-
"qx/decoration/Simple/window/maximize
|
|
72516
|
+
"qx/decoration/Simple/window/maximize.gif": [
|
|
72428
72517
|
9,
|
|
72429
72518
|
9,
|
|
72430
72519
|
"gif",
|
|
72431
72520
|
"qx"
|
|
72432
72521
|
],
|
|
72433
|
-
"qx/decoration/Simple/window/minimize.gif": [
|
|
72522
|
+
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
72434
72523
|
9,
|
|
72435
72524
|
9,
|
|
72436
72525
|
"gif",
|
|
72437
72526
|
"qx"
|
|
72438
72527
|
],
|
|
72439
|
-
"qx/decoration/Simple/window/minimize
|
|
72528
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
72440
72529
|
9,
|
|
72441
72530
|
9,
|
|
72442
72531
|
"gif",
|
|
@@ -72454,18 +72543,6 @@ qx.$$packageData['0'] = {
|
|
|
72454
72543
|
"gif",
|
|
72455
72544
|
"qx"
|
|
72456
72545
|
],
|
|
72457
|
-
"qx/decoration/Simple/tree/minus.gif": [
|
|
72458
|
-
19,
|
|
72459
|
-
16,
|
|
72460
|
-
"gif",
|
|
72461
|
-
"qx"
|
|
72462
|
-
],
|
|
72463
|
-
"qx/decoration/Simple/tree/plus.gif": [
|
|
72464
|
-
19,
|
|
72465
|
-
16,
|
|
72466
|
-
"gif",
|
|
72467
|
-
"qx"
|
|
72468
|
-
],
|
|
72469
72546
|
"qx/static/blank.png": [
|
|
72470
72547
|
1,
|
|
72471
72548
|
1,
|
|
@@ -72496,6 +72573,12 @@ qx.$$packageData['0'] = {
|
|
|
72496
72573
|
"",
|
|
72497
72574
|
"qx"
|
|
72498
72575
|
],
|
|
72576
|
+
"qx/tool/website/.gitignore": [
|
|
72577
|
+
null,
|
|
72578
|
+
null,
|
|
72579
|
+
"",
|
|
72580
|
+
"qx"
|
|
72581
|
+
],
|
|
72499
72582
|
"qx/tool/schema/compile-1-0-0.json": [
|
|
72500
72583
|
null,
|
|
72501
72584
|
null,
|
|
@@ -72520,12 +72603,6 @@ qx.$$packageData['0'] = {
|
|
|
72520
72603
|
"json",
|
|
72521
72604
|
"qx"
|
|
72522
72605
|
],
|
|
72523
|
-
"qx/tool/website/.gitignore": [
|
|
72524
|
-
null,
|
|
72525
|
-
null,
|
|
72526
|
-
"",
|
|
72527
|
-
"qx"
|
|
72528
|
-
],
|
|
72529
72606
|
"qx/tool/cli/templates/template_vars.js": [
|
|
72530
72607
|
null,
|
|
72531
72608
|
null,
|
|
@@ -72544,12 +72621,6 @@ qx.$$packageData['0'] = {
|
|
|
72544
72621
|
"dot",
|
|
72545
72622
|
"qx"
|
|
72546
72623
|
],
|
|
72547
|
-
"qx/tool/website/sass/qooxdoo.scss": [
|
|
72548
|
-
null,
|
|
72549
|
-
null,
|
|
72550
|
-
"scss",
|
|
72551
|
-
"qx"
|
|
72552
|
-
],
|
|
72553
72624
|
"qx/tool/website/build/404.html": [
|
|
72554
72625
|
null,
|
|
72555
72626
|
null,
|
|
@@ -72634,6 +72705,30 @@ qx.$$packageData['0'] = {
|
|
|
72634
72705
|
"html",
|
|
72635
72706
|
"qx"
|
|
72636
72707
|
],
|
|
72708
|
+
"qx/tool/website/sass/qooxdoo.scss": [
|
|
72709
|
+
null,
|
|
72710
|
+
null,
|
|
72711
|
+
"scss",
|
|
72712
|
+
"qx"
|
|
72713
|
+
],
|
|
72714
|
+
"qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
|
|
72715
|
+
null,
|
|
72716
|
+
null,
|
|
72717
|
+
"js",
|
|
72718
|
+
"qx"
|
|
72719
|
+
],
|
|
72720
|
+
"qx/tool/cli/templates/loader/loader-node.tmpl.js": [
|
|
72721
|
+
null,
|
|
72722
|
+
null,
|
|
72723
|
+
"js",
|
|
72724
|
+
"qx"
|
|
72725
|
+
],
|
|
72726
|
+
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
|
|
72727
|
+
null,
|
|
72728
|
+
null,
|
|
72729
|
+
"js",
|
|
72730
|
+
"qx"
|
|
72731
|
+
],
|
|
72637
72732
|
"qx/tool/cli/templates/class/default.tmpl.js": [
|
|
72638
72733
|
null,
|
|
72639
72734
|
null,
|
|
@@ -72646,13 +72741,13 @@ qx.$$packageData['0'] = {
|
|
|
72646
72741
|
"js",
|
|
72647
72742
|
"qx"
|
|
72648
72743
|
],
|
|
72649
|
-
"qx/tool/cli/templates/class/
|
|
72744
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
72650
72745
|
null,
|
|
72651
72746
|
null,
|
|
72652
72747
|
"js",
|
|
72653
72748
|
"qx"
|
|
72654
72749
|
],
|
|
72655
|
-
"qx/tool/cli/templates/class/
|
|
72750
|
+
"qx/tool/cli/templates/class/interface.tmpl.js": [
|
|
72656
72751
|
null,
|
|
72657
72752
|
null,
|
|
72658
72753
|
"js",
|
|
@@ -72664,24 +72759,30 @@ qx.$$packageData['0'] = {
|
|
|
72664
72759
|
"js",
|
|
72665
72760
|
"qx"
|
|
72666
72761
|
],
|
|
72667
|
-
"qx/tool/
|
|
72762
|
+
"qx/tool/website/build/diagnostics/dependson.html": [
|
|
72668
72763
|
null,
|
|
72669
72764
|
null,
|
|
72670
|
-
"
|
|
72765
|
+
"html",
|
|
72671
72766
|
"qx"
|
|
72672
72767
|
],
|
|
72673
|
-
"qx/tool/
|
|
72768
|
+
"qx/tool/website/build/diagnostics/dependson.js": [
|
|
72674
72769
|
null,
|
|
72675
72770
|
null,
|
|
72676
72771
|
"js",
|
|
72677
72772
|
"qx"
|
|
72678
72773
|
],
|
|
72679
|
-
"qx/tool/
|
|
72774
|
+
"qx/tool/website/build/diagnostics/requiredby.js": [
|
|
72680
72775
|
null,
|
|
72681
72776
|
null,
|
|
72682
72777
|
"js",
|
|
72683
72778
|
"qx"
|
|
72684
72779
|
],
|
|
72780
|
+
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72781
|
+
null,
|
|
72782
|
+
null,
|
|
72783
|
+
"html",
|
|
72784
|
+
"qx"
|
|
72785
|
+
],
|
|
72685
72786
|
"qx/tool/website/build/assets/abel.css": [
|
|
72686
72787
|
null,
|
|
72687
72788
|
null,
|
|
@@ -72694,28 +72795,28 @@ qx.$$packageData['0'] = {
|
|
|
72694
72795
|
"js",
|
|
72695
72796
|
"qx"
|
|
72696
72797
|
],
|
|
72697
|
-
"qx/tool/website/build/assets/bootstrap.css": [
|
|
72798
|
+
"qx/tool/website/build/assets/bootstrap.min.css": [
|
|
72698
72799
|
null,
|
|
72699
72800
|
null,
|
|
72700
72801
|
"css",
|
|
72701
72802
|
"qx"
|
|
72702
72803
|
],
|
|
72703
|
-
"qx/tool/website/build/assets/bootstrap.
|
|
72804
|
+
"qx/tool/website/build/assets/bootstrap.css": [
|
|
72704
72805
|
null,
|
|
72705
72806
|
null,
|
|
72706
72807
|
"css",
|
|
72707
72808
|
"qx"
|
|
72708
72809
|
],
|
|
72709
|
-
"qx/tool/website/build/assets/
|
|
72810
|
+
"qx/tool/website/build/assets/buttons.js": [
|
|
72710
72811
|
null,
|
|
72711
72812
|
null,
|
|
72712
|
-
"
|
|
72813
|
+
"js",
|
|
72713
72814
|
"qx"
|
|
72714
72815
|
],
|
|
72715
|
-
"qx/tool/website/build/assets/
|
|
72816
|
+
"qx/tool/website/build/assets/bootstrap.min.css.map": [
|
|
72716
72817
|
null,
|
|
72717
72818
|
null,
|
|
72718
|
-
"
|
|
72819
|
+
"map",
|
|
72719
72820
|
"qx"
|
|
72720
72821
|
],
|
|
72721
72822
|
"qx/tool/website/build/assets/favicon.png": [
|
|
@@ -72724,13 +72825,13 @@ qx.$$packageData['0'] = {
|
|
|
72724
72825
|
"png",
|
|
72725
72826
|
"qx"
|
|
72726
72827
|
],
|
|
72727
|
-
"qx/tool/website/build/assets/
|
|
72828
|
+
"qx/tool/website/build/assets/jquery.js": [
|
|
72728
72829
|
null,
|
|
72729
72830
|
null,
|
|
72730
72831
|
"js",
|
|
72731
72832
|
"qx"
|
|
72732
72833
|
],
|
|
72733
|
-
"qx/tool/website/build/assets/
|
|
72834
|
+
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
72734
72835
|
null,
|
|
72735
72836
|
null,
|
|
72736
72837
|
"js",
|
|
@@ -72754,43 +72855,43 @@ qx.$$packageData['0'] = {
|
|
|
72754
72855
|
"png",
|
|
72755
72856
|
"qx"
|
|
72756
72857
|
],
|
|
72757
|
-
"qx/tool/website/build/assets/qx-white.svg": [
|
|
72758
|
-
64,
|
|
72759
|
-
65,
|
|
72760
|
-
"svg",
|
|
72761
|
-
"qx"
|
|
72762
|
-
],
|
|
72763
72858
|
"qx/tool/website/build/assets/qx-oo.png": [
|
|
72764
72859
|
870,
|
|
72765
72860
|
502,
|
|
72766
72861
|
"png",
|
|
72767
72862
|
"qx"
|
|
72768
72863
|
],
|
|
72769
|
-
"qx/tool/website/build/
|
|
72864
|
+
"qx/tool/website/build/assets/qx-white.svg": [
|
|
72865
|
+
64,
|
|
72866
|
+
65,
|
|
72867
|
+
"svg",
|
|
72868
|
+
"qx"
|
|
72869
|
+
],
|
|
72870
|
+
"qx/tool/website/build/scripts/serve.js": [
|
|
72770
72871
|
null,
|
|
72771
72872
|
null,
|
|
72772
|
-
"
|
|
72873
|
+
"js",
|
|
72773
72874
|
"qx"
|
|
72774
72875
|
],
|
|
72775
|
-
"qx/tool/website/
|
|
72876
|
+
"qx/tool/website/src/diagnostics/dependson.html": [
|
|
72776
72877
|
null,
|
|
72777
72878
|
null,
|
|
72778
|
-
"
|
|
72879
|
+
"html",
|
|
72779
72880
|
"qx"
|
|
72780
72881
|
],
|
|
72781
|
-
"qx/tool/website/
|
|
72882
|
+
"qx/tool/website/src/diagnostics/requiredby.html": [
|
|
72782
72883
|
null,
|
|
72783
72884
|
null,
|
|
72784
72885
|
"html",
|
|
72785
72886
|
"qx"
|
|
72786
72887
|
],
|
|
72787
|
-
"qx/tool/website/
|
|
72888
|
+
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
72788
72889
|
null,
|
|
72789
72890
|
null,
|
|
72790
72891
|
"js",
|
|
72791
72892
|
"qx"
|
|
72792
72893
|
],
|
|
72793
|
-
"qx/tool/website/
|
|
72894
|
+
"qx/tool/website/src/diagnostics/requiredby.js": [
|
|
72794
72895
|
null,
|
|
72795
72896
|
null,
|
|
72796
72897
|
"js",
|
|
@@ -72814,22 +72915,16 @@ qx.$$packageData['0'] = {
|
|
|
72814
72915
|
"css",
|
|
72815
72916
|
"qx"
|
|
72816
72917
|
],
|
|
72817
|
-
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72818
|
-
null,
|
|
72819
|
-
null,
|
|
72820
|
-
"css",
|
|
72821
|
-
"qx"
|
|
72822
|
-
],
|
|
72823
72918
|
"qx/tool/website/src/assets/bootstrap.min.css.map": [
|
|
72824
72919
|
null,
|
|
72825
72920
|
null,
|
|
72826
72921
|
"map",
|
|
72827
72922
|
"qx"
|
|
72828
72923
|
],
|
|
72829
|
-
"qx/tool/website/src/assets/
|
|
72924
|
+
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72830
72925
|
null,
|
|
72831
72926
|
null,
|
|
72832
|
-
"
|
|
72927
|
+
"css",
|
|
72833
72928
|
"qx"
|
|
72834
72929
|
],
|
|
72835
72930
|
"qx/tool/website/src/assets/favicon.png": [
|
|
@@ -72838,13 +72933,13 @@ qx.$$packageData['0'] = {
|
|
|
72838
72933
|
"png",
|
|
72839
72934
|
"qx"
|
|
72840
72935
|
],
|
|
72841
|
-
"qx/tool/website/src/assets/
|
|
72936
|
+
"qx/tool/website/src/assets/buttons.js": [
|
|
72842
72937
|
null,
|
|
72843
72938
|
null,
|
|
72844
72939
|
"js",
|
|
72845
72940
|
"qx"
|
|
72846
72941
|
],
|
|
72847
|
-
"qx/tool/website/src/assets/
|
|
72942
|
+
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
72848
72943
|
null,
|
|
72849
72944
|
null,
|
|
72850
72945
|
"js",
|
|
@@ -72856,6 +72951,12 @@ qx.$$packageData['0'] = {
|
|
|
72856
72951
|
"svg",
|
|
72857
72952
|
"qx"
|
|
72858
72953
|
],
|
|
72954
|
+
"qx/tool/website/src/assets/jquery.js": [
|
|
72955
|
+
null,
|
|
72956
|
+
null,
|
|
72957
|
+
"js",
|
|
72958
|
+
"qx"
|
|
72959
|
+
],
|
|
72859
72960
|
"qx/tool/website/src/assets/qx-api.png": [
|
|
72860
72961
|
1144,
|
|
72861
72962
|
640,
|
|
@@ -72886,30 +72987,6 @@ qx.$$packageData['0'] = {
|
|
|
72886
72987
|
"js",
|
|
72887
72988
|
"qx"
|
|
72888
72989
|
],
|
|
72889
|
-
"qx/tool/website/src/diagnostics/dependson.html": [
|
|
72890
|
-
null,
|
|
72891
|
-
null,
|
|
72892
|
-
"html",
|
|
72893
|
-
"qx"
|
|
72894
|
-
],
|
|
72895
|
-
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
72896
|
-
null,
|
|
72897
|
-
null,
|
|
72898
|
-
"js",
|
|
72899
|
-
"qx"
|
|
72900
|
-
],
|
|
72901
|
-
"qx/tool/website/src/diagnostics/requiredby.html": [
|
|
72902
|
-
null,
|
|
72903
|
-
null,
|
|
72904
|
-
"html",
|
|
72905
|
-
"qx"
|
|
72906
|
-
],
|
|
72907
|
-
"qx/tool/website/src/diagnostics/requiredby.js": [
|
|
72908
|
-
null,
|
|
72909
|
-
null,
|
|
72910
|
-
"js",
|
|
72911
|
-
"qx"
|
|
72912
|
-
],
|
|
72913
72990
|
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
72914
72991
|
null,
|
|
72915
72992
|
null,
|
|
@@ -72958,52 +73035,52 @@ qx.$$packageData['0'] = {
|
|
|
72958
73035
|
"md",
|
|
72959
73036
|
"qx"
|
|
72960
73037
|
],
|
|
72961
|
-
"qx/tool/cli/templates/skeleton/
|
|
73038
|
+
"qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
|
|
72962
73039
|
null,
|
|
72963
73040
|
null,
|
|
72964
73041
|
"tmpl",
|
|
72965
73042
|
"qx"
|
|
72966
73043
|
],
|
|
72967
|
-
"qx/tool/cli/templates/skeleton/
|
|
73044
|
+
"qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
|
|
72968
73045
|
null,
|
|
72969
73046
|
null,
|
|
72970
73047
|
"json",
|
|
72971
73048
|
"qx"
|
|
72972
73049
|
],
|
|
72973
|
-
"qx/tool/cli/templates/skeleton/
|
|
73050
|
+
"qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
|
|
72974
73051
|
null,
|
|
72975
73052
|
null,
|
|
72976
|
-
"
|
|
73053
|
+
"json",
|
|
72977
73054
|
"qx"
|
|
72978
73055
|
],
|
|
72979
|
-
"qx/tool/cli/templates/skeleton/
|
|
73056
|
+
"qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
|
|
72980
73057
|
null,
|
|
72981
73058
|
null,
|
|
72982
|
-
"
|
|
73059
|
+
"txt",
|
|
72983
73060
|
"qx"
|
|
72984
73061
|
],
|
|
72985
|
-
"qx/tool/cli/templates/skeleton/
|
|
73062
|
+
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
|
|
72986
73063
|
null,
|
|
72987
73064
|
null,
|
|
72988
73065
|
"tmpl",
|
|
72989
73066
|
"qx"
|
|
72990
73067
|
],
|
|
72991
|
-
"qx/tool/cli/templates/skeleton/
|
|
73068
|
+
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
|
|
72992
73069
|
null,
|
|
72993
73070
|
null,
|
|
72994
73071
|
"json",
|
|
72995
73072
|
"qx"
|
|
72996
73073
|
],
|
|
72997
|
-
"qx/tool/cli/templates/skeleton/
|
|
73074
|
+
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
|
|
72998
73075
|
null,
|
|
72999
73076
|
null,
|
|
73000
73077
|
"json",
|
|
73001
73078
|
"qx"
|
|
73002
73079
|
],
|
|
73003
|
-
"qx/tool/cli/templates/skeleton/
|
|
73080
|
+
"qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
|
|
73004
73081
|
null,
|
|
73005
73082
|
null,
|
|
73006
|
-
"
|
|
73083
|
+
"md",
|
|
73007
73084
|
"qx"
|
|
73008
73085
|
],
|
|
73009
73086
|
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
|
|
@@ -73018,10 +73095,10 @@ qx.$$packageData['0'] = {
|
|
|
73018
73095
|
"html",
|
|
73019
73096
|
"qx"
|
|
73020
73097
|
],
|
|
73021
|
-
"qx/tool/cli/templates/skeleton/
|
|
73098
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
73022
73099
|
null,
|
|
73023
73100
|
null,
|
|
73024
|
-
"
|
|
73101
|
+
"txt",
|
|
73025
73102
|
"qx"
|
|
73026
73103
|
],
|
|
73027
73104
|
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
@@ -73030,10 +73107,10 @@ qx.$$packageData['0'] = {
|
|
|
73030
73107
|
"html",
|
|
73031
73108
|
"qx"
|
|
73032
73109
|
],
|
|
73033
|
-
"qx/tool/cli/templates/skeleton/
|
|
73110
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
73034
73111
|
null,
|
|
73035
73112
|
null,
|
|
73036
|
-
"
|
|
73113
|
+
"html",
|
|
73037
73114
|
"qx"
|
|
73038
73115
|
],
|
|
73039
73116
|
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
@@ -73054,6 +73131,18 @@ qx.$$packageData['0'] = {
|
|
|
73054
73131
|
"txt",
|
|
73055
73132
|
"qx"
|
|
73056
73133
|
],
|
|
73134
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
73135
|
+
null,
|
|
73136
|
+
null,
|
|
73137
|
+
"js",
|
|
73138
|
+
"qx"
|
|
73139
|
+
],
|
|
73140
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
|
|
73141
|
+
null,
|
|
73142
|
+
null,
|
|
73143
|
+
"js",
|
|
73144
|
+
"qx"
|
|
73145
|
+
],
|
|
73057
73146
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
|
|
73058
73147
|
180,
|
|
73059
73148
|
180,
|
|
@@ -73078,24 +73167,12 @@ qx.$$packageData['0'] = {
|
|
|
73078
73167
|
"png",
|
|
73079
73168
|
"qx"
|
|
73080
73169
|
],
|
|
73081
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
73082
|
-
null,
|
|
73083
|
-
null,
|
|
73084
|
-
"js",
|
|
73085
|
-
"qx"
|
|
73086
|
-
],
|
|
73087
73170
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
|
|
73088
73171
|
null,
|
|
73089
73172
|
null,
|
|
73090
73173
|
"js",
|
|
73091
73174
|
"qx"
|
|
73092
73175
|
],
|
|
73093
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
|
|
73094
|
-
null,
|
|
73095
|
-
null,
|
|
73096
|
-
"js",
|
|
73097
|
-
"qx"
|
|
73098
|
-
],
|
|
73099
73176
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
|
|
73100
73177
|
null,
|
|
73101
73178
|
null,
|
|
@@ -73120,40 +73197,40 @@ qx.$$packageData['0'] = {
|
|
|
73120
73197
|
"png",
|
|
73121
73198
|
"qx"
|
|
73122
73199
|
],
|
|
73123
|
-
"qx/tool/cli/templates/skeleton/
|
|
73200
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
73124
73201
|
null,
|
|
73125
73202
|
null,
|
|
73126
73203
|
"js",
|
|
73127
73204
|
"qx"
|
|
73128
73205
|
],
|
|
73129
|
-
"qx/tool/cli/templates/skeleton/
|
|
73206
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
|
|
73130
73207
|
null,
|
|
73131
73208
|
null,
|
|
73132
73209
|
"js",
|
|
73133
73210
|
"qx"
|
|
73134
73211
|
],
|
|
73135
|
-
"qx/tool/cli/templates/skeleton/
|
|
73136
|
-
32,
|
|
73137
|
-
32,
|
|
73138
|
-
"png",
|
|
73139
|
-
"qx"
|
|
73140
|
-
],
|
|
73141
|
-
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
73212
|
+
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
|
|
73142
73213
|
null,
|
|
73143
73214
|
null,
|
|
73144
|
-
"
|
|
73215
|
+
"tmpl",
|
|
73145
73216
|
"qx"
|
|
73146
73217
|
],
|
|
73147
|
-
"qx/tool/cli/templates/skeleton/
|
|
73218
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
73148
73219
|
null,
|
|
73149
73220
|
null,
|
|
73150
73221
|
"js",
|
|
73151
73222
|
"qx"
|
|
73152
73223
|
],
|
|
73153
|
-
"qx/tool/cli/templates/skeleton/
|
|
73224
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
73225
|
+
32,
|
|
73226
|
+
32,
|
|
73227
|
+
"png",
|
|
73228
|
+
"qx"
|
|
73229
|
+
],
|
|
73230
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
|
|
73154
73231
|
null,
|
|
73155
73232
|
null,
|
|
73156
|
-
"
|
|
73233
|
+
"js",
|
|
73157
73234
|
"qx"
|
|
73158
73235
|
],
|
|
73159
73236
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
@@ -73180,13 +73257,13 @@ qx.$$packageData['0'] = {
|
|
|
73180
73257
|
"js",
|
|
73181
73258
|
"qx"
|
|
73182
73259
|
],
|
|
73183
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
73260
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
|
|
73184
73261
|
null,
|
|
73185
73262
|
null,
|
|
73186
73263
|
"js",
|
|
73187
73264
|
"qx"
|
|
73188
73265
|
],
|
|
73189
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
73266
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
|
|
73190
73267
|
null,
|
|
73191
73268
|
null,
|
|
73192
73269
|
"js",
|
|
@@ -73216,7 +73293,7 @@ qx.$$packageData['0'] = {
|
|
|
73216
73293
|
"tmpl",
|
|
73217
73294
|
"qx"
|
|
73218
73295
|
],
|
|
73219
|
-
"qx/tool/cli/templates/skeleton/
|
|
73296
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73220
73297
|
null,
|
|
73221
73298
|
null,
|
|
73222
73299
|
"js",
|
|
@@ -73234,25 +73311,25 @@ qx.$$packageData['0'] = {
|
|
|
73234
73311
|
"scss",
|
|
73235
73312
|
"qx"
|
|
73236
73313
|
],
|
|
73237
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
73314
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
73238
73315
|
null,
|
|
73239
73316
|
null,
|
|
73240
73317
|
"js",
|
|
73241
73318
|
"qx"
|
|
73242
73319
|
],
|
|
73243
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
73320
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73244
73321
|
null,
|
|
73245
73322
|
null,
|
|
73246
73323
|
"js",
|
|
73247
73324
|
"qx"
|
|
73248
73325
|
],
|
|
73249
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73326
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
|
|
73250
73327
|
null,
|
|
73251
73328
|
null,
|
|
73252
73329
|
"js",
|
|
73253
73330
|
"qx"
|
|
73254
73331
|
],
|
|
73255
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73332
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
|
|
73256
73333
|
null,
|
|
73257
73334
|
null,
|
|
73258
73335
|
"js",
|
|
@@ -73264,13 +73341,13 @@ qx.$$packageData['0'] = {
|
|
|
73264
73341
|
"js",
|
|
73265
73342
|
"qx"
|
|
73266
73343
|
],
|
|
73267
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73344
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
|
|
73268
73345
|
null,
|
|
73269
73346
|
null,
|
|
73270
73347
|
"js",
|
|
73271
73348
|
"qx"
|
|
73272
73349
|
],
|
|
73273
|
-
"qx/tool/cli/templates/skeleton/
|
|
73350
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
|
|
73274
73351
|
null,
|
|
73275
73352
|
null,
|
|
73276
73353
|
"js",
|