@qooxdoo/framework 7.3.2 → 7.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Manifest.json +1 -1
- package/bin/tools/utils.js +561 -0
- package/lib/compiler/compile-info.json +80 -80
- package/lib/compiler/index.js +473 -402
- 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 +2 -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/makers/AppMaker.js +14 -3
- package/source/class/qx/tool/compiler/targets/meta/Browserify.js +100 -62
- package/source/class/qx/tool/utils/Utils.js +4 -1
- 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.0",
|
|
100
100
|
"qx.compiler.targetType": "source",
|
|
101
101
|
"qx.compiler.outputDir": "compiled/node/build/",
|
|
102
102
|
"true": true,
|
|
@@ -128,7 +128,7 @@ if (typeof global !== "undefined") {
|
|
|
128
128
|
"qx.promise.warnings": true,
|
|
129
129
|
"qx.promise.longStackTraces": true,
|
|
130
130
|
"qx.compiler": true,
|
|
131
|
-
"qx.compiler.version": "7.
|
|
131
|
+
"qx.compiler.version": "7.4.0",
|
|
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.0";
|
|
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();
|
|
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
|
+
}
|
|
49826
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];
|
|
@@ -55026,9 +55055,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55026
55055
|
(function () {
|
|
55027
55056
|
var $$dbClassInfo = {
|
|
55028
55057
|
"dependsOn": {
|
|
55029
|
-
"qx.tool.utils.Promisify": {
|
|
55030
|
-
"require": true
|
|
55031
|
-
},
|
|
55032
55058
|
"qx.Class": {
|
|
55033
55059
|
"usage": "dynamic",
|
|
55034
55060
|
"require": true
|
|
@@ -55037,6 +55063,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55037
55063
|
"construct": true,
|
|
55038
55064
|
"require": true
|
|
55039
55065
|
},
|
|
55066
|
+
"qx.tool.utils.files.Utils": {},
|
|
55040
55067
|
"qx.tool.compiler.Console": {}
|
|
55041
55068
|
}
|
|
55042
55069
|
};
|
|
@@ -55063,9 +55090,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55063
55090
|
* * Derrell Lipman (@derrell)
|
|
55064
55091
|
*
|
|
55065
55092
|
* ************************************************************************/
|
|
55066
|
-
const
|
|
55067
|
-
|
|
55068
|
-
const path = require("upath");
|
|
55093
|
+
const hash = require("object-hash");
|
|
55069
55094
|
/**
|
|
55070
55095
|
*
|
|
55071
55096
|
*/
|
|
@@ -55076,60 +55101,113 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55076
55101
|
|
|
55077
55102
|
construct(appMeta) {
|
|
55078
55103
|
qx.tool.compiler.targets.meta.AbstractJavascriptMeta.constructor.call(this, appMeta, `${appMeta.getApplicationRoot()}commonjs-browserify.js`);
|
|
55079
|
-
this.__P_44_0 =
|
|
55104
|
+
this.__P_44_0 = [];
|
|
55105
|
+
this.__P_44_1 = {};
|
|
55080
55106
|
this.setNeedsWriteToDisk(true);
|
|
55081
55107
|
},
|
|
55082
55108
|
|
|
55083
55109
|
members: {
|
|
55084
55110
|
__P_44_0: null,
|
|
55111
|
+
__P_44_1: null,
|
|
55085
55112
|
|
|
55086
|
-
|
|
55087
|
-
* @Override
|
|
55088
|
-
*/
|
|
55089
|
-
async writeSourceCodeToStream(ws) {
|
|
55090
|
-
let hasCommonjsModules = false;
|
|
55113
|
+
__P_44_2() {
|
|
55091
55114
|
let commonjsModules = new Set();
|
|
55092
55115
|
let references = {};
|
|
55093
|
-
const
|
|
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
|
|
55094
55119
|
|
|
55095
|
-
|
|
55096
|
-
|
|
55120
|
+
for (let className in db.classInfo) {
|
|
55121
|
+
let classInfo = db.classInfo[className];
|
|
55097
55122
|
|
|
55123
|
+
if (classInfo.commonjsModules) {
|
|
55124
|
+
Object.keys(classInfo.commonjsModules).forEach(moduleName => {
|
|
55125
|
+
// Ignore this found `require()` if its a local modules
|
|
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
|
|
55098
55130
|
|
|
55099
|
-
if (this.__P_44_0.getEnvironmentValue("qx.compiler.applicationType") == "browser") {
|
|
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
55131
|
|
|
55103
|
-
|
|
55104
|
-
|
|
55132
|
+
if (!references[moduleName]) {
|
|
55133
|
+
references[moduleName] = new Set();
|
|
55134
|
+
}
|
|
55105
55135
|
|
|
55106
|
-
|
|
55107
|
-
|
|
55108
|
-
|
|
55109
|
-
|
|
55110
|
-
return;
|
|
55111
|
-
} // Add this module name to the set of module names
|
|
55136
|
+
references[moduleName].add([...classInfo.commonjsModules[moduleName]]);
|
|
55137
|
+
});
|
|
55138
|
+
}
|
|
55139
|
+
}
|
|
55112
55140
|
|
|
55141
|
+
return {
|
|
55142
|
+
commonjsModules: [...commonjsModules],
|
|
55143
|
+
references: references
|
|
55144
|
+
};
|
|
55145
|
+
},
|
|
55113
55146
|
|
|
55114
|
-
|
|
55147
|
+
/**
|
|
55148
|
+
* @Override
|
|
55149
|
+
*/
|
|
55150
|
+
async writeToDisk() {
|
|
55151
|
+
var _db$modulesInfo2;
|
|
55115
55152
|
|
|
55116
|
-
|
|
55117
|
-
|
|
55118
|
-
|
|
55153
|
+
const localModules = this.getAppMeta().getApplication().getLocalModules();
|
|
55154
|
+
let db = this.getAppMeta().getAnalyser().getDatabase();
|
|
55155
|
+
|
|
55156
|
+
const {
|
|
55157
|
+
commonjsModules,
|
|
55158
|
+
references
|
|
55159
|
+
} = this.__P_44_2();
|
|
55119
55160
|
|
|
55120
|
-
|
|
55161
|
+
let modules = [];
|
|
55162
|
+
let modulesInfo = {};
|
|
55163
|
+
let doIt = !!!(await qx.tool.utils.files.Utils.safeStat(this.getFilename())); // Include any dynamically determined `require()`d modules
|
|
55121
55164
|
|
|
55122
|
-
|
|
55123
|
-
|
|
55124
|
-
|
|
55165
|
+
if (commonjsModules.length > 0) {
|
|
55166
|
+
modules.push(commonjsModules);
|
|
55167
|
+
} // Include any local modules specified for the application
|
|
55168
|
+
// in compile.json
|
|
55169
|
+
|
|
55170
|
+
|
|
55171
|
+
if (localModules) {
|
|
55172
|
+
modulesInfo.localModules = {};
|
|
55173
|
+
|
|
55174
|
+
for (let requireName in localModules) {
|
|
55175
|
+
var _db$modulesInfo;
|
|
55176
|
+
|
|
55177
|
+
modules.push(requireName);
|
|
55178
|
+
let stat = await qx.tool.utils.files.Utils.safeStat(localModules[requireName]);
|
|
55179
|
+
modulesInfo.localModules[requireName] = stat.mtime.getTime();
|
|
55180
|
+
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));
|
|
55125
55181
|
}
|
|
55126
|
-
}
|
|
55182
|
+
}
|
|
55183
|
+
|
|
55184
|
+
modulesInfo.modulesHash = hash(modules);
|
|
55185
|
+
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) || ""));
|
|
55186
|
+
|
|
55187
|
+
if (doIt) {
|
|
55188
|
+
db.modulesInfo = modulesInfo;
|
|
55189
|
+
await this.getAppMeta().getAnalyser().saveDatabase();
|
|
55190
|
+
this.__P_44_0 = commonjsModules;
|
|
55191
|
+
this.__P_44_1 = references;
|
|
55192
|
+
}
|
|
55193
|
+
|
|
55194
|
+
this.setNeedsWriteToDisk(doIt);
|
|
55195
|
+
return qx.tool.compiler.targets.meta.Browserify.superclass.prototype.writeToDisk.call(this);
|
|
55196
|
+
},
|
|
55197
|
+
|
|
55198
|
+
/**
|
|
55199
|
+
* @Override
|
|
55200
|
+
*/
|
|
55201
|
+
async writeSourceCodeToStream(ws) {
|
|
55202
|
+
// If there are any CommonJS modules required to be bundled, or
|
|
55127
55203
|
// any local modules specified for the application in
|
|
55128
55204
|
// compile.json, browserify them
|
|
55205
|
+
if (this.getAppMeta().getEnvironmentValue("qx.compiler.applicationType") == "browser") {
|
|
55206
|
+
const localModules = this.getAppMeta().getApplication().getLocalModules();
|
|
55129
55207
|
|
|
55130
|
-
|
|
55131
|
-
|
|
55132
|
-
|
|
55208
|
+
if (this.__P_44_0 || localModules) {
|
|
55209
|
+
await this.__P_44_3(this.__P_44_0, this.__P_44_1, localModules, ws);
|
|
55210
|
+
}
|
|
55133
55211
|
}
|
|
55134
55212
|
|
|
55135
55213
|
await new Promise(resolve => {
|
|
@@ -55137,7 +55215,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55137
55215
|
});
|
|
55138
55216
|
},
|
|
55139
55217
|
|
|
55140
|
-
async
|
|
55218
|
+
async __P_44_3(commonjsModules, references, localModules, ws) {
|
|
55141
55219
|
const babelify = require("babelify");
|
|
55142
55220
|
|
|
55143
55221
|
const preset = require("@babel/preset-env");
|
|
@@ -55148,10 +55226,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55148
55226
|
// Make them equivalent.
|
|
55149
55227
|
|
|
55150
55228
|
|
|
55151
|
-
builtins.process = builtins._process;
|
|
55152
|
-
|
|
55153
|
-
commonjsModules = [...commonjsModules];
|
|
55154
|
-
return new Promise(resolve => {
|
|
55229
|
+
builtins.process = builtins._process;
|
|
55230
|
+
return new Promise(async resolve => {
|
|
55155
55231
|
let b = browserify([], {
|
|
55156
55232
|
builtins: builtins,
|
|
55157
55233
|
ignoreMissing: true,
|
|
@@ -55162,19 +55238,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55162
55238
|
b._mdeps.on("missing", (id, parent) => {
|
|
55163
55239
|
let message = [];
|
|
55164
55240
|
message.push(`ERROR: could not locate require()d module: "${id}"`);
|
|
55241
|
+
message.push(" required from:");
|
|
55165
55242
|
|
|
55166
|
-
|
|
55167
|
-
|
|
55168
|
-
|
|
55169
|
-
|
|
55170
|
-
[...references[id]].forEach(refs => {
|
|
55171
|
-
refs.forEach(ref => {
|
|
55172
|
-
message.push(` ${ref}`);
|
|
55173
|
-
});
|
|
55243
|
+
try {
|
|
55244
|
+
[...references[id]].forEach(refs => {
|
|
55245
|
+
refs.forEach(ref => {
|
|
55246
|
+
message.push(` ${ref}`);
|
|
55174
55247
|
});
|
|
55175
|
-
}
|
|
55176
|
-
|
|
55177
|
-
|
|
55248
|
+
});
|
|
55249
|
+
} catch (e) {
|
|
55250
|
+
message.push(` <compile.json:application.localModules'>`);
|
|
55178
55251
|
}
|
|
55179
55252
|
|
|
55180
55253
|
qx.tool.compiler.Console.error(message.join("\n"));
|
|
@@ -63404,8 +63477,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63404
63477
|
this.argv["machine-readable"] = false;
|
|
63405
63478
|
this.argv["feedback"] = false;
|
|
63406
63479
|
await qx.tool.cli.commands.Run.superclass.prototype.process.call(this);
|
|
63407
|
-
|
|
63408
|
-
let config = this._getConfig();
|
|
63480
|
+
let config = this.getCompilerApi().getConfiguration();
|
|
63409
63481
|
|
|
63410
63482
|
if (!config.run) {
|
|
63411
63483
|
qx.tool.compiler.Console.print("qx.tool.cli.run.noRunConfig");
|
|
@@ -63699,8 +63771,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63699
63771
|
this.__P_14_0 = defaultMaker === null;
|
|
63700
63772
|
}
|
|
63701
63773
|
|
|
63702
|
-
|
|
63703
|
-
|
|
63774
|
+
let config = this.getCompilerApi().getConfiguration();
|
|
63704
63775
|
const app = express();
|
|
63705
63776
|
app.use((req, res, next) => {
|
|
63706
63777
|
res.set({
|
|
@@ -72106,69 +72177,27 @@ qx.$$packageData['0'] = {
|
|
|
72106
72177
|
}
|
|
72107
72178
|
},
|
|
72108
72179
|
"resources": {
|
|
72109
|
-
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
72110
|
-
6,
|
|
72111
|
-
6,
|
|
72112
|
-
"png",
|
|
72113
|
-
"qx"
|
|
72114
|
-
],
|
|
72115
|
-
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
72116
|
-
6,
|
|
72117
|
-
2,
|
|
72118
|
-
"png",
|
|
72119
|
-
"qx"
|
|
72120
|
-
],
|
|
72121
|
-
"qx/decoration/Simple/checkbox/checked.png": [
|
|
72122
|
-
6,
|
|
72123
|
-
6,
|
|
72124
|
-
"png",
|
|
72125
|
-
"qx"
|
|
72126
|
-
],
|
|
72127
|
-
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
72128
|
-
6,
|
|
72129
|
-
2,
|
|
72130
|
-
"png",
|
|
72131
|
-
"qx"
|
|
72132
|
-
],
|
|
72133
|
-
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
72134
|
-
19,
|
|
72135
|
-
256,
|
|
72136
|
-
"png",
|
|
72137
|
-
"qx"
|
|
72138
|
-
],
|
|
72139
|
-
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
72140
|
-
35,
|
|
72141
|
-
11,
|
|
72142
|
-
"gif",
|
|
72143
|
-
"qx"
|
|
72144
|
-
],
|
|
72145
|
-
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
72146
|
-
11,
|
|
72147
|
-
11,
|
|
72148
|
-
"gif",
|
|
72149
|
-
"qx"
|
|
72150
|
-
],
|
|
72151
|
-
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
72152
|
-
256,
|
|
72153
|
-
256,
|
|
72154
|
-
"jpg",
|
|
72155
|
-
"qx"
|
|
72156
|
-
],
|
|
72157
72180
|
"qx/decoration/Simple/arrows/down-invert.gif": [
|
|
72158
72181
|
7,
|
|
72159
72182
|
4,
|
|
72160
72183
|
"gif",
|
|
72161
72184
|
"qx"
|
|
72162
72185
|
],
|
|
72186
|
+
"qx/decoration/Simple/arrows/down-small.gif": [
|
|
72187
|
+
5,
|
|
72188
|
+
3,
|
|
72189
|
+
"gif",
|
|
72190
|
+
"qx"
|
|
72191
|
+
],
|
|
72163
72192
|
"qx/decoration/Simple/arrows/down.gif": [
|
|
72164
72193
|
7,
|
|
72165
72194
|
4,
|
|
72166
72195
|
"gif",
|
|
72167
72196
|
"qx"
|
|
72168
72197
|
],
|
|
72169
|
-
"qx/decoration/Simple/arrows/
|
|
72170
|
-
|
|
72171
|
-
|
|
72198
|
+
"qx/decoration/Simple/arrows/left-invert.gif": [
|
|
72199
|
+
4,
|
|
72200
|
+
7,
|
|
72172
72201
|
"gif",
|
|
72173
72202
|
"qx"
|
|
72174
72203
|
],
|
|
@@ -72178,13 +72207,13 @@ qx.$$packageData['0'] = {
|
|
|
72178
72207
|
"gif",
|
|
72179
72208
|
"qx"
|
|
72180
72209
|
],
|
|
72181
|
-
"qx/decoration/Simple/arrows/left
|
|
72210
|
+
"qx/decoration/Simple/arrows/left.gif": [
|
|
72182
72211
|
4,
|
|
72183
72212
|
7,
|
|
72184
72213
|
"gif",
|
|
72185
72214
|
"qx"
|
|
72186
72215
|
],
|
|
72187
|
-
"qx/decoration/Simple/arrows/
|
|
72216
|
+
"qx/decoration/Simple/arrows/right-invert.gif": [
|
|
72188
72217
|
4,
|
|
72189
72218
|
7,
|
|
72190
72219
|
"gif",
|
|
@@ -72196,9 +72225,9 @@ qx.$$packageData['0'] = {
|
|
|
72196
72225
|
"gif",
|
|
72197
72226
|
"qx"
|
|
72198
72227
|
],
|
|
72199
|
-
"qx/decoration/Simple/arrows/
|
|
72200
|
-
4,
|
|
72228
|
+
"qx/decoration/Simple/arrows/up-invert.gif": [
|
|
72201
72229
|
7,
|
|
72230
|
+
4,
|
|
72202
72231
|
"gif",
|
|
72203
72232
|
"qx"
|
|
72204
72233
|
],
|
|
@@ -72208,67 +72237,79 @@ qx.$$packageData['0'] = {
|
|
|
72208
72237
|
"gif",
|
|
72209
72238
|
"qx"
|
|
72210
72239
|
],
|
|
72211
|
-
"qx/decoration/Simple/arrows/up-invert.gif": [
|
|
72212
|
-
7,
|
|
72213
|
-
4,
|
|
72214
|
-
"gif",
|
|
72215
|
-
"qx"
|
|
72216
|
-
],
|
|
72217
72240
|
"qx/decoration/Simple/arrows/up-small.gif": [
|
|
72218
72241
|
5,
|
|
72219
72242
|
3,
|
|
72220
72243
|
"gif",
|
|
72221
72244
|
"qx"
|
|
72222
72245
|
],
|
|
72246
|
+
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
72247
|
+
19,
|
|
72248
|
+
256,
|
|
72249
|
+
"png",
|
|
72250
|
+
"qx"
|
|
72251
|
+
],
|
|
72223
72252
|
"qx/decoration/Simple/arrows/up.gif": [
|
|
72224
72253
|
7,
|
|
72225
72254
|
4,
|
|
72226
72255
|
"gif",
|
|
72227
72256
|
"qx"
|
|
72228
72257
|
],
|
|
72229
|
-
"qx/decoration/Simple/
|
|
72230
|
-
|
|
72231
|
-
|
|
72258
|
+
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
72259
|
+
35,
|
|
72260
|
+
11,
|
|
72232
72261
|
"gif",
|
|
72233
72262
|
"qx"
|
|
72234
72263
|
],
|
|
72235
|
-
"qx/decoration/Simple/
|
|
72236
|
-
|
|
72237
|
-
|
|
72238
|
-
"
|
|
72264
|
+
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
72265
|
+
256,
|
|
72266
|
+
256,
|
|
72267
|
+
"jpg",
|
|
72239
72268
|
"qx"
|
|
72240
72269
|
],
|
|
72241
|
-
"qx/decoration/Simple/
|
|
72242
|
-
|
|
72243
|
-
|
|
72270
|
+
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
72271
|
+
11,
|
|
72272
|
+
11,
|
|
72244
72273
|
"gif",
|
|
72245
72274
|
"qx"
|
|
72246
72275
|
],
|
|
72247
|
-
"qx/decoration/Simple/
|
|
72248
|
-
|
|
72249
|
-
|
|
72250
|
-
"
|
|
72276
|
+
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
72277
|
+
6,
|
|
72278
|
+
6,
|
|
72279
|
+
"png",
|
|
72251
72280
|
"qx"
|
|
72252
72281
|
],
|
|
72253
|
-
"qx/decoration/Simple/
|
|
72254
|
-
|
|
72255
|
-
|
|
72282
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
72283
|
+
6,
|
|
72284
|
+
2,
|
|
72256
72285
|
"png",
|
|
72257
72286
|
"qx"
|
|
72258
72287
|
],
|
|
72259
|
-
"qx/decoration/Simple/
|
|
72260
|
-
|
|
72261
|
-
|
|
72288
|
+
"qx/decoration/Simple/checkbox/checked.png": [
|
|
72289
|
+
6,
|
|
72290
|
+
6,
|
|
72262
72291
|
"png",
|
|
72263
72292
|
"qx"
|
|
72264
72293
|
],
|
|
72265
|
-
"qx/decoration/Simple/
|
|
72294
|
+
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
72295
|
+
6,
|
|
72296
|
+
2,
|
|
72297
|
+
"png",
|
|
72298
|
+
"qx"
|
|
72299
|
+
],
|
|
72300
|
+
"qx/decoration/Simple/cursors/copy.gif": [
|
|
72266
72301
|
19,
|
|
72267
72302
|
15,
|
|
72268
72303
|
"gif",
|
|
72269
72304
|
"qx"
|
|
72270
72305
|
],
|
|
72271
|
-
"qx/decoration/Simple/cursors/
|
|
72306
|
+
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
72307
|
+
20,
|
|
72308
|
+
20,
|
|
72309
|
+
"gif",
|
|
72310
|
+
"qx"
|
|
72311
|
+
],
|
|
72312
|
+
"qx/decoration/Simple/cursors/alias.gif": [
|
|
72272
72313
|
19,
|
|
72273
72314
|
15,
|
|
72274
72315
|
"gif",
|
|
@@ -72280,33 +72321,39 @@ qx.$$packageData['0'] = {
|
|
|
72280
72321
|
"gif",
|
|
72281
72322
|
"qx"
|
|
72282
72323
|
],
|
|
72283
|
-
"qx/decoration/Simple/
|
|
72284
|
-
|
|
72285
|
-
|
|
72324
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
72325
|
+
16,
|
|
72326
|
+
7,
|
|
72286
72327
|
"gif",
|
|
72287
72328
|
"qx"
|
|
72288
72329
|
],
|
|
72289
|
-
"qx/decoration/Simple/
|
|
72290
|
-
|
|
72291
|
-
|
|
72330
|
+
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
72331
|
+
16,
|
|
72332
|
+
7,
|
|
72292
72333
|
"gif",
|
|
72293
72334
|
"qx"
|
|
72294
72335
|
],
|
|
72295
|
-
"qx/decoration/Simple/
|
|
72296
|
-
19,
|
|
72336
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
72297
72337
|
16,
|
|
72338
|
+
5,
|
|
72298
72339
|
"gif",
|
|
72299
72340
|
"qx"
|
|
72300
72341
|
],
|
|
72301
|
-
"qx/decoration/Simple/
|
|
72302
|
-
19,
|
|
72342
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
72303
72343
|
16,
|
|
72344
|
+
5,
|
|
72304
72345
|
"gif",
|
|
72305
72346
|
"qx"
|
|
72306
72347
|
],
|
|
72307
|
-
"qx/decoration/Simple/
|
|
72308
|
-
10,
|
|
72348
|
+
"qx/decoration/Simple/tabview/close.gif": [
|
|
72309
72349
|
10,
|
|
72350
|
+
9,
|
|
72351
|
+
"gif",
|
|
72352
|
+
"qx"
|
|
72353
|
+
],
|
|
72354
|
+
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
72355
|
+
1,
|
|
72356
|
+
8,
|
|
72310
72357
|
"png",
|
|
72311
72358
|
"qx"
|
|
72312
72359
|
],
|
|
@@ -72316,25 +72363,37 @@ qx.$$packageData['0'] = {
|
|
|
72316
72363
|
"png",
|
|
72317
72364
|
"qx"
|
|
72318
72365
|
],
|
|
72366
|
+
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
72367
|
+
8,
|
|
72368
|
+
1,
|
|
72369
|
+
"png",
|
|
72370
|
+
"qx"
|
|
72371
|
+
],
|
|
72319
72372
|
"qx/decoration/Simple/table/boolean-false.png": [
|
|
72320
72373
|
11,
|
|
72321
72374
|
11,
|
|
72322
72375
|
"png",
|
|
72323
72376
|
"qx"
|
|
72324
72377
|
],
|
|
72378
|
+
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
72379
|
+
10,
|
|
72380
|
+
10,
|
|
72381
|
+
"png",
|
|
72382
|
+
"qx"
|
|
72383
|
+
],
|
|
72325
72384
|
"qx/decoration/Simple/table/boolean-true.png": [
|
|
72326
72385
|
11,
|
|
72327
72386
|
11,
|
|
72328
72387
|
"png",
|
|
72329
72388
|
"qx"
|
|
72330
72389
|
],
|
|
72331
|
-
"qx/decoration/Simple/table/descending
|
|
72390
|
+
"qx/decoration/Simple/table/descending.png": [
|
|
72332
72391
|
10,
|
|
72333
72392
|
10,
|
|
72334
72393
|
"png",
|
|
72335
72394
|
"qx"
|
|
72336
72395
|
],
|
|
72337
|
-
"qx/decoration/Simple/table/descending.png": [
|
|
72396
|
+
"qx/decoration/Simple/table/descending-invert.png": [
|
|
72338
72397
|
10,
|
|
72339
72398
|
10,
|
|
72340
72399
|
"png",
|
|
@@ -72346,123 +72405,135 @@ qx.$$packageData['0'] = {
|
|
|
72346
72405
|
"png",
|
|
72347
72406
|
"qx"
|
|
72348
72407
|
],
|
|
72349
|
-
"qx/decoration/Simple/
|
|
72350
|
-
|
|
72351
|
-
|
|
72408
|
+
"qx/decoration/Simple/treevirtual/cross.gif": [
|
|
72409
|
+
19,
|
|
72410
|
+
16,
|
|
72352
72411
|
"gif",
|
|
72353
72412
|
"qx"
|
|
72354
72413
|
],
|
|
72355
|
-
"qx/decoration/Simple/
|
|
72356
|
-
|
|
72357
|
-
|
|
72414
|
+
"qx/decoration/Simple/treevirtual/cross_minus.gif": [
|
|
72415
|
+
19,
|
|
72416
|
+
16,
|
|
72358
72417
|
"gif",
|
|
72359
72418
|
"qx"
|
|
72360
72419
|
],
|
|
72361
|
-
"qx/decoration/Simple/
|
|
72362
|
-
|
|
72363
|
-
|
|
72420
|
+
"qx/decoration/Simple/treevirtual/cross_plus.gif": [
|
|
72421
|
+
19,
|
|
72422
|
+
16,
|
|
72364
72423
|
"gif",
|
|
72365
72424
|
"qx"
|
|
72366
72425
|
],
|
|
72367
|
-
"qx/decoration/Simple/
|
|
72368
|
-
|
|
72369
|
-
|
|
72426
|
+
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
72427
|
+
19,
|
|
72428
|
+
16,
|
|
72370
72429
|
"gif",
|
|
72371
72430
|
"qx"
|
|
72372
72431
|
],
|
|
72373
|
-
"qx/decoration/Simple/
|
|
72374
|
-
|
|
72375
|
-
|
|
72432
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
72433
|
+
19,
|
|
72434
|
+
16,
|
|
72376
72435
|
"gif",
|
|
72377
72436
|
"qx"
|
|
72378
72437
|
],
|
|
72379
|
-
"qx/decoration/Simple/
|
|
72380
|
-
|
|
72381
|
-
|
|
72438
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
72439
|
+
19,
|
|
72440
|
+
16,
|
|
72382
72441
|
"gif",
|
|
72383
72442
|
"qx"
|
|
72384
72443
|
],
|
|
72385
|
-
"qx/decoration/Simple/
|
|
72386
|
-
|
|
72387
|
-
|
|
72444
|
+
"qx/decoration/Simple/treevirtual/only_plus.gif": [
|
|
72445
|
+
19,
|
|
72446
|
+
16,
|
|
72388
72447
|
"gif",
|
|
72389
72448
|
"qx"
|
|
72390
72449
|
],
|
|
72391
|
-
"qx/decoration/Simple/
|
|
72392
|
-
|
|
72393
|
-
|
|
72450
|
+
"qx/decoration/Simple/treevirtual/start.gif": [
|
|
72451
|
+
19,
|
|
72452
|
+
16,
|
|
72394
72453
|
"gif",
|
|
72395
72454
|
"qx"
|
|
72396
72455
|
],
|
|
72397
|
-
"qx/decoration/Simple/treevirtual/
|
|
72456
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
72398
72457
|
19,
|
|
72399
72458
|
16,
|
|
72400
72459
|
"gif",
|
|
72401
72460
|
"qx"
|
|
72402
72461
|
],
|
|
72403
|
-
"qx/decoration/Simple/treevirtual/
|
|
72462
|
+
"qx/decoration/Simple/treevirtual/only_minus.gif": [
|
|
72404
72463
|
19,
|
|
72405
72464
|
16,
|
|
72406
72465
|
"gif",
|
|
72407
72466
|
"qx"
|
|
72408
72467
|
],
|
|
72409
|
-
"qx/decoration/Simple/treevirtual/
|
|
72468
|
+
"qx/decoration/Simple/treevirtual/start_minus.gif": [
|
|
72410
72469
|
19,
|
|
72411
72470
|
16,
|
|
72412
72471
|
"gif",
|
|
72413
72472
|
"qx"
|
|
72414
72473
|
],
|
|
72415
|
-
"qx/decoration/Simple/treevirtual/
|
|
72474
|
+
"qx/decoration/Simple/treevirtual/start_plus.gif": [
|
|
72416
72475
|
19,
|
|
72417
72476
|
16,
|
|
72418
72477
|
"gif",
|
|
72419
72478
|
"qx"
|
|
72420
72479
|
],
|
|
72421
|
-
"qx/decoration/Simple/
|
|
72480
|
+
"qx/decoration/Simple/tree/minus.gif": [
|
|
72422
72481
|
19,
|
|
72423
72482
|
16,
|
|
72424
72483
|
"gif",
|
|
72425
72484
|
"qx"
|
|
72426
72485
|
],
|
|
72427
|
-
"qx/decoration/Simple/
|
|
72486
|
+
"qx/decoration/Simple/tree/plus.gif": [
|
|
72428
72487
|
19,
|
|
72429
72488
|
16,
|
|
72430
72489
|
"gif",
|
|
72431
72490
|
"qx"
|
|
72432
72491
|
],
|
|
72433
|
-
"qx/decoration/Simple/
|
|
72434
|
-
|
|
72435
|
-
|
|
72492
|
+
"qx/decoration/Simple/window/close-white.gif": [
|
|
72493
|
+
10,
|
|
72494
|
+
9,
|
|
72436
72495
|
"gif",
|
|
72437
72496
|
"qx"
|
|
72438
72497
|
],
|
|
72439
|
-
"qx/decoration/Simple/
|
|
72440
|
-
|
|
72441
|
-
|
|
72498
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
72499
|
+
10,
|
|
72500
|
+
9,
|
|
72442
72501
|
"gif",
|
|
72443
72502
|
"qx"
|
|
72444
72503
|
],
|
|
72445
|
-
"qx/decoration/Simple/
|
|
72446
|
-
|
|
72447
|
-
|
|
72504
|
+
"qx/decoration/Simple/window/maximize.gif": [
|
|
72505
|
+
9,
|
|
72506
|
+
9,
|
|
72448
72507
|
"gif",
|
|
72449
72508
|
"qx"
|
|
72450
72509
|
],
|
|
72451
|
-
"qx/decoration/Simple/
|
|
72452
|
-
|
|
72453
|
-
|
|
72510
|
+
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
72511
|
+
9,
|
|
72512
|
+
9,
|
|
72454
72513
|
"gif",
|
|
72455
72514
|
"qx"
|
|
72456
72515
|
],
|
|
72457
|
-
"qx/decoration/Simple/
|
|
72458
|
-
|
|
72459
|
-
|
|
72516
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
72517
|
+
9,
|
|
72518
|
+
9,
|
|
72460
72519
|
"gif",
|
|
72461
72520
|
"qx"
|
|
72462
72521
|
],
|
|
72463
|
-
"qx/decoration/Simple/
|
|
72464
|
-
|
|
72465
|
-
|
|
72522
|
+
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
72523
|
+
9,
|
|
72524
|
+
9,
|
|
72525
|
+
"gif",
|
|
72526
|
+
"qx"
|
|
72527
|
+
],
|
|
72528
|
+
"qx/decoration/Simple/window/restore-white.gif": [
|
|
72529
|
+
8,
|
|
72530
|
+
9,
|
|
72531
|
+
"gif",
|
|
72532
|
+
"qx"
|
|
72533
|
+
],
|
|
72534
|
+
"qx/decoration/Simple/window/restore.gif": [
|
|
72535
|
+
8,
|
|
72536
|
+
9,
|
|
72466
72537
|
"gif",
|
|
72467
72538
|
"qx"
|
|
72468
72539
|
],
|
|
@@ -72484,37 +72555,37 @@ qx.$$packageData['0'] = {
|
|
|
72484
72555
|
"",
|
|
72485
72556
|
"qx"
|
|
72486
72557
|
],
|
|
72487
|
-
"qx/tool/bin/
|
|
72558
|
+
"qx/tool/bin/download-assets": [
|
|
72488
72559
|
null,
|
|
72489
72560
|
null,
|
|
72490
72561
|
"",
|
|
72491
72562
|
"qx"
|
|
72492
72563
|
],
|
|
72493
|
-
"qx/tool/bin/
|
|
72564
|
+
"qx/tool/bin/build-website": [
|
|
72494
72565
|
null,
|
|
72495
72566
|
null,
|
|
72496
72567
|
"",
|
|
72497
72568
|
"qx"
|
|
72498
72569
|
],
|
|
72499
|
-
"qx/tool/schema/
|
|
72570
|
+
"qx/tool/schema/compile-1-0-0.json": [
|
|
72500
72571
|
null,
|
|
72501
72572
|
null,
|
|
72502
72573
|
"json",
|
|
72503
72574
|
"qx"
|
|
72504
72575
|
],
|
|
72505
|
-
"qx/tool/schema/
|
|
72576
|
+
"qx/tool/schema/Manifest-1-0-0.json": [
|
|
72506
72577
|
null,
|
|
72507
72578
|
null,
|
|
72508
72579
|
"json",
|
|
72509
72580
|
"qx"
|
|
72510
72581
|
],
|
|
72511
|
-
"qx/tool/schema/
|
|
72582
|
+
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
72512
72583
|
null,
|
|
72513
72584
|
null,
|
|
72514
72585
|
"json",
|
|
72515
72586
|
"qx"
|
|
72516
72587
|
],
|
|
72517
|
-
"qx/tool/schema/
|
|
72588
|
+
"qx/tool/schema/qooxdoo-1-0-0.json": [
|
|
72518
72589
|
null,
|
|
72519
72590
|
null,
|
|
72520
72591
|
"json",
|
|
@@ -72538,10 +72609,10 @@ qx.$$packageData['0'] = {
|
|
|
72538
72609
|
"txt",
|
|
72539
72610
|
"qx"
|
|
72540
72611
|
],
|
|
72541
|
-
"qx/tool/website/
|
|
72612
|
+
"qx/tool/website/sass/qooxdoo.scss": [
|
|
72542
72613
|
null,
|
|
72543
72614
|
null,
|
|
72544
|
-
"
|
|
72615
|
+
"scss",
|
|
72545
72616
|
"qx"
|
|
72546
72617
|
],
|
|
72547
72618
|
"qx/tool/website/build/about.html": [
|
|
@@ -72550,22 +72621,22 @@ qx.$$packageData['0'] = {
|
|
|
72550
72621
|
"html",
|
|
72551
72622
|
"qx"
|
|
72552
72623
|
],
|
|
72553
|
-
"qx/tool/website/build/
|
|
72624
|
+
"qx/tool/website/build/404.html": [
|
|
72554
72625
|
null,
|
|
72555
72626
|
null,
|
|
72556
72627
|
"html",
|
|
72557
72628
|
"qx"
|
|
72558
72629
|
],
|
|
72559
|
-
"qx/tool/website/build/
|
|
72630
|
+
"qx/tool/website/build/index.html": [
|
|
72560
72631
|
null,
|
|
72561
72632
|
null,
|
|
72562
|
-
"
|
|
72633
|
+
"html",
|
|
72563
72634
|
"qx"
|
|
72564
72635
|
],
|
|
72565
|
-
"qx/tool/website/
|
|
72636
|
+
"qx/tool/website/build/qooxdoo.css": [
|
|
72566
72637
|
null,
|
|
72567
72638
|
null,
|
|
72568
|
-
"
|
|
72639
|
+
"css",
|
|
72569
72640
|
"qx"
|
|
72570
72641
|
],
|
|
72571
72642
|
"qx/tool/website/partials/footer.html": [
|
|
@@ -72574,13 +72645,13 @@ qx.$$packageData['0'] = {
|
|
|
72574
72645
|
"html",
|
|
72575
72646
|
"qx"
|
|
72576
72647
|
],
|
|
72577
|
-
"qx/tool/website/partials/
|
|
72648
|
+
"qx/tool/website/partials/header.html": [
|
|
72578
72649
|
null,
|
|
72579
72650
|
null,
|
|
72580
72651
|
"html",
|
|
72581
72652
|
"qx"
|
|
72582
72653
|
],
|
|
72583
|
-
"qx/tool/website/partials/
|
|
72654
|
+
"qx/tool/website/partials/head.html": [
|
|
72584
72655
|
null,
|
|
72585
72656
|
null,
|
|
72586
72657
|
"html",
|
|
@@ -72592,12 +72663,6 @@ qx.$$packageData['0'] = {
|
|
|
72592
72663
|
"html",
|
|
72593
72664
|
"qx"
|
|
72594
72665
|
],
|
|
72595
|
-
"qx/tool/website/partials/icon-github.svg": [
|
|
72596
|
-
16,
|
|
72597
|
-
16,
|
|
72598
|
-
"svg",
|
|
72599
|
-
"qx"
|
|
72600
|
-
],
|
|
72601
72666
|
"qx/tool/website/partials/icon-twitter.html": [
|
|
72602
72667
|
null,
|
|
72603
72668
|
null,
|
|
@@ -72610,6 +72675,18 @@ qx.$$packageData['0'] = {
|
|
|
72610
72675
|
"svg",
|
|
72611
72676
|
"qx"
|
|
72612
72677
|
],
|
|
72678
|
+
"qx/tool/website/partials/icon-github.svg": [
|
|
72679
|
+
16,
|
|
72680
|
+
16,
|
|
72681
|
+
"svg",
|
|
72682
|
+
"qx"
|
|
72683
|
+
],
|
|
72684
|
+
"qx/tool/website/layouts/default.dot": [
|
|
72685
|
+
null,
|
|
72686
|
+
null,
|
|
72687
|
+
"dot",
|
|
72688
|
+
"qx"
|
|
72689
|
+
],
|
|
72613
72690
|
"qx/tool/website/src/404.html": [
|
|
72614
72691
|
null,
|
|
72615
72692
|
null,
|
|
@@ -72628,12 +72705,6 @@ qx.$$packageData['0'] = {
|
|
|
72628
72705
|
"html",
|
|
72629
72706
|
"qx"
|
|
72630
72707
|
],
|
|
72631
|
-
"qx/tool/website/sass/qooxdoo.scss": [
|
|
72632
|
-
null,
|
|
72633
|
-
null,
|
|
72634
|
-
"scss",
|
|
72635
|
-
"qx"
|
|
72636
|
-
],
|
|
72637
72708
|
"qx/tool/cli/templates/class/default.tmpl.js": [
|
|
72638
72709
|
null,
|
|
72639
72710
|
null,
|
|
@@ -72646,7 +72717,7 @@ qx.$$packageData['0'] = {
|
|
|
72646
72717
|
"js",
|
|
72647
72718
|
"qx"
|
|
72648
72719
|
],
|
|
72649
|
-
"qx/tool/cli/templates/class/
|
|
72720
|
+
"qx/tool/cli/templates/class/singleton.tmpl.js": [
|
|
72650
72721
|
null,
|
|
72651
72722
|
null,
|
|
72652
72723
|
"js",
|
|
@@ -72658,7 +72729,7 @@ qx.$$packageData['0'] = {
|
|
|
72658
72729
|
"js",
|
|
72659
72730
|
"qx"
|
|
72660
72731
|
],
|
|
72661
|
-
"qx/tool/cli/templates/class/
|
|
72732
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
72662
72733
|
null,
|
|
72663
72734
|
null,
|
|
72664
72735
|
"js",
|
|
@@ -72682,10 +72753,28 @@ qx.$$packageData['0'] = {
|
|
|
72682
72753
|
"js",
|
|
72683
72754
|
"qx"
|
|
72684
72755
|
],
|
|
72685
|
-
"qx/tool/website/build/
|
|
72756
|
+
"qx/tool/website/build/diagnostics/dependson.js": [
|
|
72686
72757
|
null,
|
|
72687
72758
|
null,
|
|
72688
|
-
"
|
|
72759
|
+
"js",
|
|
72760
|
+
"qx"
|
|
72761
|
+
],
|
|
72762
|
+
"qx/tool/website/build/diagnostics/dependson.html": [
|
|
72763
|
+
null,
|
|
72764
|
+
null,
|
|
72765
|
+
"html",
|
|
72766
|
+
"qx"
|
|
72767
|
+
],
|
|
72768
|
+
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72769
|
+
null,
|
|
72770
|
+
null,
|
|
72771
|
+
"html",
|
|
72772
|
+
"qx"
|
|
72773
|
+
],
|
|
72774
|
+
"qx/tool/website/build/diagnostics/requiredby.js": [
|
|
72775
|
+
null,
|
|
72776
|
+
null,
|
|
72777
|
+
"js",
|
|
72689
72778
|
"qx"
|
|
72690
72779
|
],
|
|
72691
72780
|
"qx/tool/website/build/assets/bluebird.min.js": [
|
|
@@ -72694,6 +72783,12 @@ qx.$$packageData['0'] = {
|
|
|
72694
72783
|
"js",
|
|
72695
72784
|
"qx"
|
|
72696
72785
|
],
|
|
72786
|
+
"qx/tool/website/build/assets/abel.css": [
|
|
72787
|
+
null,
|
|
72788
|
+
null,
|
|
72789
|
+
"css",
|
|
72790
|
+
"qx"
|
|
72791
|
+
],
|
|
72697
72792
|
"qx/tool/website/build/assets/bootstrap.css": [
|
|
72698
72793
|
null,
|
|
72699
72794
|
null,
|
|
@@ -72724,22 +72819,22 @@ qx.$$packageData['0'] = {
|
|
|
72724
72819
|
"png",
|
|
72725
72820
|
"qx"
|
|
72726
72821
|
],
|
|
72727
|
-
"qx/tool/website/build/assets/
|
|
72822
|
+
"qx/tool/website/build/assets/jquery.js": [
|
|
72728
72823
|
null,
|
|
72729
72824
|
null,
|
|
72730
72825
|
"js",
|
|
72731
72826
|
"qx"
|
|
72732
72827
|
],
|
|
72733
|
-
"qx/tool/website/build/assets/
|
|
72828
|
+
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
72734
72829
|
null,
|
|
72735
72830
|
null,
|
|
72736
72831
|
"js",
|
|
72737
72832
|
"qx"
|
|
72738
72833
|
],
|
|
72739
|
-
"qx/tool/website/build/assets/
|
|
72740
|
-
|
|
72741
|
-
|
|
72742
|
-
"
|
|
72834
|
+
"qx/tool/website/build/assets/qx-ide.png": [
|
|
72835
|
+
3183,
|
|
72836
|
+
1752,
|
|
72837
|
+
"png",
|
|
72743
72838
|
"qx"
|
|
72744
72839
|
],
|
|
72745
72840
|
"qx/tool/website/build/assets/qx-api.png": [
|
|
@@ -72748,10 +72843,10 @@ qx.$$packageData['0'] = {
|
|
|
72748
72843
|
"png",
|
|
72749
72844
|
"qx"
|
|
72750
72845
|
],
|
|
72751
|
-
"qx/tool/website/build/assets/
|
|
72752
|
-
|
|
72753
|
-
|
|
72754
|
-
"
|
|
72846
|
+
"qx/tool/website/build/assets/logo.svg": [
|
|
72847
|
+
512,
|
|
72848
|
+
145,
|
|
72849
|
+
"svg",
|
|
72755
72850
|
"qx"
|
|
72756
72851
|
],
|
|
72757
72852
|
"qx/tool/website/build/assets/qx-oo.png": [
|
|
@@ -72766,31 +72861,13 @@ qx.$$packageData['0'] = {
|
|
|
72766
72861
|
"svg",
|
|
72767
72862
|
"qx"
|
|
72768
72863
|
],
|
|
72769
|
-
"qx/tool/website/build/
|
|
72770
|
-
null,
|
|
72771
|
-
null,
|
|
72772
|
-
"html",
|
|
72773
|
-
"qx"
|
|
72774
|
-
],
|
|
72775
|
-
"qx/tool/website/build/diagnostics/dependson.js": [
|
|
72776
|
-
null,
|
|
72777
|
-
null,
|
|
72778
|
-
"js",
|
|
72779
|
-
"qx"
|
|
72780
|
-
],
|
|
72781
|
-
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72782
|
-
null,
|
|
72783
|
-
null,
|
|
72784
|
-
"html",
|
|
72785
|
-
"qx"
|
|
72786
|
-
],
|
|
72787
|
-
"qx/tool/website/build/diagnostics/requiredby.js": [
|
|
72864
|
+
"qx/tool/website/build/scripts/serve.js": [
|
|
72788
72865
|
null,
|
|
72789
72866
|
null,
|
|
72790
72867
|
"js",
|
|
72791
72868
|
"qx"
|
|
72792
72869
|
],
|
|
72793
|
-
"qx/tool/website/
|
|
72870
|
+
"qx/tool/website/src/assets/bluebird.min.js": [
|
|
72794
72871
|
null,
|
|
72795
72872
|
null,
|
|
72796
72873
|
"js",
|
|
@@ -72802,10 +72879,10 @@ qx.$$packageData['0'] = {
|
|
|
72802
72879
|
"css",
|
|
72803
72880
|
"qx"
|
|
72804
72881
|
],
|
|
72805
|
-
"qx/tool/website/src/assets/
|
|
72882
|
+
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72806
72883
|
null,
|
|
72807
72884
|
null,
|
|
72808
|
-
"
|
|
72885
|
+
"css",
|
|
72809
72886
|
"qx"
|
|
72810
72887
|
],
|
|
72811
72888
|
"qx/tool/website/src/assets/bootstrap.css": [
|
|
@@ -72814,19 +72891,19 @@ qx.$$packageData['0'] = {
|
|
|
72814
72891
|
"css",
|
|
72815
72892
|
"qx"
|
|
72816
72893
|
],
|
|
72817
|
-
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72894
|
+
"qx/tool/website/src/assets/bootstrap.min.css.map": [
|
|
72818
72895
|
null,
|
|
72819
72896
|
null,
|
|
72820
|
-
"
|
|
72897
|
+
"map",
|
|
72821
72898
|
"qx"
|
|
72822
72899
|
],
|
|
72823
|
-
"qx/tool/website/src/assets/
|
|
72900
|
+
"qx/tool/website/src/assets/buttons.js": [
|
|
72824
72901
|
null,
|
|
72825
72902
|
null,
|
|
72826
|
-
"
|
|
72903
|
+
"js",
|
|
72827
72904
|
"qx"
|
|
72828
72905
|
],
|
|
72829
|
-
"qx/tool/website/src/assets/
|
|
72906
|
+
"qx/tool/website/src/assets/jquery.js": [
|
|
72830
72907
|
null,
|
|
72831
72908
|
null,
|
|
72832
72909
|
"js",
|
|
@@ -72838,12 +72915,6 @@ qx.$$packageData['0'] = {
|
|
|
72838
72915
|
"png",
|
|
72839
72916
|
"qx"
|
|
72840
72917
|
],
|
|
72841
|
-
"qx/tool/website/src/assets/jquery.js": [
|
|
72842
|
-
null,
|
|
72843
|
-
null,
|
|
72844
|
-
"js",
|
|
72845
|
-
"qx"
|
|
72846
|
-
],
|
|
72847
72918
|
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
72848
72919
|
null,
|
|
72849
72920
|
null,
|
|
@@ -72856,15 +72927,21 @@ qx.$$packageData['0'] = {
|
|
|
72856
72927
|
"svg",
|
|
72857
72928
|
"qx"
|
|
72858
72929
|
],
|
|
72930
|
+
"qx/tool/website/src/assets/qx-api.png": [
|
|
72931
|
+
1144,
|
|
72932
|
+
640,
|
|
72933
|
+
"png",
|
|
72934
|
+
"qx"
|
|
72935
|
+
],
|
|
72859
72936
|
"qx/tool/website/src/assets/qx-ide.png": [
|
|
72860
72937
|
3183,
|
|
72861
72938
|
1752,
|
|
72862
72939
|
"png",
|
|
72863
72940
|
"qx"
|
|
72864
72941
|
],
|
|
72865
|
-
"qx/tool/website/src/assets/qx-
|
|
72866
|
-
|
|
72867
|
-
|
|
72942
|
+
"qx/tool/website/src/assets/qx-oo.png": [
|
|
72943
|
+
870,
|
|
72944
|
+
502,
|
|
72868
72945
|
"png",
|
|
72869
72946
|
"qx"
|
|
72870
72947
|
],
|
|
@@ -72874,22 +72951,16 @@ qx.$$packageData['0'] = {
|
|
|
72874
72951
|
"svg",
|
|
72875
72952
|
"qx"
|
|
72876
72953
|
],
|
|
72877
|
-
"qx/tool/website/src/
|
|
72878
|
-
870,
|
|
72879
|
-
502,
|
|
72880
|
-
"png",
|
|
72881
|
-
"qx"
|
|
72882
|
-
],
|
|
72883
|
-
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
72954
|
+
"qx/tool/website/src/diagnostics/dependson.html": [
|
|
72884
72955
|
null,
|
|
72885
72956
|
null,
|
|
72886
|
-
"
|
|
72957
|
+
"html",
|
|
72887
72958
|
"qx"
|
|
72888
72959
|
],
|
|
72889
|
-
"qx/tool/website/src/diagnostics/dependson.
|
|
72960
|
+
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
72890
72961
|
null,
|
|
72891
72962
|
null,
|
|
72892
|
-
"
|
|
72963
|
+
"js",
|
|
72893
72964
|
"qx"
|
|
72894
72965
|
],
|
|
72895
72966
|
"qx/tool/website/src/diagnostics/requiredby.html": [
|
|
@@ -72910,19 +72981,19 @@ qx.$$packageData['0'] = {
|
|
|
72910
72981
|
"js",
|
|
72911
72982
|
"qx"
|
|
72912
72983
|
],
|
|
72913
|
-
"qx/tool/cli/templates/skeleton/desktop
|
|
72984
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
72914
72985
|
null,
|
|
72915
72986
|
null,
|
|
72916
|
-
"
|
|
72987
|
+
"tmpl",
|
|
72917
72988
|
"qx"
|
|
72918
72989
|
],
|
|
72919
|
-
"qx/tool/cli/templates/skeleton/desktop
|
|
72990
|
+
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
|
|
72920
72991
|
null,
|
|
72921
72992
|
null,
|
|
72922
|
-
"
|
|
72993
|
+
"json",
|
|
72923
72994
|
"qx"
|
|
72924
72995
|
],
|
|
72925
|
-
"qx/tool/cli/templates/skeleton/desktop/
|
|
72996
|
+
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
|
|
72926
72997
|
null,
|
|
72927
72998
|
null,
|
|
72928
72999
|
"json",
|
|
@@ -72934,49 +73005,49 @@ qx.$$packageData['0'] = {
|
|
|
72934
73005
|
"md",
|
|
72935
73006
|
"qx"
|
|
72936
73007
|
],
|
|
72937
|
-
"qx/tool/cli/templates/skeleton/
|
|
73008
|
+
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
|
|
72938
73009
|
null,
|
|
72939
73010
|
null,
|
|
72940
73011
|
"tmpl",
|
|
72941
73012
|
"qx"
|
|
72942
73013
|
],
|
|
72943
|
-
"qx/tool/cli/templates/skeleton/
|
|
73014
|
+
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
|
|
72944
73015
|
null,
|
|
72945
73016
|
null,
|
|
72946
73017
|
"json",
|
|
72947
73018
|
"qx"
|
|
72948
73019
|
],
|
|
72949
|
-
"qx/tool/cli/templates/skeleton/
|
|
73020
|
+
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
|
|
72950
73021
|
null,
|
|
72951
73022
|
null,
|
|
72952
73023
|
"json",
|
|
72953
73024
|
"qx"
|
|
72954
73025
|
],
|
|
72955
|
-
"qx/tool/cli/templates/skeleton/
|
|
73026
|
+
"qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
|
|
72956
73027
|
null,
|
|
72957
73028
|
null,
|
|
72958
73029
|
"md",
|
|
72959
73030
|
"qx"
|
|
72960
73031
|
],
|
|
72961
|
-
"qx/tool/cli/templates/skeleton/
|
|
73032
|
+
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
|
|
72962
73033
|
null,
|
|
72963
73034
|
null,
|
|
72964
73035
|
"tmpl",
|
|
72965
73036
|
"qx"
|
|
72966
73037
|
],
|
|
72967
|
-
"qx/tool/cli/templates/skeleton/
|
|
73038
|
+
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
|
|
72968
73039
|
null,
|
|
72969
73040
|
null,
|
|
72970
73041
|
"json",
|
|
72971
73042
|
"qx"
|
|
72972
73043
|
],
|
|
72973
|
-
"qx/tool/cli/templates/skeleton/
|
|
73044
|
+
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
|
|
72974
73045
|
null,
|
|
72975
73046
|
null,
|
|
72976
73047
|
"json",
|
|
72977
73048
|
"qx"
|
|
72978
73049
|
],
|
|
72979
|
-
"qx/tool/cli/templates/skeleton/
|
|
73050
|
+
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
|
|
72980
73051
|
null,
|
|
72981
73052
|
null,
|
|
72982
73053
|
"md",
|
|
@@ -73024,25 +73095,25 @@ qx.$$packageData['0'] = {
|
|
|
73024
73095
|
"txt",
|
|
73025
73096
|
"qx"
|
|
73026
73097
|
],
|
|
73027
|
-
"qx/tool/cli/templates/skeleton/
|
|
73098
|
+
"qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
|
|
73028
73099
|
null,
|
|
73029
73100
|
null,
|
|
73030
|
-
"
|
|
73101
|
+
"txt",
|
|
73031
73102
|
"qx"
|
|
73032
73103
|
],
|
|
73033
|
-
"qx/tool/cli/templates/skeleton/mobile/source/boot/
|
|
73104
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
73034
73105
|
null,
|
|
73035
73106
|
null,
|
|
73036
73107
|
"html",
|
|
73037
73108
|
"qx"
|
|
73038
73109
|
],
|
|
73039
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
73110
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
73040
73111
|
null,
|
|
73041
73112
|
null,
|
|
73042
|
-
"
|
|
73113
|
+
"html",
|
|
73043
73114
|
"qx"
|
|
73044
73115
|
],
|
|
73045
|
-
"qx/tool/cli/templates/skeleton/
|
|
73116
|
+
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
73046
73117
|
null,
|
|
73047
73118
|
null,
|
|
73048
73119
|
"txt",
|
|
@@ -73054,18 +73125,6 @@ qx.$$packageData['0'] = {
|
|
|
73054
73125
|
"txt",
|
|
73055
73126
|
"qx"
|
|
73056
73127
|
],
|
|
73057
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
73058
|
-
null,
|
|
73059
|
-
null,
|
|
73060
|
-
"js",
|
|
73061
|
-
"qx"
|
|
73062
|
-
],
|
|
73063
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
|
|
73064
|
-
null,
|
|
73065
|
-
null,
|
|
73066
|
-
"js",
|
|
73067
|
-
"qx"
|
|
73068
|
-
],
|
|
73069
73128
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
|
|
73070
73129
|
180,
|
|
73071
73130
|
180,
|
|
@@ -73078,6 +73137,12 @@ qx.$$packageData['0'] = {
|
|
|
73078
73137
|
"png",
|
|
73079
73138
|
"qx"
|
|
73080
73139
|
],
|
|
73140
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
73141
|
+
null,
|
|
73142
|
+
null,
|
|
73143
|
+
"js",
|
|
73144
|
+
"qx"
|
|
73145
|
+
],
|
|
73081
73146
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
|
|
73082
73147
|
32,
|
|
73083
73148
|
32,
|
|
@@ -73090,12 +73155,36 @@ qx.$$packageData['0'] = {
|
|
|
73090
73155
|
"png",
|
|
73091
73156
|
"qx"
|
|
73092
73157
|
],
|
|
73158
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
|
|
73159
|
+
null,
|
|
73160
|
+
null,
|
|
73161
|
+
"js",
|
|
73162
|
+
"qx"
|
|
73163
|
+
],
|
|
73164
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
73165
|
+
32,
|
|
73166
|
+
32,
|
|
73167
|
+
"png",
|
|
73168
|
+
"qx"
|
|
73169
|
+
],
|
|
73170
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
73171
|
+
null,
|
|
73172
|
+
null,
|
|
73173
|
+
"js",
|
|
73174
|
+
"qx"
|
|
73175
|
+
],
|
|
73093
73176
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
|
|
73094
73177
|
null,
|
|
73095
73178
|
null,
|
|
73096
73179
|
"js",
|
|
73097
73180
|
"qx"
|
|
73098
73181
|
],
|
|
73182
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
|
|
73183
|
+
null,
|
|
73184
|
+
null,
|
|
73185
|
+
"js",
|
|
73186
|
+
"qx"
|
|
73187
|
+
],
|
|
73099
73188
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
|
|
73100
73189
|
null,
|
|
73101
73190
|
null,
|
|
@@ -73120,24 +73209,6 @@ qx.$$packageData['0'] = {
|
|
|
73120
73209
|
"png",
|
|
73121
73210
|
"qx"
|
|
73122
73211
|
],
|
|
73123
|
-
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
73124
|
-
32,
|
|
73125
|
-
32,
|
|
73126
|
-
"png",
|
|
73127
|
-
"qx"
|
|
73128
|
-
],
|
|
73129
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
73130
|
-
null,
|
|
73131
|
-
null,
|
|
73132
|
-
"js",
|
|
73133
|
-
"qx"
|
|
73134
|
-
],
|
|
73135
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
|
|
73136
|
-
null,
|
|
73137
|
-
null,
|
|
73138
|
-
"js",
|
|
73139
|
-
"qx"
|
|
73140
|
-
],
|
|
73141
73212
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
73142
73213
|
null,
|
|
73143
73214
|
null,
|
|
@@ -73156,12 +73227,6 @@ qx.$$packageData['0'] = {
|
|
|
73156
73227
|
"tmpl",
|
|
73157
73228
|
"qx"
|
|
73158
73229
|
],
|
|
73159
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73160
|
-
null,
|
|
73161
|
-
null,
|
|
73162
|
-
"js",
|
|
73163
|
-
"qx"
|
|
73164
|
-
],
|
|
73165
73230
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
|
|
73166
73231
|
null,
|
|
73167
73232
|
null,
|
|
@@ -73192,82 +73257,88 @@ qx.$$packageData['0'] = {
|
|
|
73192
73257
|
"js",
|
|
73193
73258
|
"qx"
|
|
73194
73259
|
],
|
|
73195
|
-
"qx/tool/cli/templates/skeleton/
|
|
73260
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73196
73261
|
null,
|
|
73197
73262
|
null,
|
|
73198
73263
|
"js",
|
|
73199
73264
|
"qx"
|
|
73200
73265
|
],
|
|
73201
|
-
"qx/tool/cli/templates/skeleton/
|
|
73266
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
73202
73267
|
null,
|
|
73203
73268
|
null,
|
|
73204
73269
|
"js",
|
|
73205
73270
|
"qx"
|
|
73206
73271
|
],
|
|
73207
|
-
"qx/tool/cli/templates/skeleton/
|
|
73272
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73208
73273
|
null,
|
|
73209
73274
|
null,
|
|
73210
73275
|
"js",
|
|
73211
73276
|
"qx"
|
|
73212
73277
|
],
|
|
73213
|
-
"qx/tool/cli/templates/skeleton/
|
|
73278
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
|
|
73214
73279
|
null,
|
|
73215
73280
|
null,
|
|
73216
|
-
"
|
|
73281
|
+
"js",
|
|
73217
73282
|
"qx"
|
|
73218
73283
|
],
|
|
73219
|
-
"qx/tool/cli/templates/skeleton/
|
|
73284
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
|
|
73220
73285
|
null,
|
|
73221
73286
|
null,
|
|
73222
|
-
"
|
|
73287
|
+
"js",
|
|
73223
73288
|
"qx"
|
|
73224
73289
|
],
|
|
73225
|
-
"qx/tool/cli/templates/skeleton/
|
|
73290
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
|
|
73226
73291
|
null,
|
|
73227
73292
|
null,
|
|
73228
|
-
"
|
|
73293
|
+
"js",
|
|
73229
73294
|
"qx"
|
|
73230
73295
|
],
|
|
73231
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
73296
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
|
|
73232
73297
|
null,
|
|
73233
73298
|
null,
|
|
73234
73299
|
"js",
|
|
73235
73300
|
"qx"
|
|
73236
73301
|
],
|
|
73237
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
73302
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
|
|
73238
73303
|
null,
|
|
73239
73304
|
null,
|
|
73240
73305
|
"js",
|
|
73241
73306
|
"qx"
|
|
73242
73307
|
],
|
|
73243
|
-
"qx/tool/cli/templates/skeleton/
|
|
73308
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
73244
73309
|
null,
|
|
73245
73310
|
null,
|
|
73246
73311
|
"js",
|
|
73247
73312
|
"qx"
|
|
73248
73313
|
],
|
|
73249
|
-
"qx/tool/cli/templates/skeleton/
|
|
73314
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
73250
73315
|
null,
|
|
73251
73316
|
null,
|
|
73252
73317
|
"js",
|
|
73253
73318
|
"qx"
|
|
73254
73319
|
],
|
|
73255
|
-
"qx/tool/cli/templates/skeleton/
|
|
73320
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
73256
73321
|
null,
|
|
73257
73322
|
null,
|
|
73258
73323
|
"js",
|
|
73259
73324
|
"qx"
|
|
73260
73325
|
],
|
|
73261
|
-
"qx/tool/cli/templates/skeleton/
|
|
73326
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
|
|
73262
73327
|
null,
|
|
73263
73328
|
null,
|
|
73264
|
-
"
|
|
73329
|
+
"tmpl",
|
|
73265
73330
|
"qx"
|
|
73266
73331
|
],
|
|
73267
|
-
"qx/tool/cli/templates/skeleton/
|
|
73332
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
73268
73333
|
null,
|
|
73269
73334
|
null,
|
|
73270
|
-
"
|
|
73335
|
+
"scss",
|
|
73336
|
+
"qx"
|
|
73337
|
+
],
|
|
73338
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
73339
|
+
null,
|
|
73340
|
+
null,
|
|
73341
|
+
"scss",
|
|
73271
73342
|
"qx"
|
|
73272
73343
|
],
|
|
73273
73344
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
|