@qooxdoo/framework 7.5.0 → 7.5.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/bin/deploy/qx +7 -5
- package/lib/compiler/compile-info.json +75 -75
- package/lib/compiler/index.js +412 -393
- package/lib/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js +7 -7
- package/lib/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js +6 -6
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js +9 -9
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js +5 -5
- package/lib/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js +7 -7
- package/lib/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/lib/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js +6 -6
- package/lib/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js +12 -12
- package/lib/resource/qx/tool/website/src/about.md +1 -1
- package/package.json +2 -2
- package/source/class/qx/test/io/transport/Websocket.js +1 -1
- package/source/class/qx/theme/IndigoDark.js +1 -1
- package/source/class/qx/theme/indigo/DecorationDark.js +30 -0
- package/source/class/qx/tool/cli/Application.js +4 -1
- package/source/class/qx/tool/cli/Cli.js +22 -23
- package/source/class/qx/tool/cli/Watch.js +5 -6
- package/source/class/qx/tool/cli/commands/Compile.js +2 -1
- package/source/class/qx/tool/cli/commands/Lint.js +1 -1
- package/source/class/qx/tool/cli/commands/Run.js +6 -7
- package/source/class/qx/tool/cli/commands/Serve.js +29 -36
- package/source/class/qx/tool/cli/commands/Test.js +3 -2
- package/source/class/qx/tool/cli/commands/add/Script.js +3 -1
- package/source/class/qx/tool/cli/commands/package/Install.js +3 -0
- package/source/class/qx/tool/compiler/ClassFile.js +2 -1
- package/source/class/qx/tool/compiler/app/Cldr.js +63 -26
- package/source/class/qx/ui/basic/Image.js +6 -2
- package/source/class/qx/ui/core/Widget.js +13 -42
- package/source/resource/qx/mobile/scss/common/_gradients.scss +1 -1
- package/source/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js +7 -7
- package/source/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js +6 -6
- package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js +9 -9
- package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js +5 -5
- package/source/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js +7 -7
- package/source/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/source/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js +6 -6
- package/source/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js +12 -12
- package/source/resource/qx/tool/website/src/about.md +1 -1
package/lib/compiler/index.js
CHANGED
|
@@ -96,7 +96,7 @@ if (typeof global !== "undefined") {
|
|
|
96
96
|
"qx.application": "qx.tool.cli.Application",
|
|
97
97
|
"qx.revision": "",
|
|
98
98
|
"qx.theme": "qx.theme.Simple",
|
|
99
|
-
"qx.version": "7.5.
|
|
99
|
+
"qx.version": "7.5.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.5.
|
|
131
|
+
"qx.compiler.version": "7.5.1",
|
|
132
132
|
"qx.headless": true,
|
|
133
133
|
"qx.compiler.applicationType": "node",
|
|
134
134
|
"qx.compiler.applicationName": "compiler"
|
|
@@ -34730,11 +34730,15 @@ try {
|
|
|
34730
34730
|
* during startup of the application
|
|
34731
34731
|
*/
|
|
34732
34732
|
async main() {
|
|
34733
|
+
process.exitCode = 0;
|
|
34734
|
+
|
|
34733
34735
|
try {
|
|
34734
34736
|
await new qx.tool.cli.Cli().run();
|
|
34735
34737
|
} catch (e) {
|
|
34736
34738
|
qx.tool.compiler.Console.error("Error: " + (e.stack || e.message));
|
|
34737
|
-
process.
|
|
34739
|
+
process.exitCode = 1;
|
|
34740
|
+
} finally {
|
|
34741
|
+
process.exit();
|
|
34738
34742
|
}
|
|
34739
34743
|
}
|
|
34740
34744
|
|
|
@@ -35063,15 +35067,20 @@ try {
|
|
|
35063
35067
|
|
|
35064
35068
|
qx.Class.define("qx.tool.cli.Cli", {
|
|
35065
35069
|
extend: qx.core.Object,
|
|
35070
|
+
properties: {
|
|
35071
|
+
command: {
|
|
35072
|
+
apply: "__P_3_0"
|
|
35073
|
+
}
|
|
35074
|
+
},
|
|
35066
35075
|
|
|
35067
35076
|
construct() {
|
|
35068
35077
|
qx.core.Object.constructor.call(this);
|
|
35069
35078
|
|
|
35070
|
-
if (qx.tool.cli.Cli.
|
|
35079
|
+
if (qx.tool.cli.Cli.__P_3_1) {
|
|
35071
35080
|
throw new Error("qx.tool.cli.Cli has already been initialized!");
|
|
35072
35081
|
}
|
|
35073
35082
|
|
|
35074
|
-
qx.tool.cli.Cli.
|
|
35083
|
+
qx.tool.cli.Cli.__P_3_1 = this; // include & register log appender
|
|
35075
35084
|
|
|
35076
35085
|
qx.log.appender.NodeConsole;
|
|
35077
35086
|
},
|
|
@@ -35093,20 +35102,23 @@ try {
|
|
|
35093
35102
|
_compileJsonFilename: null,
|
|
35094
35103
|
|
|
35095
35104
|
/** @type {Object} Parsed arguments */
|
|
35096
|
-
|
|
35097
|
-
|
|
35098
|
-
/** @type {Promise} Promise that resolves to the _parsedArgs, but only when completely finished parsing them */
|
|
35099
|
-
__P_3_1: null,
|
|
35105
|
+
__P_3_2: null,
|
|
35100
35106
|
|
|
35101
35107
|
/** @type {Boolean} Whether libraries have had their `.load()` method called yet */
|
|
35102
|
-
|
|
35108
|
+
__P_3_3: false,
|
|
35109
|
+
|
|
35110
|
+
__P_3_0(command) {
|
|
35111
|
+
command.setCompilerApi(this._compilerApi);
|
|
35112
|
+
|
|
35113
|
+
this._compilerApi.setCommand(command);
|
|
35114
|
+
},
|
|
35103
35115
|
|
|
35104
35116
|
/**
|
|
35105
35117
|
* Creates an instance of yargs, with minimal options
|
|
35106
35118
|
*
|
|
35107
35119
|
* @return {yargs}
|
|
35108
35120
|
*/
|
|
35109
|
-
|
|
35121
|
+
__P_3_4() {
|
|
35110
35122
|
return this.yargs = require("yargs").locale("en").version().strict(false).showHelpOnFail().help(false).option("force", {
|
|
35111
35123
|
describe: "Override warnings",
|
|
35112
35124
|
type: "boolean",
|
|
@@ -35140,7 +35152,7 @@ try {
|
|
|
35140
35152
|
* Initialises this.argv with the bare minimum required to load the config files and begin
|
|
35141
35153
|
* processing
|
|
35142
35154
|
*/
|
|
35143
|
-
async
|
|
35155
|
+
async __P_3_5() {
|
|
35144
35156
|
var title = "qooxdoo command line interface";
|
|
35145
35157
|
title = "\n" + title + "\n" + "=".repeat(title.length);
|
|
35146
35158
|
title += `
|
|
@@ -35152,7 +35164,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35152
35164
|
|
|
35153
35165
|
Type qx <command> --help for options and subcommands.`;
|
|
35154
35166
|
|
|
35155
|
-
let yargs = this.
|
|
35167
|
+
let yargs = this.__P_3_4().usage(title);
|
|
35156
35168
|
|
|
35157
35169
|
this.argv = yargs.argv; // Logging - needs to be unified..
|
|
35158
35170
|
|
|
@@ -35171,8 +35183,8 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35171
35183
|
/**
|
|
35172
35184
|
* Reloads this.argv with the full set of arguments
|
|
35173
35185
|
*/
|
|
35174
|
-
async
|
|
35175
|
-
let yargs = this.
|
|
35186
|
+
async __P_3_6() {
|
|
35187
|
+
let yargs = this.__P_3_4().help(true).option("set", {
|
|
35176
35188
|
describe: "sets an environment value for the compiler",
|
|
35177
35189
|
nargs: 1,
|
|
35178
35190
|
requiresArg: true,
|
|
@@ -35200,7 +35212,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35200
35212
|
qx.tool.cli.Cli.addYargsCommands(yargs, ["Add", "Clean", "Compile", "Config", "Deploy", "Es6ify", "Package", "Pkg", // alias for Package
|
|
35201
35213
|
"Create", "Lint", "Run", "Test", "Serve", "Migrate"], "qx.tool.cli.commands");
|
|
35202
35214
|
this.argv = await yargs.demandCommand().strict().argv;
|
|
35203
|
-
await this.
|
|
35215
|
+
await this.__P_3_7();
|
|
35204
35216
|
},
|
|
35205
35217
|
|
|
35206
35218
|
/**
|
|
@@ -35208,7 +35220,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35208
35220
|
* The commands can overload special arg arguments here.
|
|
35209
35221
|
* e.g. Deploy will will overload the target.
|
|
35210
35222
|
*/
|
|
35211
|
-
|
|
35223
|
+
__P_3_8() {
|
|
35212
35224
|
let cmd = this._compilerApi.getCommand();
|
|
35213
35225
|
|
|
35214
35226
|
if (cmd) {
|
|
@@ -35221,12 +35233,12 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35221
35233
|
* to delay the calling of `load()` until after we know that the command has been selected
|
|
35222
35234
|
* by Yargs
|
|
35223
35235
|
*/
|
|
35224
|
-
async
|
|
35225
|
-
if (this.
|
|
35236
|
+
async __P_3_7() {
|
|
35237
|
+
if (this.__P_3_3) {
|
|
35226
35238
|
return;
|
|
35227
35239
|
}
|
|
35228
35240
|
|
|
35229
|
-
this.
|
|
35241
|
+
this.__P_3_3 = true;
|
|
35230
35242
|
|
|
35231
35243
|
for (let i = 0, arr = this._compilerApi.getLibraryApis(); i < arr.length; i++) {
|
|
35232
35244
|
let libraryApi = arr[i];
|
|
@@ -35245,21 +35257,10 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35245
35257
|
*/
|
|
35246
35258
|
async processCommand(command) {
|
|
35247
35259
|
qx.tool.compiler.Console.getInstance().setVerbose(this.argv.verbose);
|
|
35248
|
-
|
|
35249
|
-
|
|
35250
|
-
this._compilerApi.
|
|
35251
|
-
|
|
35252
|
-
await this.__P_3_6();
|
|
35253
|
-
|
|
35254
|
-
try {
|
|
35255
|
-
const res = await command.process();
|
|
35256
|
-
await this._compilerApi.afterProcessFinished(command, res);
|
|
35257
|
-
return res;
|
|
35258
|
-
} catch (e) {
|
|
35259
|
-
qx.tool.compiler.Console.error("Error: " + (e.stack || e.message));
|
|
35260
|
-
process.exit(1);
|
|
35261
|
-
return null;
|
|
35262
|
-
}
|
|
35260
|
+
await this.__P_3_7();
|
|
35261
|
+
const res = await command.process();
|
|
35262
|
+
await this._compilerApi.afterProcessFinished(command, res);
|
|
35263
|
+
return res;
|
|
35263
35264
|
},
|
|
35264
35265
|
|
|
35265
35266
|
/**
|
|
@@ -35267,8 +35268,8 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35267
35268
|
*
|
|
35268
35269
|
* @return {Object}
|
|
35269
35270
|
*/
|
|
35270
|
-
|
|
35271
|
-
return
|
|
35271
|
+
getParsedArgs() {
|
|
35272
|
+
return this.__P_3_2;
|
|
35272
35273
|
},
|
|
35273
35274
|
|
|
35274
35275
|
/**
|
|
@@ -35290,15 +35291,15 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35290
35291
|
var args = qx.lang.Array.clone(process.argv);
|
|
35291
35292
|
args.shift();
|
|
35292
35293
|
process.title = args.join(" ");
|
|
35293
|
-
|
|
35294
|
-
|
|
35294
|
+
await this.__P_3_9();
|
|
35295
|
+
return this.processCommand(this.getCommand());
|
|
35295
35296
|
},
|
|
35296
35297
|
|
|
35297
35298
|
/**
|
|
35298
35299
|
* Does the work of parsing command line arguments and loading `compile.js[on]`
|
|
35299
35300
|
*/
|
|
35300
|
-
async
|
|
35301
|
-
await this.
|
|
35301
|
+
async __P_3_9() {
|
|
35302
|
+
await this.__P_3_5();
|
|
35302
35303
|
/*
|
|
35303
35304
|
* Detect and load compile.json and compile.js
|
|
35304
35305
|
*/
|
|
@@ -35336,7 +35337,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35336
35337
|
let CompilerApi = qx.tool.cli.api.CompilerApi;
|
|
35337
35338
|
|
|
35338
35339
|
if (await fs.existsAsync(compileJsFilename)) {
|
|
35339
|
-
let compileJs = await this.
|
|
35340
|
+
let compileJs = await this.__P_3_10(compileJsFilename);
|
|
35340
35341
|
this._compileJsFilename = compileJsFilename;
|
|
35341
35342
|
|
|
35342
35343
|
if (compileJs.CompilerApi) {
|
|
@@ -35463,7 +35464,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35463
35464
|
let LibraryApi = qx.tool.cli.api.LibraryApi;
|
|
35464
35465
|
|
|
35465
35466
|
if (await fs.existsAsync(libCompileJsFilename)) {
|
|
35466
|
-
let compileJs = await this.
|
|
35467
|
+
let compileJs = await this.__P_3_10(libCompileJsFilename);
|
|
35467
35468
|
|
|
35468
35469
|
if (compileJs.LibraryApi) {
|
|
35469
35470
|
LibraryApi = compileJs.LibraryApi;
|
|
@@ -35483,9 +35484,9 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35483
35484
|
*/
|
|
35484
35485
|
|
|
35485
35486
|
|
|
35486
|
-
await this.
|
|
35487
|
+
await this.__P_3_6();
|
|
35487
35488
|
|
|
35488
|
-
this.
|
|
35489
|
+
this.__P_3_8();
|
|
35489
35490
|
|
|
35490
35491
|
let parsedArgs = {
|
|
35491
35492
|
target: this.argv.target,
|
|
@@ -35552,8 +35553,8 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35552
35553
|
config.serve.listenPort = config.serve.listenPort || this.argv.listenPort;
|
|
35553
35554
|
}
|
|
35554
35555
|
|
|
35555
|
-
this.
|
|
35556
|
-
return this.
|
|
35556
|
+
this.__P_3_2 = await compilerApi.getConfiguration();
|
|
35557
|
+
return this.__P_3_2;
|
|
35557
35558
|
},
|
|
35558
35559
|
|
|
35559
35560
|
/**
|
|
@@ -35562,7 +35563,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35562
35563
|
* @param aPath {String} the file to load
|
|
35563
35564
|
* @return {Object} the module
|
|
35564
35565
|
*/
|
|
35565
|
-
async
|
|
35566
|
+
async __P_3_10(aPath) {
|
|
35566
35567
|
try {
|
|
35567
35568
|
let module = require(path.resolve(aPath));
|
|
35568
35569
|
|
|
@@ -35635,7 +35636,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35635
35636
|
compileJsFilename: "compile.js",
|
|
35636
35637
|
|
|
35637
35638
|
/** {CompileJs} singleton instance */
|
|
35638
|
-
|
|
35639
|
+
__P_3_1: null,
|
|
35639
35640
|
|
|
35640
35641
|
/**
|
|
35641
35642
|
* Returns the singleton instance, throws an error if it has not been created
|
|
@@ -35643,11 +35644,11 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35643
35644
|
* @return {qx.tool.cli.Cli}
|
|
35644
35645
|
*/
|
|
35645
35646
|
getInstance() {
|
|
35646
|
-
if (!qx.tool.cli.Cli.
|
|
35647
|
+
if (!qx.tool.cli.Cli.__P_3_1) {
|
|
35647
35648
|
throw new Error("CompileJs has not been initialized yet!");
|
|
35648
35649
|
}
|
|
35649
35650
|
|
|
35650
|
-
return qx.tool.cli.Cli.
|
|
35651
|
+
return qx.tool.cli.Cli.__P_3_1;
|
|
35651
35652
|
},
|
|
35652
35653
|
|
|
35653
35654
|
/**
|
|
@@ -35672,7 +35673,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
35672
35673
|
|
|
35673
35674
|
if (data) {
|
|
35674
35675
|
if (data.handler === undefined) {
|
|
35675
|
-
data.handler = argv => qx.tool.cli.Cli.getInstance().
|
|
35676
|
+
data.handler = argv => qx.tool.cli.Cli.getInstance().setCommand(new Clazz(argv));
|
|
35676
35677
|
}
|
|
35677
35678
|
|
|
35678
35679
|
yargs.command(data);
|
|
@@ -36534,7 +36535,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
36534
36535
|
* @return {String}
|
|
36535
36536
|
*/
|
|
36536
36537
|
getCompilerVersion() {
|
|
36537
|
-
return "7.5.
|
|
36538
|
+
return "7.5.1";
|
|
36538
36539
|
},
|
|
36539
36540
|
|
|
36540
36541
|
/**
|
|
@@ -38947,8 +38948,11 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
38947
38948
|
if (!(await compileConfigModel.exists())) {
|
|
38948
38949
|
qx.tool.compiler.Console.info(">>> Cannot install application " + (manifestApp.name || manifestApp["class"]) + " because compile.json does not exist (you must manually add it)");
|
|
38949
38950
|
return false;
|
|
38950
|
-
}
|
|
38951
|
+
} // relaod config. We need a fresh model here because data will be verified.
|
|
38952
|
+
// The original model is enriched during parsing so validate will fail.
|
|
38951
38953
|
|
|
38954
|
+
|
|
38955
|
+
compileConfigModel.setLoaded(false);
|
|
38952
38956
|
await compileConfigModel.load();
|
|
38953
38957
|
let app = compileConfigModel.getValue("applications").find(app => {
|
|
38954
38958
|
if (manifestApp.name && app.name) {
|
|
@@ -45318,6 +45322,9 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45318
45322
|
});
|
|
45319
45323
|
});
|
|
45320
45324
|
});
|
|
45325
|
+
process.on("beforeExit", this.__P_5_15.bind(this));
|
|
45326
|
+
process.on("exit", this.__P_5_15.bind(this));
|
|
45327
|
+
return this.__P_5_5;
|
|
45321
45328
|
},
|
|
45322
45329
|
|
|
45323
45330
|
async stop() {
|
|
@@ -45332,7 +45339,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45332
45339
|
|
|
45333
45340
|
__P_5_13() {
|
|
45334
45341
|
if (this.__P_5_8) {
|
|
45335
|
-
this.
|
|
45342
|
+
this.__P_5_16 = true;
|
|
45336
45343
|
return this.__P_5_8;
|
|
45337
45344
|
}
|
|
45338
45345
|
|
|
@@ -45403,20 +45410,21 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45403
45410
|
}
|
|
45404
45411
|
|
|
45405
45412
|
const runIt = () => make().then(() => {
|
|
45406
|
-
if (this.
|
|
45407
|
-
delete this.
|
|
45413
|
+
if (this.__P_5_16) {
|
|
45414
|
+
delete this.__P_5_16;
|
|
45408
45415
|
return runIt();
|
|
45409
45416
|
}
|
|
45410
45417
|
|
|
45411
45418
|
return null;
|
|
45412
45419
|
});
|
|
45413
45420
|
|
|
45414
|
-
|
|
45421
|
+
this.__P_5_8 = runIt();
|
|
45422
|
+
return this.__P_5_8;
|
|
45415
45423
|
},
|
|
45416
45424
|
|
|
45417
|
-
|
|
45425
|
+
__P_5_17() {
|
|
45418
45426
|
if (this.__P_5_8) {
|
|
45419
|
-
this.
|
|
45427
|
+
this.__P_5_16 = true;
|
|
45420
45428
|
return this.__P_5_8;
|
|
45421
45429
|
}
|
|
45422
45430
|
|
|
@@ -45522,7 +45530,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45522
45530
|
if (outOfDate) {
|
|
45523
45531
|
this.__P_5_10 = true;
|
|
45524
45532
|
|
|
45525
|
-
this.
|
|
45533
|
+
this.__P_5_17();
|
|
45526
45534
|
}
|
|
45527
45535
|
};
|
|
45528
45536
|
|
|
@@ -45569,7 +45577,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45569
45577
|
return null;
|
|
45570
45578
|
},
|
|
45571
45579
|
|
|
45572
|
-
|
|
45580
|
+
__P_5_15() {
|
|
45573
45581
|
this.__P_5_5.resolve();
|
|
45574
45582
|
}
|
|
45575
45583
|
|
|
@@ -46463,7 +46471,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46463
46471
|
});
|
|
46464
46472
|
let arr = [this._compileJsFilename, this._compileJsonFilename].filter(str => Boolean(str));
|
|
46465
46473
|
watch.setConfigFilenames(arr);
|
|
46466
|
-
return
|
|
46474
|
+
return watch.start();
|
|
46467
46475
|
}));
|
|
46468
46476
|
},
|
|
46469
46477
|
|
|
@@ -51959,7 +51967,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
51959
51967
|
}
|
|
51960
51968
|
|
|
51961
51969
|
if (sectionName === "members" || sectionName === "statics") {
|
|
51962
|
-
if (node.type == "ObjectMethod" || node.value.type === "FunctionExpression") {
|
|
51970
|
+
if (node.type == "ObjectMethod" || node.value.type === "FunctionExpression" || node.value.type === "MemberExpression") {
|
|
51963
51971
|
meta.type = "function";
|
|
51964
51972
|
} else {
|
|
51965
51973
|
meta.type = "variable";
|
|
@@ -55430,6 +55438,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55430
55438
|
"qx.core.Object": {
|
|
55431
55439
|
"require": true
|
|
55432
55440
|
},
|
|
55441
|
+
"qx.tool.compiler.Console": {},
|
|
55433
55442
|
"qx.tool.utils.Utils": {},
|
|
55434
55443
|
"qx.lang.Type": {}
|
|
55435
55444
|
}
|
|
@@ -55471,7 +55480,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55471
55480
|
promisify
|
|
55472
55481
|
} = require("util");
|
|
55473
55482
|
|
|
55483
|
+
const process = require("process");
|
|
55484
|
+
|
|
55474
55485
|
const readFile = promisify(fs.readFile);
|
|
55486
|
+
const readDir = promisify(fs.readdir);
|
|
55475
55487
|
var log = qx.tool.utils.LogManager.createLog("cldr");
|
|
55476
55488
|
qx.Class.define("qx.tool.compiler.app.Cldr", {
|
|
55477
55489
|
extend: qx.core.Object,
|
|
@@ -55499,8 +55511,21 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55499
55511
|
}
|
|
55500
55512
|
|
|
55501
55513
|
log.debug("Loading CLDR " + cldrPath);
|
|
55502
|
-
|
|
55514
|
+
const fullDir = path.join(cldrPath, data_path);
|
|
55515
|
+
return readDir(fullDir).then(names => new Promise((resolve, reject) => {
|
|
55516
|
+
const searchedName = locale.toLowerCase() + ".xml";
|
|
55517
|
+
const realName = names.find(name => name.toLowerCase() === searchedName);
|
|
55518
|
+
|
|
55519
|
+
if (realName) {
|
|
55520
|
+
resolve(realName);
|
|
55521
|
+
} else {
|
|
55522
|
+
reject(new Error('Cannot find XML file for locale "' + locale + '" in CLDR folder'));
|
|
55523
|
+
}
|
|
55524
|
+
})).then(fileName => readFile(path.join(fullDir, fileName), {
|
|
55503
55525
|
encoding: "utf-8"
|
|
55526
|
+
})).catch(err => {
|
|
55527
|
+
qx.tool.compiler.Console.error(err);
|
|
55528
|
+
process.exit(1);
|
|
55504
55529
|
}).then(data => qx.tool.utils.Utils.promisifyThis(parser.parseString, parser, data)).then(src => {
|
|
55505
55530
|
function find(arr, name, value, cb) {
|
|
55506
55531
|
if (!arr) {
|
|
@@ -55706,28 +55731,24 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55706
55731
|
cldr["cldr_day_stand-alone_narrow_wed"] = find(row.dayWidth[0].day, "type", "wed", getText); // "W";
|
|
55707
55732
|
});
|
|
55708
55733
|
var monthContext = get("months[0].monthContext", cal);
|
|
55709
|
-
|
|
55710
|
-
|
|
55711
|
-
|
|
55712
|
-
|
|
55713
|
-
cldr["cldr_month_format_abbreviated_" + m["$"].type] = getText(m);
|
|
55714
|
-
}
|
|
55715
|
-
});
|
|
55716
|
-
});
|
|
55717
|
-
find(monthContext, "type", "format", function (row) {
|
|
55718
|
-
find(row.monthWidth, "type", "wide", function (row) {
|
|
55719
|
-
for (var i = 0; i < row.month.length; i++) {
|
|
55720
|
-
var m = row.month[i];
|
|
55721
|
-
cldr["cldr_month_format_wide_" + m["$"].type] = getText(m);
|
|
55722
|
-
}
|
|
55723
|
-
});
|
|
55724
|
-
});
|
|
55725
|
-
find(monthContext, "type", "stand-alone", function (row) {
|
|
55726
|
-
for (var i = 0; i < row.monthWidth[0].month.length; i++) {
|
|
55727
|
-
var m = row.monthWidth[0].month[i];
|
|
55728
|
-
cldr["cldr_month_stand-alone_narrow_" + m["$"].type] = getText(m);
|
|
55734
|
+
|
|
55735
|
+
const parseMonth = (months, cldrProperty) => {
|
|
55736
|
+
if (!months) {
|
|
55737
|
+
return;
|
|
55729
55738
|
}
|
|
55730
|
-
|
|
55739
|
+
|
|
55740
|
+
months.forEach(month => {
|
|
55741
|
+
cldr[cldrProperty + "_" + month["$"].type] = getText(month);
|
|
55742
|
+
});
|
|
55743
|
+
};
|
|
55744
|
+
|
|
55745
|
+
const parseMonthContext = sectionNameInLocaleFile => {
|
|
55746
|
+
find(monthContext, "type", "format", row => find(row.monthWidth, "type", sectionNameInLocaleFile, row => parseMonth(row.month, "cldr_month_format_" + sectionNameInLocaleFile)));
|
|
55747
|
+
};
|
|
55748
|
+
|
|
55749
|
+
parseMonthContext("abbreviated");
|
|
55750
|
+
parseMonthContext("wide");
|
|
55751
|
+
find(monthContext, "type", "stand-alone", row => parseMonth(row.monthWidth[0].month, "cldr_month_stand-alone_narrow"));
|
|
55731
55752
|
|
|
55732
55753
|
function getTimeFormatPattern(row) {
|
|
55733
55754
|
return row.timeFormat.pattern;
|
|
@@ -63137,7 +63158,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63137
63158
|
helperFilePath = path.dirname(helperFilePath);
|
|
63138
63159
|
}
|
|
63139
63160
|
|
|
63140
|
-
let config =
|
|
63161
|
+
let config = qx.tool.cli.Cli.getInstance().getParsedArgs();
|
|
63141
63162
|
let lintOptions = config.eslintConfig || {};
|
|
63142
63163
|
lintOptions.extends = lintOptions.extends || ["@qooxdoo/qx/browser"];
|
|
63143
63164
|
lintOptions.globals = Object.assign(lintOptions.globals || {}, await this.__P_11_1(config));
|
|
@@ -63501,12 +63522,12 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63501
63522
|
|
|
63502
63523
|
if (!config.run) {
|
|
63503
63524
|
qx.tool.compiler.Console.print("qx.tool.cli.run.noRunConfig");
|
|
63504
|
-
process.exit(
|
|
63525
|
+
process.exit(1);
|
|
63505
63526
|
}
|
|
63506
63527
|
|
|
63507
63528
|
if (!config.run.application) {
|
|
63508
63529
|
qx.tool.compiler.Console.print("qx.tool.cli.run.noAppName");
|
|
63509
|
-
process.exit(
|
|
63530
|
+
process.exit(1);
|
|
63510
63531
|
}
|
|
63511
63532
|
|
|
63512
63533
|
let maker = null;
|
|
@@ -63517,12 +63538,12 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63517
63538
|
if (apps.length) {
|
|
63518
63539
|
if (maker) {
|
|
63519
63540
|
qx.tool.compiler.Console.print("qx.tool.cli.run.tooManyMakers");
|
|
63520
|
-
process.exit(
|
|
63541
|
+
process.exit(1);
|
|
63521
63542
|
}
|
|
63522
63543
|
|
|
63523
63544
|
if (apps.length != 1) {
|
|
63524
63545
|
qx.tool.compiler.Console.print("qx.tool.cli.run.tooManyApplications");
|
|
63525
|
-
process.exit(
|
|
63546
|
+
process.exit(1);
|
|
63526
63547
|
}
|
|
63527
63548
|
|
|
63528
63549
|
maker = tmp;
|
|
@@ -63532,12 +63553,12 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63532
63553
|
|
|
63533
63554
|
if (!app) {
|
|
63534
63555
|
qx.tool.compiler.Console.print("qx.tool.cli.run.noAppName");
|
|
63535
|
-
process.exit(
|
|
63556
|
+
process.exit(1);
|
|
63536
63557
|
}
|
|
63537
63558
|
|
|
63538
63559
|
if (app.getType() != "node") {
|
|
63539
63560
|
qx.tool.compiler.Console.print("qx.tool.cli.run.mustBeNode");
|
|
63540
|
-
process.exit(
|
|
63561
|
+
process.exit(1);
|
|
63541
63562
|
}
|
|
63542
63563
|
|
|
63543
63564
|
let target = maker.getTarget();
|
|
@@ -63724,28 +63745,27 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63724
63745
|
afterStart: "qx.event.type.Event"
|
|
63725
63746
|
},
|
|
63726
63747
|
members: {
|
|
63727
|
-
/** @type {qx.tool.utils.Website} the Website instance */
|
|
63728
|
-
_website: null,
|
|
63729
|
-
|
|
63730
63748
|
/*
|
|
63731
63749
|
* @Override
|
|
63732
63750
|
*/
|
|
63733
63751
|
async process() {
|
|
63734
63752
|
this.argv.watch = true;
|
|
63735
63753
|
this.argv["machine-readable"] = false;
|
|
63736
|
-
this.argv["feedback"] = false;
|
|
63737
|
-
await qx.tool.cli.commands.Serve.superclass.prototype.process.call(this); // build website if it hasn't been built yet.
|
|
63754
|
+
this.argv["feedback"] = false; // build website if it hasn't been built yet.
|
|
63738
63755
|
|
|
63739
|
-
const website =
|
|
63756
|
+
const website = new qx.tool.utils.Website();
|
|
63740
63757
|
|
|
63741
63758
|
if (!(await fs.existsAsync(website.getTargetDir()))) {
|
|
63742
63759
|
qx.tool.compiler.Console.info(">>> Building startpage...");
|
|
63743
|
-
await
|
|
63760
|
+
await website.rebuildAll();
|
|
63744
63761
|
} else if (this.argv.rebuildStartpage) {
|
|
63745
|
-
|
|
63762
|
+
website.startWatcher();
|
|
63746
63763
|
}
|
|
63747
63764
|
|
|
63748
|
-
|
|
63765
|
+
this.addListenerOnce("made", () => {
|
|
63766
|
+
this.runWebServer();
|
|
63767
|
+
});
|
|
63768
|
+
return qx.tool.cli.commands.Serve.superclass.prototype.process.call(this);
|
|
63749
63769
|
},
|
|
63750
63770
|
|
|
63751
63771
|
/**
|
|
@@ -63844,25 +63864,23 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63844
63864
|
});
|
|
63845
63865
|
}
|
|
63846
63866
|
|
|
63847
|
-
|
|
63848
|
-
|
|
63849
|
-
|
|
63850
|
-
|
|
63851
|
-
|
|
63852
|
-
|
|
63853
|
-
|
|
63854
|
-
|
|
63855
|
-
|
|
63856
|
-
|
|
63857
|
-
|
|
63858
|
-
|
|
63859
|
-
|
|
63860
|
-
|
|
63861
|
-
|
|
63862
|
-
|
|
63863
|
-
|
|
63864
|
-
this.fireEvent("afterStart");
|
|
63865
|
-
});
|
|
63867
|
+
let server = http.createServer(app);
|
|
63868
|
+
this.fireDataEvent("beforeStart", {
|
|
63869
|
+
server: server,
|
|
63870
|
+
application: app,
|
|
63871
|
+
outputdir: defaultMaker.getTarget().getOutputDir()
|
|
63872
|
+
});
|
|
63873
|
+
server.on("error", e => {
|
|
63874
|
+
if (e.code === "EADDRINUSE") {
|
|
63875
|
+
qx.tool.compiler.Console.print("qx.tool.cli.serve.webAddrInUse", config.serve.listenPort);
|
|
63876
|
+
process.exit(1);
|
|
63877
|
+
} else {
|
|
63878
|
+
qx.tool.compiler.Console.log("Error when starting web server: " + e);
|
|
63879
|
+
}
|
|
63880
|
+
});
|
|
63881
|
+
server.listen(config.serve.listenPort, () => {
|
|
63882
|
+
qx.tool.compiler.Console.print("qx.tool.cli.serve.webStarted", "http://localhost:" + config.serve.listenPort);
|
|
63883
|
+
this.fireEvent("afterStart");
|
|
63866
63884
|
});
|
|
63867
63885
|
},
|
|
63868
63886
|
|
|
@@ -64489,7 +64507,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
64489
64507
|
if (!this.hasListener("runTests") && this.__P_15_0.length === 0 && (!this.getCompilerApi() || typeof this.getCompilerApi().beforeTests != "function")) {
|
|
64490
64508
|
qx.tool.compiler.Console.error(`No tests are registered! You need to either register tests, or install a testrunner.
|
|
64491
64509
|
See documentation at https://qooxdoo.org/docs/#/development/testing/`);
|
|
64492
|
-
process.exit(
|
|
64510
|
+
process.exit(1);
|
|
64493
64511
|
}
|
|
64494
64512
|
});
|
|
64495
64513
|
this.addListener("afterStart", async () => {
|
|
@@ -64504,6 +64522,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
64504
64522
|
qx.tool.compiler.Console.info(`Running ${test.getName()}`);
|
|
64505
64523
|
await test.execute();
|
|
64506
64524
|
} // for bash exitcode is not allowed to be more then 255!
|
|
64525
|
+
// We must exit the process here because serve runs infinite!
|
|
64507
64526
|
|
|
64508
64527
|
|
|
64509
64528
|
process.exit(Math.min(255, this.getExitCode()));
|
|
@@ -64516,7 +64535,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
64516
64535
|
// compile only
|
|
64517
64536
|
await qx.tool.cli.commands.Compile.prototype.process.call(this); // since the server is not started, manually fire the event necessary for firing the "runTests" event
|
|
64518
64537
|
|
|
64519
|
-
this.
|
|
64538
|
+
await this.fireDataEventAsync("afterStart");
|
|
64520
64539
|
}
|
|
64521
64540
|
},
|
|
64522
64541
|
|
|
@@ -64887,7 +64906,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
64887
64906
|
|
|
64888
64907
|
|
|
64889
64908
|
this.debug(script_list);
|
|
64890
|
-
manifestModel.setValue("externalResources.script", script_list).save();
|
|
64909
|
+
await manifestModel.setValue("externalResources.script", script_list).save();
|
|
64891
64910
|
}
|
|
64892
64911
|
|
|
64893
64912
|
}
|
|
@@ -72207,54 +72226,6 @@ qx.$$packageData['0'] = {
|
|
|
72207
72226
|
}
|
|
72208
72227
|
},
|
|
72209
72228
|
"resources": {
|
|
72210
|
-
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
72211
|
-
6,
|
|
72212
|
-
6,
|
|
72213
|
-
"png",
|
|
72214
|
-
"qx"
|
|
72215
|
-
],
|
|
72216
|
-
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
72217
|
-
6,
|
|
72218
|
-
2,
|
|
72219
|
-
"png",
|
|
72220
|
-
"qx"
|
|
72221
|
-
],
|
|
72222
|
-
"qx/decoration/Simple/checkbox/checked.png": [
|
|
72223
|
-
6,
|
|
72224
|
-
6,
|
|
72225
|
-
"png",
|
|
72226
|
-
"qx"
|
|
72227
|
-
],
|
|
72228
|
-
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
72229
|
-
6,
|
|
72230
|
-
2,
|
|
72231
|
-
"png",
|
|
72232
|
-
"qx"
|
|
72233
|
-
],
|
|
72234
|
-
"qx/decoration/Simple/cursors/alias.gif": [
|
|
72235
|
-
19,
|
|
72236
|
-
15,
|
|
72237
|
-
"gif",
|
|
72238
|
-
"qx"
|
|
72239
|
-
],
|
|
72240
|
-
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
72241
|
-
20,
|
|
72242
|
-
20,
|
|
72243
|
-
"gif",
|
|
72244
|
-
"qx"
|
|
72245
|
-
],
|
|
72246
|
-
"qx/decoration/Simple/cursors/copy.gif": [
|
|
72247
|
-
19,
|
|
72248
|
-
15,
|
|
72249
|
-
"gif",
|
|
72250
|
-
"qx"
|
|
72251
|
-
],
|
|
72252
|
-
"qx/decoration/Simple/cursors/move.gif": [
|
|
72253
|
-
13,
|
|
72254
|
-
9,
|
|
72255
|
-
"gif",
|
|
72256
|
-
"qx"
|
|
72257
|
-
],
|
|
72258
72229
|
"qx/decoration/Simple/arrows/down-invert.gif": [
|
|
72259
72230
|
7,
|
|
72260
72231
|
4,
|
|
@@ -72267,19 +72238,19 @@ qx.$$packageData['0'] = {
|
|
|
72267
72238
|
"gif",
|
|
72268
72239
|
"qx"
|
|
72269
72240
|
],
|
|
72270
|
-
"qx/decoration/Simple/arrows/
|
|
72241
|
+
"qx/decoration/Simple/arrows/forward.gif": [
|
|
72242
|
+
8,
|
|
72271
72243
|
7,
|
|
72272
|
-
4,
|
|
72273
72244
|
"gif",
|
|
72274
72245
|
"qx"
|
|
72275
72246
|
],
|
|
72276
|
-
"qx/decoration/Simple/arrows/
|
|
72277
|
-
8,
|
|
72247
|
+
"qx/decoration/Simple/arrows/down.gif": [
|
|
72278
72248
|
7,
|
|
72249
|
+
4,
|
|
72279
72250
|
"gif",
|
|
72280
72251
|
"qx"
|
|
72281
72252
|
],
|
|
72282
|
-
"qx/decoration/Simple/arrows/left.gif": [
|
|
72253
|
+
"qx/decoration/Simple/arrows/left-invert.gif": [
|
|
72283
72254
|
4,
|
|
72284
72255
|
7,
|
|
72285
72256
|
"gif",
|
|
@@ -72291,19 +72262,19 @@ qx.$$packageData['0'] = {
|
|
|
72291
72262
|
"gif",
|
|
72292
72263
|
"qx"
|
|
72293
72264
|
],
|
|
72294
|
-
"qx/decoration/Simple/arrows/left
|
|
72265
|
+
"qx/decoration/Simple/arrows/left.gif": [
|
|
72295
72266
|
4,
|
|
72296
72267
|
7,
|
|
72297
72268
|
"gif",
|
|
72298
72269
|
"qx"
|
|
72299
72270
|
],
|
|
72300
|
-
"qx/decoration/Simple/arrows/right.gif": [
|
|
72271
|
+
"qx/decoration/Simple/arrows/right-invert.gif": [
|
|
72301
72272
|
4,
|
|
72302
72273
|
7,
|
|
72303
72274
|
"gif",
|
|
72304
72275
|
"qx"
|
|
72305
72276
|
],
|
|
72306
|
-
"qx/decoration/Simple/arrows/right
|
|
72277
|
+
"qx/decoration/Simple/arrows/right.gif": [
|
|
72307
72278
|
4,
|
|
72308
72279
|
7,
|
|
72309
72280
|
"gif",
|
|
@@ -72321,12 +72292,84 @@ qx.$$packageData['0'] = {
|
|
|
72321
72292
|
"gif",
|
|
72322
72293
|
"qx"
|
|
72323
72294
|
],
|
|
72295
|
+
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
72296
|
+
6,
|
|
72297
|
+
6,
|
|
72298
|
+
"png",
|
|
72299
|
+
"qx"
|
|
72300
|
+
],
|
|
72324
72301
|
"qx/decoration/Simple/arrows/up.gif": [
|
|
72325
72302
|
7,
|
|
72326
72303
|
4,
|
|
72327
72304
|
"gif",
|
|
72328
72305
|
"qx"
|
|
72329
72306
|
],
|
|
72307
|
+
"qx/decoration/Simple/checkbox/checked.png": [
|
|
72308
|
+
6,
|
|
72309
|
+
6,
|
|
72310
|
+
"png",
|
|
72311
|
+
"qx"
|
|
72312
|
+
],
|
|
72313
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
72314
|
+
6,
|
|
72315
|
+
2,
|
|
72316
|
+
"png",
|
|
72317
|
+
"qx"
|
|
72318
|
+
],
|
|
72319
|
+
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
72320
|
+
6,
|
|
72321
|
+
2,
|
|
72322
|
+
"png",
|
|
72323
|
+
"qx"
|
|
72324
|
+
],
|
|
72325
|
+
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
72326
|
+
19,
|
|
72327
|
+
256,
|
|
72328
|
+
"png",
|
|
72329
|
+
"qx"
|
|
72330
|
+
],
|
|
72331
|
+
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
72332
|
+
35,
|
|
72333
|
+
11,
|
|
72334
|
+
"gif",
|
|
72335
|
+
"qx"
|
|
72336
|
+
],
|
|
72337
|
+
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
72338
|
+
256,
|
|
72339
|
+
256,
|
|
72340
|
+
"jpg",
|
|
72341
|
+
"qx"
|
|
72342
|
+
],
|
|
72343
|
+
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
72344
|
+
11,
|
|
72345
|
+
11,
|
|
72346
|
+
"gif",
|
|
72347
|
+
"qx"
|
|
72348
|
+
],
|
|
72349
|
+
"qx/decoration/Simple/cursors/alias.gif": [
|
|
72350
|
+
19,
|
|
72351
|
+
15,
|
|
72352
|
+
"gif",
|
|
72353
|
+
"qx"
|
|
72354
|
+
],
|
|
72355
|
+
"qx/decoration/Simple/cursors/move.gif": [
|
|
72356
|
+
13,
|
|
72357
|
+
9,
|
|
72358
|
+
"gif",
|
|
72359
|
+
"qx"
|
|
72360
|
+
],
|
|
72361
|
+
"qx/decoration/Simple/cursors/copy.gif": [
|
|
72362
|
+
19,
|
|
72363
|
+
15,
|
|
72364
|
+
"gif",
|
|
72365
|
+
"qx"
|
|
72366
|
+
],
|
|
72367
|
+
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
72368
|
+
20,
|
|
72369
|
+
20,
|
|
72370
|
+
"gif",
|
|
72371
|
+
"qx"
|
|
72372
|
+
],
|
|
72330
72373
|
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
72331
72374
|
16,
|
|
72332
72375
|
7,
|
|
@@ -72339,13 +72382,13 @@ qx.$$packageData['0'] = {
|
|
|
72339
72382
|
"gif",
|
|
72340
72383
|
"qx"
|
|
72341
72384
|
],
|
|
72342
|
-
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
72385
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
72343
72386
|
16,
|
|
72344
72387
|
5,
|
|
72345
72388
|
"gif",
|
|
72346
72389
|
"qx"
|
|
72347
72390
|
],
|
|
72348
|
-
"qx/decoration/Simple/menu/radiobutton
|
|
72391
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
72349
72392
|
16,
|
|
72350
72393
|
5,
|
|
72351
72394
|
"gif",
|
|
@@ -72363,12 +72406,6 @@ qx.$$packageData['0'] = {
|
|
|
72363
72406
|
"png",
|
|
72364
72407
|
"qx"
|
|
72365
72408
|
],
|
|
72366
|
-
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
72367
|
-
10,
|
|
72368
|
-
10,
|
|
72369
|
-
"png",
|
|
72370
|
-
"qx"
|
|
72371
|
-
],
|
|
72372
72409
|
"qx/decoration/Simple/table/ascending.png": [
|
|
72373
72410
|
10,
|
|
72374
72411
|
10,
|
|
@@ -72387,51 +72424,33 @@ qx.$$packageData['0'] = {
|
|
|
72387
72424
|
"png",
|
|
72388
72425
|
"qx"
|
|
72389
72426
|
],
|
|
72390
|
-
"qx/decoration/Simple/table/
|
|
72427
|
+
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
72391
72428
|
10,
|
|
72392
72429
|
10,
|
|
72393
72430
|
"png",
|
|
72394
72431
|
"qx"
|
|
72395
72432
|
],
|
|
72396
|
-
"qx/decoration/Simple/table/
|
|
72433
|
+
"qx/decoration/Simple/table/descending-invert.png": [
|
|
72434
|
+
10,
|
|
72397
72435
|
10,
|
|
72398
|
-
9,
|
|
72399
72436
|
"png",
|
|
72400
72437
|
"qx"
|
|
72401
72438
|
],
|
|
72402
|
-
"qx/decoration/Simple/table/descending
|
|
72439
|
+
"qx/decoration/Simple/table/descending.png": [
|
|
72403
72440
|
10,
|
|
72404
72441
|
10,
|
|
72405
72442
|
"png",
|
|
72406
72443
|
"qx"
|
|
72407
72444
|
],
|
|
72408
|
-
"qx/decoration/Simple/
|
|
72445
|
+
"qx/decoration/Simple/table/select-column-order.png": [
|
|
72409
72446
|
10,
|
|
72410
72447
|
9,
|
|
72411
|
-
"gif",
|
|
72412
|
-
"qx"
|
|
72413
|
-
],
|
|
72414
|
-
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
72415
|
-
19,
|
|
72416
|
-
256,
|
|
72417
72448
|
"png",
|
|
72418
72449
|
"qx"
|
|
72419
72450
|
],
|
|
72420
|
-
"qx/decoration/Simple/
|
|
72421
|
-
|
|
72422
|
-
|
|
72423
|
-
"gif",
|
|
72424
|
-
"qx"
|
|
72425
|
-
],
|
|
72426
|
-
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
72427
|
-
256,
|
|
72428
|
-
256,
|
|
72429
|
-
"jpg",
|
|
72430
|
-
"qx"
|
|
72431
|
-
],
|
|
72432
|
-
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
72433
|
-
11,
|
|
72434
|
-
11,
|
|
72451
|
+
"qx/decoration/Simple/tabview/close.gif": [
|
|
72452
|
+
10,
|
|
72453
|
+
9,
|
|
72435
72454
|
"gif",
|
|
72436
72455
|
"qx"
|
|
72437
72456
|
],
|
|
@@ -72453,49 +72472,49 @@ qx.$$packageData['0'] = {
|
|
|
72453
72472
|
"gif",
|
|
72454
72473
|
"qx"
|
|
72455
72474
|
],
|
|
72456
|
-
"qx/decoration/Simple/treevirtual/
|
|
72475
|
+
"qx/decoration/Simple/treevirtual/cross_plus.gif": [
|
|
72457
72476
|
19,
|
|
72458
72477
|
16,
|
|
72459
72478
|
"gif",
|
|
72460
72479
|
"qx"
|
|
72461
72480
|
],
|
|
72462
|
-
"qx/decoration/Simple/treevirtual/
|
|
72481
|
+
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
72463
72482
|
19,
|
|
72464
72483
|
16,
|
|
72465
72484
|
"gif",
|
|
72466
72485
|
"qx"
|
|
72467
72486
|
],
|
|
72468
|
-
"qx/decoration/Simple/treevirtual/
|
|
72487
|
+
"qx/decoration/Simple/treevirtual/cross_minus.gif": [
|
|
72469
72488
|
19,
|
|
72470
72489
|
16,
|
|
72471
72490
|
"gif",
|
|
72472
72491
|
"qx"
|
|
72473
72492
|
],
|
|
72474
|
-
"qx/decoration/Simple/treevirtual/
|
|
72493
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
72475
72494
|
19,
|
|
72476
72495
|
16,
|
|
72477
72496
|
"gif",
|
|
72478
72497
|
"qx"
|
|
72479
72498
|
],
|
|
72480
|
-
"qx/decoration/Simple/treevirtual/
|
|
72499
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
72481
72500
|
19,
|
|
72482
72501
|
16,
|
|
72483
72502
|
"gif",
|
|
72484
72503
|
"qx"
|
|
72485
72504
|
],
|
|
72486
|
-
"qx/decoration/Simple/treevirtual/
|
|
72505
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
72487
72506
|
19,
|
|
72488
72507
|
16,
|
|
72489
72508
|
"gif",
|
|
72490
72509
|
"qx"
|
|
72491
72510
|
],
|
|
72492
|
-
"qx/decoration/Simple/treevirtual/
|
|
72511
|
+
"qx/decoration/Simple/treevirtual/only_plus.gif": [
|
|
72493
72512
|
19,
|
|
72494
72513
|
16,
|
|
72495
72514
|
"gif",
|
|
72496
72515
|
"qx"
|
|
72497
72516
|
],
|
|
72498
|
-
"qx/decoration/Simple/treevirtual/
|
|
72517
|
+
"qx/decoration/Simple/treevirtual/only_minus.gif": [
|
|
72499
72518
|
19,
|
|
72500
72519
|
16,
|
|
72501
72520
|
"gif",
|
|
@@ -72519,20 +72538,20 @@ qx.$$packageData['0'] = {
|
|
|
72519
72538
|
"gif",
|
|
72520
72539
|
"qx"
|
|
72521
72540
|
],
|
|
72522
|
-
"qx/decoration/Simple/window/close
|
|
72541
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
72523
72542
|
10,
|
|
72524
72543
|
9,
|
|
72525
72544
|
"gif",
|
|
72526
72545
|
"qx"
|
|
72527
72546
|
],
|
|
72528
|
-
"qx/decoration/Simple/window/
|
|
72529
|
-
|
|
72547
|
+
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
72548
|
+
9,
|
|
72530
72549
|
9,
|
|
72531
72550
|
"gif",
|
|
72532
72551
|
"qx"
|
|
72533
72552
|
],
|
|
72534
|
-
"qx/decoration/Simple/window/
|
|
72535
|
-
|
|
72553
|
+
"qx/decoration/Simple/window/close-white.gif": [
|
|
72554
|
+
10,
|
|
72536
72555
|
9,
|
|
72537
72556
|
"gif",
|
|
72538
72557
|
"qx"
|
|
@@ -72555,13 +72574,13 @@ qx.$$packageData['0'] = {
|
|
|
72555
72574
|
"gif",
|
|
72556
72575
|
"qx"
|
|
72557
72576
|
],
|
|
72558
|
-
"qx/decoration/Simple/window/restore
|
|
72577
|
+
"qx/decoration/Simple/window/restore.gif": [
|
|
72559
72578
|
8,
|
|
72560
72579
|
9,
|
|
72561
72580
|
"gif",
|
|
72562
72581
|
"qx"
|
|
72563
72582
|
],
|
|
72564
|
-
"qx/decoration/Simple/window/restore.gif": [
|
|
72583
|
+
"qx/decoration/Simple/window/restore-white.gif": [
|
|
72565
72584
|
8,
|
|
72566
72585
|
9,
|
|
72567
72586
|
"gif",
|
|
@@ -72597,25 +72616,19 @@ qx.$$packageData['0'] = {
|
|
|
72597
72616
|
"",
|
|
72598
72617
|
"qx"
|
|
72599
72618
|
],
|
|
72600
|
-
"qx/tool/
|
|
72601
|
-
null,
|
|
72602
|
-
null,
|
|
72603
|
-
"",
|
|
72604
|
-
"qx"
|
|
72605
|
-
],
|
|
72606
|
-
"qx/tool/schema/Manifest-1-0-0.json": [
|
|
72619
|
+
"qx/tool/schema/compile-1-0-0.json": [
|
|
72607
72620
|
null,
|
|
72608
72621
|
null,
|
|
72609
72622
|
"json",
|
|
72610
72623
|
"qx"
|
|
72611
72624
|
],
|
|
72612
|
-
"qx/tool/schema/
|
|
72625
|
+
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
72613
72626
|
null,
|
|
72614
72627
|
null,
|
|
72615
72628
|
"json",
|
|
72616
72629
|
"qx"
|
|
72617
72630
|
],
|
|
72618
|
-
"qx/tool/schema/Manifest-
|
|
72631
|
+
"qx/tool/schema/Manifest-1-0-0.json": [
|
|
72619
72632
|
null,
|
|
72620
72633
|
null,
|
|
72621
72634
|
"json",
|
|
@@ -72627,10 +72640,10 @@ qx.$$packageData['0'] = {
|
|
|
72627
72640
|
"json",
|
|
72628
72641
|
"qx"
|
|
72629
72642
|
],
|
|
72630
|
-
"qx/tool/
|
|
72643
|
+
"qx/tool/website/.gitignore": [
|
|
72631
72644
|
null,
|
|
72632
72645
|
null,
|
|
72633
|
-
"
|
|
72646
|
+
"",
|
|
72634
72647
|
"qx"
|
|
72635
72648
|
],
|
|
72636
72649
|
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt": [
|
|
@@ -72639,13 +72652,13 @@ qx.$$packageData['0'] = {
|
|
|
72639
72652
|
"txt",
|
|
72640
72653
|
"qx"
|
|
72641
72654
|
],
|
|
72642
|
-
"qx/tool/
|
|
72655
|
+
"qx/tool/cli/templates/template_vars.js": [
|
|
72643
72656
|
null,
|
|
72644
72657
|
null,
|
|
72645
|
-
"
|
|
72658
|
+
"js",
|
|
72646
72659
|
"qx"
|
|
72647
72660
|
],
|
|
72648
|
-
"qx/tool/website/build/
|
|
72661
|
+
"qx/tool/website/build/404.html": [
|
|
72649
72662
|
null,
|
|
72650
72663
|
null,
|
|
72651
72664
|
"html",
|
|
@@ -72657,16 +72670,16 @@ qx.$$packageData['0'] = {
|
|
|
72657
72670
|
"html",
|
|
72658
72671
|
"qx"
|
|
72659
72672
|
],
|
|
72660
|
-
"qx/tool/website/build/
|
|
72673
|
+
"qx/tool/website/build/about.html": [
|
|
72661
72674
|
null,
|
|
72662
72675
|
null,
|
|
72663
|
-
"
|
|
72676
|
+
"html",
|
|
72664
72677
|
"qx"
|
|
72665
72678
|
],
|
|
72666
|
-
"qx/tool/website/
|
|
72679
|
+
"qx/tool/website/build/qooxdoo.css": [
|
|
72667
72680
|
null,
|
|
72668
72681
|
null,
|
|
72669
|
-
"
|
|
72682
|
+
"css",
|
|
72670
72683
|
"qx"
|
|
72671
72684
|
],
|
|
72672
72685
|
"qx/tool/website/partials/footer.html": [
|
|
@@ -72687,6 +72700,12 @@ qx.$$packageData['0'] = {
|
|
|
72687
72700
|
"html",
|
|
72688
72701
|
"qx"
|
|
72689
72702
|
],
|
|
72703
|
+
"qx/tool/website/partials/icon-twitter.html": [
|
|
72704
|
+
null,
|
|
72705
|
+
null,
|
|
72706
|
+
"html",
|
|
72707
|
+
"qx"
|
|
72708
|
+
],
|
|
72690
72709
|
"qx/tool/website/partials/icon-github.html": [
|
|
72691
72710
|
null,
|
|
72692
72711
|
null,
|
|
@@ -72699,18 +72718,18 @@ qx.$$packageData['0'] = {
|
|
|
72699
72718
|
"svg",
|
|
72700
72719
|
"qx"
|
|
72701
72720
|
],
|
|
72702
|
-
"qx/tool/website/partials/icon-twitter.html": [
|
|
72703
|
-
null,
|
|
72704
|
-
null,
|
|
72705
|
-
"html",
|
|
72706
|
-
"qx"
|
|
72707
|
-
],
|
|
72708
72721
|
"qx/tool/website/partials/icon-twitter.svg": [
|
|
72709
72722
|
16,
|
|
72710
72723
|
16,
|
|
72711
72724
|
"svg",
|
|
72712
72725
|
"qx"
|
|
72713
72726
|
],
|
|
72727
|
+
"qx/tool/website/layouts/default.dot": [
|
|
72728
|
+
null,
|
|
72729
|
+
null,
|
|
72730
|
+
"dot",
|
|
72731
|
+
"qx"
|
|
72732
|
+
],
|
|
72714
72733
|
"qx/tool/website/src/404.html": [
|
|
72715
72734
|
null,
|
|
72716
72735
|
null,
|
|
@@ -72735,25 +72754,25 @@ qx.$$packageData['0'] = {
|
|
|
72735
72754
|
"scss",
|
|
72736
72755
|
"qx"
|
|
72737
72756
|
],
|
|
72738
|
-
"qx/tool/cli/templates/
|
|
72757
|
+
"qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
|
|
72739
72758
|
null,
|
|
72740
72759
|
null,
|
|
72741
72760
|
"js",
|
|
72742
72761
|
"qx"
|
|
72743
72762
|
],
|
|
72744
|
-
"qx/tool/cli/templates/
|
|
72763
|
+
"qx/tool/cli/templates/loader/loader-node.tmpl.js": [
|
|
72745
72764
|
null,
|
|
72746
72765
|
null,
|
|
72747
72766
|
"js",
|
|
72748
72767
|
"qx"
|
|
72749
72768
|
],
|
|
72750
|
-
"qx/tool/cli/templates/
|
|
72769
|
+
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
|
|
72751
72770
|
null,
|
|
72752
72771
|
null,
|
|
72753
72772
|
"js",
|
|
72754
72773
|
"qx"
|
|
72755
72774
|
],
|
|
72756
|
-
"qx/tool/cli/templates/class/
|
|
72775
|
+
"qx/tool/cli/templates/class/default.tmpl.js": [
|
|
72757
72776
|
null,
|
|
72758
72777
|
null,
|
|
72759
72778
|
"js",
|
|
@@ -72765,46 +72784,28 @@ qx.$$packageData['0'] = {
|
|
|
72765
72784
|
"js",
|
|
72766
72785
|
"qx"
|
|
72767
72786
|
],
|
|
72768
|
-
"qx/tool/cli/templates/
|
|
72769
|
-
null,
|
|
72770
|
-
null,
|
|
72771
|
-
"js",
|
|
72772
|
-
"qx"
|
|
72773
|
-
],
|
|
72774
|
-
"qx/tool/cli/templates/loader/loader-node.tmpl.js": [
|
|
72787
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
72775
72788
|
null,
|
|
72776
72789
|
null,
|
|
72777
72790
|
"js",
|
|
72778
72791
|
"qx"
|
|
72779
72792
|
],
|
|
72780
|
-
"qx/tool/cli/templates/
|
|
72793
|
+
"qx/tool/cli/templates/class/header.tmpl.js": [
|
|
72781
72794
|
null,
|
|
72782
72795
|
null,
|
|
72783
72796
|
"js",
|
|
72784
72797
|
"qx"
|
|
72785
72798
|
],
|
|
72786
|
-
"qx/tool/
|
|
72787
|
-
null,
|
|
72788
|
-
null,
|
|
72789
|
-
"html",
|
|
72790
|
-
"qx"
|
|
72791
|
-
],
|
|
72792
|
-
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72793
|
-
null,
|
|
72794
|
-
null,
|
|
72795
|
-
"html",
|
|
72796
|
-
"qx"
|
|
72797
|
-
],
|
|
72798
|
-
"qx/tool/website/build/diagnostics/requiredby.js": [
|
|
72799
|
+
"qx/tool/cli/templates/class/interface.tmpl.js": [
|
|
72799
72800
|
null,
|
|
72800
72801
|
null,
|
|
72801
72802
|
"js",
|
|
72802
72803
|
"qx"
|
|
72803
72804
|
],
|
|
72804
|
-
"qx/tool/website/build/
|
|
72805
|
+
"qx/tool/website/build/assets/abel.css": [
|
|
72805
72806
|
null,
|
|
72806
72807
|
null,
|
|
72807
|
-
"
|
|
72808
|
+
"css",
|
|
72808
72809
|
"qx"
|
|
72809
72810
|
],
|
|
72810
72811
|
"qx/tool/website/build/assets/bluebird.min.js": [
|
|
@@ -72813,34 +72814,22 @@ qx.$$packageData['0'] = {
|
|
|
72813
72814
|
"js",
|
|
72814
72815
|
"qx"
|
|
72815
72816
|
],
|
|
72816
|
-
"qx/tool/website/build/assets/abel.css": [
|
|
72817
|
-
null,
|
|
72818
|
-
null,
|
|
72819
|
-
"css",
|
|
72820
|
-
"qx"
|
|
72821
|
-
],
|
|
72822
72817
|
"qx/tool/website/build/assets/bootstrap.css": [
|
|
72823
72818
|
null,
|
|
72824
72819
|
null,
|
|
72825
72820
|
"css",
|
|
72826
72821
|
"qx"
|
|
72827
72822
|
],
|
|
72828
|
-
"qx/tool/website/build/assets/bootstrap.min.css": [
|
|
72829
|
-
null,
|
|
72830
|
-
null,
|
|
72831
|
-
"css",
|
|
72832
|
-
"qx"
|
|
72833
|
-
],
|
|
72834
72823
|
"qx/tool/website/build/assets/bootstrap.min.css.map": [
|
|
72835
72824
|
null,
|
|
72836
72825
|
null,
|
|
72837
72826
|
"map",
|
|
72838
72827
|
"qx"
|
|
72839
72828
|
],
|
|
72840
|
-
"qx/tool/website/build/assets/
|
|
72829
|
+
"qx/tool/website/build/assets/bootstrap.min.css": [
|
|
72841
72830
|
null,
|
|
72842
72831
|
null,
|
|
72843
|
-
"
|
|
72832
|
+
"css",
|
|
72844
72833
|
"qx"
|
|
72845
72834
|
],
|
|
72846
72835
|
"qx/tool/website/build/assets/favicon.png": [
|
|
@@ -72855,18 +72844,24 @@ qx.$$packageData['0'] = {
|
|
|
72855
72844
|
"js",
|
|
72856
72845
|
"qx"
|
|
72857
72846
|
],
|
|
72858
|
-
"qx/tool/website/build/assets/
|
|
72859
|
-
|
|
72860
|
-
|
|
72861
|
-
"
|
|
72847
|
+
"qx/tool/website/build/assets/jquery.js": [
|
|
72848
|
+
null,
|
|
72849
|
+
null,
|
|
72850
|
+
"js",
|
|
72862
72851
|
"qx"
|
|
72863
72852
|
],
|
|
72864
|
-
"qx/tool/website/build/assets/
|
|
72853
|
+
"qx/tool/website/build/assets/buttons.js": [
|
|
72865
72854
|
null,
|
|
72866
72855
|
null,
|
|
72867
72856
|
"js",
|
|
72868
72857
|
"qx"
|
|
72869
72858
|
],
|
|
72859
|
+
"qx/tool/website/build/assets/logo.svg": [
|
|
72860
|
+
512,
|
|
72861
|
+
145,
|
|
72862
|
+
"svg",
|
|
72863
|
+
"qx"
|
|
72864
|
+
],
|
|
72870
72865
|
"qx/tool/website/build/assets/qx-api.png": [
|
|
72871
72866
|
1144,
|
|
72872
72867
|
640,
|
|
@@ -72879,49 +72874,43 @@ qx.$$packageData['0'] = {
|
|
|
72879
72874
|
"png",
|
|
72880
72875
|
"qx"
|
|
72881
72876
|
],
|
|
72882
|
-
"qx/tool/website/build/assets/qx-oo.png": [
|
|
72883
|
-
870,
|
|
72884
|
-
502,
|
|
72885
|
-
"png",
|
|
72886
|
-
"qx"
|
|
72887
|
-
],
|
|
72888
72877
|
"qx/tool/website/build/assets/qx-white.svg": [
|
|
72889
72878
|
64,
|
|
72890
72879
|
65,
|
|
72891
72880
|
"svg",
|
|
72892
72881
|
"qx"
|
|
72893
72882
|
],
|
|
72894
|
-
"qx/tool/website/build/
|
|
72895
|
-
|
|
72896
|
-
|
|
72897
|
-
"
|
|
72883
|
+
"qx/tool/website/build/assets/qx-oo.png": [
|
|
72884
|
+
870,
|
|
72885
|
+
502,
|
|
72886
|
+
"png",
|
|
72898
72887
|
"qx"
|
|
72899
72888
|
],
|
|
72900
|
-
"qx/tool/website/
|
|
72889
|
+
"qx/tool/website/build/diagnostics/dependson.html": [
|
|
72901
72890
|
null,
|
|
72902
72891
|
null,
|
|
72903
|
-
"
|
|
72892
|
+
"html",
|
|
72904
72893
|
"qx"
|
|
72905
72894
|
],
|
|
72906
|
-
"qx/tool/website/
|
|
72895
|
+
"qx/tool/website/build/diagnostics/requiredby.js": [
|
|
72907
72896
|
null,
|
|
72908
72897
|
null,
|
|
72909
72898
|
"js",
|
|
72910
72899
|
"qx"
|
|
72911
72900
|
],
|
|
72912
|
-
"qx/tool/website/
|
|
72901
|
+
"qx/tool/website/build/diagnostics/dependson.js": [
|
|
72913
72902
|
null,
|
|
72914
72903
|
null,
|
|
72915
|
-
"
|
|
72904
|
+
"js",
|
|
72916
72905
|
"qx"
|
|
72917
72906
|
],
|
|
72918
|
-
"qx/tool/website/
|
|
72907
|
+
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72919
72908
|
null,
|
|
72920
72909
|
null,
|
|
72921
72910
|
"html",
|
|
72922
72911
|
"qx"
|
|
72923
72912
|
],
|
|
72924
|
-
"qx/tool/website/
|
|
72913
|
+
"qx/tool/website/build/scripts/serve.js": [
|
|
72925
72914
|
null,
|
|
72926
72915
|
null,
|
|
72927
72916
|
"js",
|
|
@@ -72933,16 +72922,22 @@ qx.$$packageData['0'] = {
|
|
|
72933
72922
|
"css",
|
|
72934
72923
|
"qx"
|
|
72935
72924
|
],
|
|
72925
|
+
"qx/tool/website/src/assets/bluebird.min.js": [
|
|
72926
|
+
null,
|
|
72927
|
+
null,
|
|
72928
|
+
"js",
|
|
72929
|
+
"qx"
|
|
72930
|
+
],
|
|
72936
72931
|
"qx/tool/website/src/assets/bootstrap.css": [
|
|
72937
72932
|
null,
|
|
72938
72933
|
null,
|
|
72939
72934
|
"css",
|
|
72940
72935
|
"qx"
|
|
72941
72936
|
],
|
|
72942
|
-
"qx/tool/website/src/assets/
|
|
72937
|
+
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72943
72938
|
null,
|
|
72944
72939
|
null,
|
|
72945
|
-
"
|
|
72940
|
+
"css",
|
|
72946
72941
|
"qx"
|
|
72947
72942
|
],
|
|
72948
72943
|
"qx/tool/website/src/assets/bootstrap.min.css.map": [
|
|
@@ -72951,19 +72946,19 @@ qx.$$packageData['0'] = {
|
|
|
72951
72946
|
"map",
|
|
72952
72947
|
"qx"
|
|
72953
72948
|
],
|
|
72954
|
-
"qx/tool/website/src/assets/
|
|
72949
|
+
"qx/tool/website/src/assets/buttons.js": [
|
|
72955
72950
|
null,
|
|
72956
72951
|
null,
|
|
72957
|
-
"
|
|
72952
|
+
"js",
|
|
72958
72953
|
"qx"
|
|
72959
72954
|
],
|
|
72960
|
-
"qx/tool/website/src/assets/
|
|
72955
|
+
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
72961
72956
|
null,
|
|
72962
72957
|
null,
|
|
72963
72958
|
"js",
|
|
72964
72959
|
"qx"
|
|
72965
72960
|
],
|
|
72966
|
-
"qx/tool/website/src/assets/
|
|
72961
|
+
"qx/tool/website/src/assets/jquery.js": [
|
|
72967
72962
|
null,
|
|
72968
72963
|
null,
|
|
72969
72964
|
"js",
|
|
@@ -72975,12 +72970,6 @@ qx.$$packageData['0'] = {
|
|
|
72975
72970
|
"png",
|
|
72976
72971
|
"qx"
|
|
72977
72972
|
],
|
|
72978
|
-
"qx/tool/website/src/assets/jquery.js": [
|
|
72979
|
-
null,
|
|
72980
|
-
null,
|
|
72981
|
-
"js",
|
|
72982
|
-
"qx"
|
|
72983
|
-
],
|
|
72984
72973
|
"qx/tool/website/src/assets/logo.svg": [
|
|
72985
72974
|
512,
|
|
72986
72975
|
145,
|
|
@@ -72993,12 +72982,6 @@ qx.$$packageData['0'] = {
|
|
|
72993
72982
|
"png",
|
|
72994
72983
|
"qx"
|
|
72995
72984
|
],
|
|
72996
|
-
"qx/tool/website/src/assets/qx-white.svg": [
|
|
72997
|
-
64,
|
|
72998
|
-
65,
|
|
72999
|
-
"svg",
|
|
73000
|
-
"qx"
|
|
73001
|
-
],
|
|
73002
72985
|
"qx/tool/website/src/assets/qx-api.png": [
|
|
73003
72986
|
1144,
|
|
73004
72987
|
640,
|
|
@@ -73011,76 +72994,88 @@ qx.$$packageData['0'] = {
|
|
|
73011
72994
|
"png",
|
|
73012
72995
|
"qx"
|
|
73013
72996
|
],
|
|
73014
|
-
"qx/tool/
|
|
72997
|
+
"qx/tool/website/src/assets/qx-white.svg": [
|
|
72998
|
+
64,
|
|
72999
|
+
65,
|
|
73000
|
+
"svg",
|
|
73001
|
+
"qx"
|
|
73002
|
+
],
|
|
73003
|
+
"qx/tool/website/src/diagnostics/dependson.html": [
|
|
73015
73004
|
null,
|
|
73016
73005
|
null,
|
|
73017
|
-
"
|
|
73006
|
+
"html",
|
|
73018
73007
|
"qx"
|
|
73019
73008
|
],
|
|
73020
|
-
"qx/tool/
|
|
73009
|
+
"qx/tool/website/src/diagnostics/requiredby.js": [
|
|
73021
73010
|
null,
|
|
73022
73011
|
null,
|
|
73023
|
-
"
|
|
73012
|
+
"js",
|
|
73024
73013
|
"qx"
|
|
73025
73014
|
],
|
|
73026
|
-
"qx/tool/
|
|
73015
|
+
"qx/tool/website/src/diagnostics/requiredby.html": [
|
|
73027
73016
|
null,
|
|
73028
73017
|
null,
|
|
73029
|
-
"
|
|
73018
|
+
"html",
|
|
73030
73019
|
"qx"
|
|
73031
73020
|
],
|
|
73032
|
-
"qx/tool/
|
|
73021
|
+
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
73033
73022
|
null,
|
|
73034
73023
|
null,
|
|
73035
|
-
"
|
|
73024
|
+
"js",
|
|
73036
73025
|
"qx"
|
|
73037
73026
|
],
|
|
73038
|
-
"qx/tool/
|
|
73027
|
+
"qx/tool/website/src/scripts/serve.js": [
|
|
73028
|
+
null,
|
|
73029
|
+
null,
|
|
73030
|
+
"js",
|
|
73031
|
+
"qx"
|
|
73032
|
+
],
|
|
73033
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
73039
73034
|
null,
|
|
73040
73035
|
null,
|
|
73041
73036
|
"tmpl",
|
|
73042
73037
|
"qx"
|
|
73043
73038
|
],
|
|
73044
|
-
"qx/tool/cli/templates/skeleton/
|
|
73039
|
+
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
|
|
73045
73040
|
null,
|
|
73046
73041
|
null,
|
|
73047
73042
|
"json",
|
|
73048
73043
|
"qx"
|
|
73049
73044
|
],
|
|
73050
|
-
"qx/tool/cli/templates/skeleton/
|
|
73045
|
+
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
|
|
73051
73046
|
null,
|
|
73052
73047
|
null,
|
|
73053
|
-
"
|
|
73048
|
+
"json",
|
|
73054
73049
|
"qx"
|
|
73055
73050
|
],
|
|
73056
|
-
"qx/tool/cli/templates/skeleton/
|
|
73051
|
+
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
|
|
73057
73052
|
null,
|
|
73058
73053
|
null,
|
|
73059
|
-
"
|
|
73054
|
+
"md",
|
|
73060
73055
|
"qx"
|
|
73061
73056
|
],
|
|
73062
|
-
"qx/tool/cli/templates/skeleton/
|
|
73057
|
+
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
|
|
73063
73058
|
null,
|
|
73064
73059
|
null,
|
|
73065
73060
|
"tmpl",
|
|
73066
73061
|
"qx"
|
|
73067
73062
|
],
|
|
73068
|
-
"qx/tool/cli/templates/skeleton/
|
|
73063
|
+
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
|
|
73069
73064
|
null,
|
|
73070
73065
|
null,
|
|
73071
73066
|
"json",
|
|
73072
73067
|
"qx"
|
|
73073
73068
|
],
|
|
73074
|
-
"qx/tool/cli/templates/skeleton/
|
|
73069
|
+
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
|
|
73075
73070
|
null,
|
|
73076
73071
|
null,
|
|
73077
|
-
"
|
|
73072
|
+
"json",
|
|
73078
73073
|
"qx"
|
|
73079
73074
|
],
|
|
73080
|
-
"qx/tool/cli/templates/skeleton/
|
|
73075
|
+
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
|
|
73081
73076
|
null,
|
|
73082
73077
|
null,
|
|
73083
|
-
"
|
|
73078
|
+
"md",
|
|
73084
73079
|
"qx"
|
|
73085
73080
|
],
|
|
73086
73081
|
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
|
|
@@ -73107,24 +73102,42 @@ qx.$$packageData['0'] = {
|
|
|
73107
73102
|
"md",
|
|
73108
73103
|
"qx"
|
|
73109
73104
|
],
|
|
73110
|
-
"qx/tool/cli/templates/skeleton/
|
|
73105
|
+
"qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
|
|
73111
73106
|
null,
|
|
73112
73107
|
null,
|
|
73113
|
-
"
|
|
73108
|
+
"tmpl",
|
|
73114
73109
|
"qx"
|
|
73115
73110
|
],
|
|
73116
|
-
"qx/tool/cli/templates/skeleton/
|
|
73111
|
+
"qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
|
|
73117
73112
|
null,
|
|
73118
73113
|
null,
|
|
73119
|
-
"
|
|
73114
|
+
"json",
|
|
73120
73115
|
"qx"
|
|
73121
73116
|
],
|
|
73122
|
-
"qx/tool/cli/templates/skeleton/
|
|
73117
|
+
"qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
|
|
73118
|
+
null,
|
|
73119
|
+
null,
|
|
73120
|
+
"json",
|
|
73121
|
+
"qx"
|
|
73122
|
+
],
|
|
73123
|
+
"qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
|
|
73123
73124
|
null,
|
|
73124
73125
|
null,
|
|
73125
73126
|
"txt",
|
|
73126
73127
|
"qx"
|
|
73127
73128
|
],
|
|
73129
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
|
|
73130
|
+
null,
|
|
73131
|
+
null,
|
|
73132
|
+
"html",
|
|
73133
|
+
"qx"
|
|
73134
|
+
],
|
|
73135
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
|
|
73136
|
+
null,
|
|
73137
|
+
null,
|
|
73138
|
+
"html",
|
|
73139
|
+
"qx"
|
|
73140
|
+
],
|
|
73128
73141
|
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
73129
73142
|
null,
|
|
73130
73143
|
null,
|
|
@@ -73137,13 +73150,13 @@ qx.$$packageData['0'] = {
|
|
|
73137
73150
|
"html",
|
|
73138
73151
|
"qx"
|
|
73139
73152
|
],
|
|
73140
|
-
"qx/tool/cli/templates/skeleton/
|
|
73153
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
73141
73154
|
null,
|
|
73142
73155
|
null,
|
|
73143
73156
|
"txt",
|
|
73144
73157
|
"qx"
|
|
73145
73158
|
],
|
|
73146
|
-
"qx/tool/cli/templates/skeleton/
|
|
73159
|
+
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
73147
73160
|
null,
|
|
73148
73161
|
null,
|
|
73149
73162
|
"txt",
|
|
@@ -73155,6 +73168,12 @@ qx.$$packageData['0'] = {
|
|
|
73155
73168
|
"txt",
|
|
73156
73169
|
"qx"
|
|
73157
73170
|
],
|
|
73171
|
+
"qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
|
|
73172
|
+
null,
|
|
73173
|
+
null,
|
|
73174
|
+
"txt",
|
|
73175
|
+
"qx"
|
|
73176
|
+
],
|
|
73158
73177
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
|
|
73159
73178
|
180,
|
|
73160
73179
|
180,
|
|
@@ -73221,40 +73240,40 @@ qx.$$packageData['0'] = {
|
|
|
73221
73240
|
"js",
|
|
73222
73241
|
"qx"
|
|
73223
73242
|
],
|
|
73224
|
-
"qx/tool/cli/templates/skeleton/
|
|
73225
|
-
|
|
73226
|
-
|
|
73227
|
-
"
|
|
73243
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
73244
|
+
32,
|
|
73245
|
+
32,
|
|
73246
|
+
"png",
|
|
73228
73247
|
"qx"
|
|
73229
73248
|
],
|
|
73230
|
-
"qx/tool/cli/templates/skeleton/
|
|
73249
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
73231
73250
|
null,
|
|
73232
73251
|
null,
|
|
73233
73252
|
"js",
|
|
73234
73253
|
"qx"
|
|
73235
73254
|
],
|
|
73236
|
-
"qx/tool/cli/templates/skeleton/
|
|
73255
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
|
|
73237
73256
|
null,
|
|
73238
73257
|
null,
|
|
73239
73258
|
"js",
|
|
73240
73259
|
"qx"
|
|
73241
73260
|
],
|
|
73242
|
-
"qx/tool/cli/templates/skeleton/
|
|
73261
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
73243
73262
|
null,
|
|
73244
73263
|
null,
|
|
73245
73264
|
"js",
|
|
73246
73265
|
"qx"
|
|
73247
73266
|
],
|
|
73248
|
-
"qx/tool/cli/templates/skeleton/
|
|
73267
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
|
|
73249
73268
|
null,
|
|
73250
73269
|
null,
|
|
73251
73270
|
"js",
|
|
73252
73271
|
"qx"
|
|
73253
73272
|
],
|
|
73254
|
-
"qx/tool/cli/templates/skeleton/
|
|
73255
|
-
|
|
73256
|
-
|
|
73257
|
-
"
|
|
73273
|
+
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
|
|
73274
|
+
null,
|
|
73275
|
+
null,
|
|
73276
|
+
"tmpl",
|
|
73258
73277
|
"qx"
|
|
73259
73278
|
],
|
|
73260
73279
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
@@ -73269,25 +73288,25 @@ qx.$$packageData['0'] = {
|
|
|
73269
73288
|
"js",
|
|
73270
73289
|
"qx"
|
|
73271
73290
|
],
|
|
73272
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
73291
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
|
|
73273
73292
|
null,
|
|
73274
73293
|
null,
|
|
73275
73294
|
"js",
|
|
73276
73295
|
"qx"
|
|
73277
73296
|
],
|
|
73278
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
73297
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
|
|
73279
73298
|
null,
|
|
73280
73299
|
null,
|
|
73281
73300
|
"js",
|
|
73282
73301
|
"qx"
|
|
73283
73302
|
],
|
|
73284
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
73303
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
|
|
73285
73304
|
null,
|
|
73286
73305
|
null,
|
|
73287
73306
|
"js",
|
|
73288
73307
|
"qx"
|
|
73289
73308
|
],
|
|
73290
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
73309
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
|
|
73291
73310
|
null,
|
|
73292
73311
|
null,
|
|
73293
73312
|
"js",
|
|
@@ -73299,55 +73318,55 @@ qx.$$packageData['0'] = {
|
|
|
73299
73318
|
"tmpl",
|
|
73300
73319
|
"qx"
|
|
73301
73320
|
],
|
|
73302
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
73321
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
73303
73322
|
null,
|
|
73304
73323
|
null,
|
|
73305
|
-
"
|
|
73324
|
+
"js",
|
|
73306
73325
|
"qx"
|
|
73307
73326
|
],
|
|
73308
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
73327
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
73309
73328
|
null,
|
|
73310
73329
|
null,
|
|
73311
|
-
"
|
|
73330
|
+
"js",
|
|
73312
73331
|
"qx"
|
|
73313
73332
|
],
|
|
73314
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/
|
|
73333
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
73315
73334
|
null,
|
|
73316
73335
|
null,
|
|
73317
73336
|
"js",
|
|
73318
73337
|
"qx"
|
|
73319
73338
|
],
|
|
73320
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
73339
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
73321
73340
|
null,
|
|
73322
73341
|
null,
|
|
73323
|
-
"
|
|
73342
|
+
"scss",
|
|
73324
73343
|
"qx"
|
|
73325
73344
|
],
|
|
73326
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
73345
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
73327
73346
|
null,
|
|
73328
73347
|
null,
|
|
73329
|
-
"
|
|
73348
|
+
"scss",
|
|
73330
73349
|
"qx"
|
|
73331
73350
|
],
|
|
73332
|
-
"qx/tool/cli/templates/skeleton/
|
|
73351
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
73333
73352
|
null,
|
|
73334
73353
|
null,
|
|
73335
73354
|
"js",
|
|
73336
73355
|
"qx"
|
|
73337
73356
|
],
|
|
73338
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
73357
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73339
73358
|
null,
|
|
73340
73359
|
null,
|
|
73341
73360
|
"js",
|
|
73342
73361
|
"qx"
|
|
73343
73362
|
],
|
|
73344
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73363
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
|
|
73345
73364
|
null,
|
|
73346
73365
|
null,
|
|
73347
73366
|
"js",
|
|
73348
73367
|
"qx"
|
|
73349
73368
|
],
|
|
73350
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73369
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
|
|
73351
73370
|
null,
|
|
73352
73371
|
null,
|
|
73353
73372
|
"js",
|
|
@@ -73359,19 +73378,19 @@ qx.$$packageData['0'] = {
|
|
|
73359
73378
|
"js",
|
|
73360
73379
|
"qx"
|
|
73361
73380
|
],
|
|
73362
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73381
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
|
|
73363
73382
|
null,
|
|
73364
73383
|
null,
|
|
73365
73384
|
"js",
|
|
73366
73385
|
"qx"
|
|
73367
73386
|
],
|
|
73368
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73387
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
|
|
73369
73388
|
null,
|
|
73370
73389
|
null,
|
|
73371
73390
|
"js",
|
|
73372
73391
|
"qx"
|
|
73373
73392
|
],
|
|
73374
|
-
"qx/tool/cli/templates/skeleton/
|
|
73393
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73375
73394
|
null,
|
|
73376
73395
|
null,
|
|
73377
73396
|
"js",
|