@qooxdoo/framework 7.7.0 → 7.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Manifest.json +1 -1
- package/lib/compiler/compile-info.json +56 -56
- package/lib/compiler/index.js +249 -246
- package/package.json +1 -1
- package/source/class/qx/Class.js +1 -1
- package/source/class/qx/Mixin.js +7 -5
- package/source/class/qx/bom/Input.js +24 -13
- package/source/class/qx/lang/Function.js +5 -1
- package/source/class/qx/test/Mixin.js +260 -0
- package/source/class/qx/tool/cli/commands/Compile.js +7 -7
- package/source/class/qx/tool/compiler/ClassFile.js +9 -4
- package/source/class/qx/tool/compiler/targets/Target.js +2 -2
- package/source/class/qx/tool/compiler/targets/TypeScriptWriter.js +2 -7
- package/source/class/qx/ui/form/AbstractField.js +10 -10
- package/source/class/qx/ui/form/IListItem.js +48 -1
- package/source/class/qx/ui/form/List.js +11 -6
- package/source/class/qx/ui/table/Table.js +8 -0
- package/source/class/qx/ui/table/pane/Scroller.js +35 -0
package/lib/compiler/index.js
CHANGED
|
@@ -125,7 +125,7 @@ if (typeof global !== "undefined") {
|
|
|
125
125
|
"qx.promise.warnings": true,
|
|
126
126
|
"qx.promise.longStackTraces": true,
|
|
127
127
|
"qx.compiler": true,
|
|
128
|
-
"qx.compiler.version": "7.7.
|
|
128
|
+
"qx.compiler.version": "7.7.2",
|
|
129
129
|
"qx.version": null,
|
|
130
130
|
"qx.compiler.targetType": "source",
|
|
131
131
|
"qx.compiler.outputDir": "compiled/node/build/",
|
|
@@ -5130,16 +5130,18 @@ try {
|
|
|
5130
5130
|
break;
|
|
5131
5131
|
}
|
|
5132
5132
|
}
|
|
5133
|
+
|
|
5133
5134
|
// Try looking in the class itself
|
|
5134
5135
|
if (!fn && mixedInAt.prototype[methodName]) {
|
|
5135
|
-
fn = mixedInAt.prototype[methodName]
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5136
|
+
fn = mixedInAt.prototype[methodName];
|
|
5137
|
+
for (let i = 0; i < mixedInAt.$$flatIncludes.length; i++) {
|
|
5138
|
+
if (!mixedInAt.$$flatIncludes[i].$$members[methodName]) {
|
|
5139
|
+
continue;
|
|
5140
|
+
}
|
|
5140
5141
|
fn = fn.base;
|
|
5141
5142
|
}
|
|
5142
5143
|
}
|
|
5144
|
+
|
|
5143
5145
|
// Try looking in the superclass
|
|
5144
5146
|
if (!fn && mixedInAt.superclass) {
|
|
5145
5147
|
fn = mixedInAt.superclass.prototype[methodName];
|
|
@@ -8501,7 +8503,7 @@ try {
|
|
|
8501
8503
|
// Validate keys
|
|
8502
8504
|
var allowed = config.type === "static" ? this.__P_142_11 : this.__P_142_10;
|
|
8503
8505
|
for (var key in config) {
|
|
8504
|
-
if (!allowed
|
|
8506
|
+
if (!(key in allowed)) {
|
|
8505
8507
|
throw new Error('The configuration key "' + key + '" in class "' + name + '" is not allowed!');
|
|
8506
8508
|
}
|
|
8507
8509
|
if (config[key] == null) {
|
|
@@ -13961,7 +13963,7 @@ try {
|
|
|
13961
13963
|
if (!(options.self || options.args || options.delay != null || options.periodical != null || options.attempt || options.always)) {
|
|
13962
13964
|
return func;
|
|
13963
13965
|
}
|
|
13964
|
-
|
|
13966
|
+
let result = function (event) {
|
|
13965
13967
|
// Convert (and copy) incoming arguments
|
|
13966
13968
|
var args = qx.lang.Array.fromArguments(arguments);
|
|
13967
13969
|
|
|
@@ -13992,6 +13994,7 @@ try {
|
|
|
13992
13994
|
return func.apply(options.self || this, args);
|
|
13993
13995
|
}
|
|
13994
13996
|
};
|
|
13997
|
+
return result;
|
|
13995
13998
|
},
|
|
13996
13999
|
/**
|
|
13997
14000
|
* Returns a function whose "this" is altered.
|
|
@@ -32836,7 +32839,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
32836
32839
|
* @return {String}
|
|
32837
32840
|
*/
|
|
32838
32841
|
getCompilerVersion() {
|
|
32839
|
-
return "7.7.
|
|
32842
|
+
return "7.7.2";
|
|
32840
32843
|
},
|
|
32841
32844
|
/**
|
|
32842
32845
|
* Returns the qooxdoo version used in the application in the current or given
|
|
@@ -41772,14 +41775,11 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
41772
41775
|
await scanImpl(dir);
|
|
41773
41776
|
}
|
|
41774
41777
|
for (let filename of classFiles) {
|
|
41775
|
-
if (this.argv.verbose) {
|
|
41776
|
-
qx.tool.compiler.Console.info(`Processing ${filename} ...`);
|
|
41777
|
-
}
|
|
41778
41778
|
await metaDb.addFile(filename, !!this.argv.clean);
|
|
41779
41779
|
}
|
|
41780
41780
|
await metaDb.reparseAll();
|
|
41781
41781
|
await metaDb.save();
|
|
41782
|
-
this.
|
|
41782
|
+
await this.fireDataEventAsync("writtenMetaData", metaDb);
|
|
41783
41783
|
|
|
41784
41784
|
// Do the inital write
|
|
41785
41785
|
let tsWriter = null;
|
|
@@ -41789,7 +41789,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
41789
41789
|
if (this.__P_8_6) {
|
|
41790
41790
|
tsWriter.setOutputTo(this.__P_8_6);
|
|
41791
41791
|
} else {
|
|
41792
|
-
tsWriter.setOutputTo(path.join("
|
|
41792
|
+
tsWriter.setOutputTo(path.join(this.__P_8_4, "..", "qooxdoo.d.ts"));
|
|
41793
41793
|
}
|
|
41794
41794
|
await tsWriter.process();
|
|
41795
41795
|
}
|
|
@@ -41845,7 +41845,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
41845
41845
|
* @return {qx.tool.compiler.makers.Maker}
|
|
41846
41846
|
*/
|
|
41847
41847
|
async createMakersFromConfig(data) {
|
|
41848
|
-
var _data$meta, _data$meta2;
|
|
41848
|
+
var _data$meta, _data$meta2, _data$meta4;
|
|
41849
41849
|
const Console = qx.tool.compiler.Console.getInstance();
|
|
41850
41850
|
var t = this;
|
|
41851
41851
|
if (data.babelOptions) {
|
|
@@ -41861,9 +41861,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
41861
41861
|
}
|
|
41862
41862
|
if (qx.lang.Type.isBoolean(data === null || data === void 0 || (_data$meta = data.meta) === null || _data$meta === void 0 ? void 0 : _data$meta.typescript)) {
|
|
41863
41863
|
this.__P_8_5 = data.meta.typescript;
|
|
41864
|
-
} else if (qx.lang.Type.isString(data === null || data === void 0 ? void 0 :
|
|
41864
|
+
} else if (qx.lang.Type.isString(data === null || data === void 0 || (_data$meta2 = data.meta) === null || _data$meta2 === void 0 ? void 0 : _data$meta2.typescript)) {
|
|
41865
|
+
var _data$meta3;
|
|
41865
41866
|
this.__P_8_5 = true;
|
|
41866
|
-
this.__P_8_6 = data.typescript;
|
|
41867
|
+
this.__P_8_6 = path.relative(process.cwd(), path.resolve(data === null || data === void 0 || (_data$meta3 = data.meta) === null || _data$meta3 === void 0 ? void 0 : _data$meta3.typescript));
|
|
41867
41868
|
}
|
|
41868
41869
|
if (qx.lang.Type.isBoolean(this.argv.typescript)) {
|
|
41869
41870
|
this.__P_8_5 = this.argv.typescript;
|
|
@@ -42020,7 +42021,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
42020
42021
|
*/
|
|
42021
42022
|
let targetOutputPaths = {};
|
|
42022
42023
|
let makers = [];
|
|
42023
|
-
this.__P_8_4 = (_data$
|
|
42024
|
+
this.__P_8_4 = (_data$meta4 = data.meta) === null || _data$meta4 === void 0 ? void 0 : _data$meta4.output;
|
|
42024
42025
|
if (!this.__P_8_4) {
|
|
42025
42026
|
this.__P_8_4 = path.relative(process.cwd(), path.resolve(targetConfigs[0].outputPath, "../meta"));
|
|
42026
42027
|
}
|
|
@@ -42893,8 +42894,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
42893
42894
|
var appRootDir = this.getApplicationRoot(application);
|
|
42894
42895
|
let mapTo = this.getPathMapping(path.join(appRootDir, this.getOutputDir(), "transpiled/"));
|
|
42895
42896
|
appMeta.setSourceUri(mapTo ? mapTo : targetUri + "transpiled/");
|
|
42896
|
-
mapTo = this.getPathMapping(path.join(appRootDir, this.getOutputDir(), "resource
|
|
42897
|
-
appMeta.setResourceUri(mapTo ? mapTo : targetUri + "resource
|
|
42897
|
+
mapTo = this.getPathMapping(path.join(appRootDir, this.getOutputDir(), "resource"));
|
|
42898
|
+
appMeta.setResourceUri(mapTo ? mapTo : targetUri + "resource");
|
|
42898
42899
|
const requiredLibs = application.getRequiredLibraries();
|
|
42899
42900
|
await qx.tool.utils.Utils.makeDirs(appRootDir);
|
|
42900
42901
|
appMeta.setEnvironment({
|
|
@@ -44110,7 +44111,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
44110
44111
|
"require": true
|
|
44111
44112
|
},
|
|
44112
44113
|
"qx.Promise": {},
|
|
44113
|
-
"qx.
|
|
44114
|
+
"qx.tool.utils.Utils": {},
|
|
44114
44115
|
"qx.lang.String": {},
|
|
44115
44116
|
"qx.tool.compiler.jsdoc.Parser": {},
|
|
44116
44117
|
"qx.lang.Type": {}
|
|
@@ -44140,7 +44141,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
44140
44141
|
*
|
|
44141
44142
|
* *********************************************************************** */
|
|
44142
44143
|
|
|
44143
|
-
var path = require("
|
|
44144
|
+
var path = require("upath");
|
|
44144
44145
|
var fs = require("fs");
|
|
44145
44146
|
const {
|
|
44146
44147
|
promisify
|
|
@@ -44187,7 +44188,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
44187
44188
|
this.__P_43_2 = new qx.Promise();
|
|
44188
44189
|
this.__P_43_1.on("close", () => this.__P_43_2.resolve());
|
|
44189
44190
|
this.write(`// Generated declaration file at ${time}\n`);
|
|
44190
|
-
let str = qx.
|
|
44191
|
+
let str = path.join(qx.tool.utils.Utils.getTemplateDir(), "TypeScriptWriter-base_declaration.d.ts");
|
|
44191
44192
|
let baseDeclaration = await fs.promises.readFile(str, "utf8");
|
|
44192
44193
|
this.write(baseDeclaration + "\n");
|
|
44193
44194
|
},
|
|
@@ -48484,8 +48485,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
48484
48485
|
t.__P_21_29 = true;
|
|
48485
48486
|
t.__P_21_24 = true;
|
|
48486
48487
|
}
|
|
48487
|
-
|
|
48488
|
-
|
|
48488
|
+
var isSpecialFunctionName = Object.keys(FUNCTION_NAMES).includes(keyName);
|
|
48489
|
+
t.__P_21_26.functionName = isSpecialFunctionName ? FUNCTION_NAMES[keyName] : keyName;
|
|
48490
|
+
if (isSpecialFunctionName) {
|
|
48489
48491
|
makeMeta(keyName, null, functionNode);
|
|
48490
48492
|
}
|
|
48491
48493
|
enterFunction(path, functionNode);
|
|
@@ -48525,7 +48527,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
48525
48527
|
}
|
|
48526
48528
|
var keyName = getKeyName(prop.key);
|
|
48527
48529
|
checkValidTopLevel(path);
|
|
48528
|
-
|
|
48530
|
+
var isSpecialFunctionName = Object.keys(FUNCTION_NAMES).includes(keyName);
|
|
48531
|
+
if (isSpecialFunctionName) {
|
|
48529
48532
|
let val = path.node.value;
|
|
48530
48533
|
val.leadingComments = (path.node.leadingComments || []).concat(val.leadingComments || []);
|
|
48531
48534
|
handleTopLevelMethods(path, keyName, val);
|
|
@@ -66920,6 +66923,30 @@ qx.$$packageData['0'] = {
|
|
|
66920
66923
|
}
|
|
66921
66924
|
},
|
|
66922
66925
|
"resources": {
|
|
66926
|
+
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
66927
|
+
6,
|
|
66928
|
+
6,
|
|
66929
|
+
"png",
|
|
66930
|
+
"qx"
|
|
66931
|
+
],
|
|
66932
|
+
"qx/decoration/Simple/checkbox/checked.png": [
|
|
66933
|
+
6,
|
|
66934
|
+
6,
|
|
66935
|
+
"png",
|
|
66936
|
+
"qx"
|
|
66937
|
+
],
|
|
66938
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
66939
|
+
6,
|
|
66940
|
+
2,
|
|
66941
|
+
"png",
|
|
66942
|
+
"qx"
|
|
66943
|
+
],
|
|
66944
|
+
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
66945
|
+
6,
|
|
66946
|
+
2,
|
|
66947
|
+
"png",
|
|
66948
|
+
"qx"
|
|
66949
|
+
],
|
|
66923
66950
|
"qx/decoration/Simple/arrows/down-invert.gif": [
|
|
66924
66951
|
7,
|
|
66925
66952
|
4,
|
|
@@ -66992,30 +67019,6 @@ qx.$$packageData['0'] = {
|
|
|
66992
67019
|
"gif",
|
|
66993
67020
|
"qx"
|
|
66994
67021
|
],
|
|
66995
|
-
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
66996
|
-
6,
|
|
66997
|
-
6,
|
|
66998
|
-
"png",
|
|
66999
|
-
"qx"
|
|
67000
|
-
],
|
|
67001
|
-
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
67002
|
-
6,
|
|
67003
|
-
2,
|
|
67004
|
-
"png",
|
|
67005
|
-
"qx"
|
|
67006
|
-
],
|
|
67007
|
-
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
67008
|
-
6,
|
|
67009
|
-
2,
|
|
67010
|
-
"png",
|
|
67011
|
-
"qx"
|
|
67012
|
-
],
|
|
67013
|
-
"qx/decoration/Simple/checkbox/checked.png": [
|
|
67014
|
-
6,
|
|
67015
|
-
6,
|
|
67016
|
-
"png",
|
|
67017
|
-
"qx"
|
|
67018
|
-
],
|
|
67019
67022
|
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
67020
67023
|
19,
|
|
67021
67024
|
256,
|
|
@@ -67028,18 +67031,18 @@ qx.$$packageData['0'] = {
|
|
|
67028
67031
|
"gif",
|
|
67029
67032
|
"qx"
|
|
67030
67033
|
],
|
|
67031
|
-
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
67032
|
-
11,
|
|
67033
|
-
11,
|
|
67034
|
-
"gif",
|
|
67035
|
-
"qx"
|
|
67036
|
-
],
|
|
67037
67034
|
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
67038
67035
|
256,
|
|
67039
67036
|
256,
|
|
67040
67037
|
"jpg",
|
|
67041
67038
|
"qx"
|
|
67042
67039
|
],
|
|
67040
|
+
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
67041
|
+
11,
|
|
67042
|
+
11,
|
|
67043
|
+
"gif",
|
|
67044
|
+
"qx"
|
|
67045
|
+
],
|
|
67043
67046
|
"qx/decoration/Simple/cursors/alias.gif": [
|
|
67044
67047
|
19,
|
|
67045
67048
|
15,
|
|
@@ -67052,39 +67055,15 @@ qx.$$packageData['0'] = {
|
|
|
67052
67055
|
"gif",
|
|
67053
67056
|
"qx"
|
|
67054
67057
|
],
|
|
67055
|
-
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
67056
|
-
20,
|
|
67057
|
-
20,
|
|
67058
|
-
"gif",
|
|
67059
|
-
"qx"
|
|
67060
|
-
],
|
|
67061
67058
|
"qx/decoration/Simple/cursors/move.gif": [
|
|
67062
67059
|
13,
|
|
67063
67060
|
9,
|
|
67064
67061
|
"gif",
|
|
67065
67062
|
"qx"
|
|
67066
67063
|
],
|
|
67067
|
-
"qx/decoration/Simple/
|
|
67068
|
-
|
|
67069
|
-
|
|
67070
|
-
"gif",
|
|
67071
|
-
"qx"
|
|
67072
|
-
],
|
|
67073
|
-
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
67074
|
-
16,
|
|
67075
|
-
7,
|
|
67076
|
-
"gif",
|
|
67077
|
-
"qx"
|
|
67078
|
-
],
|
|
67079
|
-
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
67080
|
-
16,
|
|
67081
|
-
5,
|
|
67082
|
-
"gif",
|
|
67083
|
-
"qx"
|
|
67084
|
-
],
|
|
67085
|
-
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
67086
|
-
16,
|
|
67087
|
-
5,
|
|
67064
|
+
"qx/decoration/Simple/cursors/nodrop.gif": [
|
|
67065
|
+
20,
|
|
67066
|
+
20,
|
|
67088
67067
|
"gif",
|
|
67089
67068
|
"qx"
|
|
67090
67069
|
],
|
|
@@ -67100,6 +67079,24 @@ qx.$$packageData['0'] = {
|
|
|
67100
67079
|
"png",
|
|
67101
67080
|
"qx"
|
|
67102
67081
|
],
|
|
67082
|
+
"qx/decoration/Simple/tabview/close.gif": [
|
|
67083
|
+
10,
|
|
67084
|
+
9,
|
|
67085
|
+
"gif",
|
|
67086
|
+
"qx"
|
|
67087
|
+
],
|
|
67088
|
+
"qx/decoration/Simple/tree/minus.gif": [
|
|
67089
|
+
19,
|
|
67090
|
+
16,
|
|
67091
|
+
"gif",
|
|
67092
|
+
"qx"
|
|
67093
|
+
],
|
|
67094
|
+
"qx/decoration/Simple/tree/plus.gif": [
|
|
67095
|
+
19,
|
|
67096
|
+
16,
|
|
67097
|
+
"gif",
|
|
67098
|
+
"qx"
|
|
67099
|
+
],
|
|
67103
67100
|
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
67104
67101
|
10,
|
|
67105
67102
|
10,
|
|
@@ -67118,18 +67115,18 @@ qx.$$packageData['0'] = {
|
|
|
67118
67115
|
"png",
|
|
67119
67116
|
"qx"
|
|
67120
67117
|
],
|
|
67121
|
-
"qx/decoration/Simple/table/boolean-true.png": [
|
|
67122
|
-
11,
|
|
67123
|
-
11,
|
|
67124
|
-
"png",
|
|
67125
|
-
"qx"
|
|
67126
|
-
],
|
|
67127
67118
|
"qx/decoration/Simple/table/descending-invert.png": [
|
|
67128
67119
|
10,
|
|
67129
67120
|
10,
|
|
67130
67121
|
"png",
|
|
67131
67122
|
"qx"
|
|
67132
67123
|
],
|
|
67124
|
+
"qx/decoration/Simple/table/boolean-true.png": [
|
|
67125
|
+
11,
|
|
67126
|
+
11,
|
|
67127
|
+
"png",
|
|
67128
|
+
"qx"
|
|
67129
|
+
],
|
|
67133
67130
|
"qx/decoration/Simple/table/descending.png": [
|
|
67134
67131
|
10,
|
|
67135
67132
|
10,
|
|
@@ -67142,141 +67139,147 @@ qx.$$packageData['0'] = {
|
|
|
67142
67139
|
"png",
|
|
67143
67140
|
"qx"
|
|
67144
67141
|
],
|
|
67145
|
-
"qx/decoration/Simple/
|
|
67146
|
-
|
|
67147
|
-
|
|
67142
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
67143
|
+
16,
|
|
67144
|
+
7,
|
|
67148
67145
|
"gif",
|
|
67149
67146
|
"qx"
|
|
67150
67147
|
],
|
|
67151
|
-
"qx/decoration/Simple/
|
|
67152
|
-
19,
|
|
67148
|
+
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
67153
67149
|
16,
|
|
67150
|
+
7,
|
|
67154
67151
|
"gif",
|
|
67155
67152
|
"qx"
|
|
67156
67153
|
],
|
|
67157
|
-
"qx/decoration/Simple/
|
|
67158
|
-
19,
|
|
67154
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
67159
67155
|
16,
|
|
67156
|
+
5,
|
|
67160
67157
|
"gif",
|
|
67161
67158
|
"qx"
|
|
67162
67159
|
],
|
|
67163
|
-
"qx/decoration/Simple/
|
|
67164
|
-
19,
|
|
67160
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
67165
67161
|
16,
|
|
67162
|
+
5,
|
|
67166
67163
|
"gif",
|
|
67167
67164
|
"qx"
|
|
67168
67165
|
],
|
|
67169
|
-
"qx/decoration/Simple/
|
|
67170
|
-
|
|
67171
|
-
|
|
67166
|
+
"qx/decoration/Simple/window/close-white.gif": [
|
|
67167
|
+
10,
|
|
67168
|
+
9,
|
|
67172
67169
|
"gif",
|
|
67173
67170
|
"qx"
|
|
67174
67171
|
],
|
|
67175
|
-
"qx/decoration/Simple/
|
|
67176
|
-
|
|
67177
|
-
|
|
67172
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
67173
|
+
10,
|
|
67174
|
+
9,
|
|
67178
67175
|
"gif",
|
|
67179
67176
|
"qx"
|
|
67180
67177
|
],
|
|
67181
|
-
"qx/decoration/Simple/
|
|
67182
|
-
|
|
67183
|
-
|
|
67178
|
+
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
67179
|
+
9,
|
|
67180
|
+
9,
|
|
67184
67181
|
"gif",
|
|
67185
67182
|
"qx"
|
|
67186
67183
|
],
|
|
67187
|
-
"qx/decoration/Simple/
|
|
67188
|
-
|
|
67189
|
-
|
|
67184
|
+
"qx/decoration/Simple/window/maximize.gif": [
|
|
67185
|
+
9,
|
|
67186
|
+
9,
|
|
67190
67187
|
"gif",
|
|
67191
67188
|
"qx"
|
|
67192
67189
|
],
|
|
67193
|
-
"qx/decoration/Simple/
|
|
67194
|
-
|
|
67195
|
-
|
|
67190
|
+
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
67191
|
+
9,
|
|
67192
|
+
9,
|
|
67196
67193
|
"gif",
|
|
67197
67194
|
"qx"
|
|
67198
67195
|
],
|
|
67199
|
-
"qx/decoration/Simple/
|
|
67200
|
-
|
|
67201
|
-
|
|
67196
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
67197
|
+
9,
|
|
67198
|
+
9,
|
|
67202
67199
|
"gif",
|
|
67203
67200
|
"qx"
|
|
67204
67201
|
],
|
|
67205
|
-
"qx/decoration/Simple/
|
|
67206
|
-
|
|
67207
|
-
|
|
67202
|
+
"qx/decoration/Simple/window/restore-white.gif": [
|
|
67203
|
+
8,
|
|
67204
|
+
9,
|
|
67208
67205
|
"gif",
|
|
67209
67206
|
"qx"
|
|
67210
67207
|
],
|
|
67211
|
-
"qx/decoration/Simple/
|
|
67208
|
+
"qx/decoration/Simple/window/restore.gif": [
|
|
67209
|
+
8,
|
|
67210
|
+
9,
|
|
67211
|
+
"gif",
|
|
67212
|
+
"qx"
|
|
67213
|
+
],
|
|
67214
|
+
"qx/decoration/Simple/treevirtual/cross.gif": [
|
|
67212
67215
|
19,
|
|
67213
67216
|
16,
|
|
67214
67217
|
"gif",
|
|
67215
67218
|
"qx"
|
|
67216
67219
|
],
|
|
67217
|
-
"qx/decoration/Simple/treevirtual/
|
|
67220
|
+
"qx/decoration/Simple/treevirtual/cross_minus.gif": [
|
|
67218
67221
|
19,
|
|
67219
67222
|
16,
|
|
67220
67223
|
"gif",
|
|
67221
67224
|
"qx"
|
|
67222
67225
|
],
|
|
67223
|
-
"qx/decoration/Simple/treevirtual/
|
|
67226
|
+
"qx/decoration/Simple/treevirtual/cross_plus.gif": [
|
|
67224
67227
|
19,
|
|
67225
67228
|
16,
|
|
67226
67229
|
"gif",
|
|
67227
67230
|
"qx"
|
|
67228
67231
|
],
|
|
67229
|
-
"qx/decoration/Simple/treevirtual/
|
|
67232
|
+
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
67230
67233
|
19,
|
|
67231
67234
|
16,
|
|
67232
67235
|
"gif",
|
|
67233
67236
|
"qx"
|
|
67234
67237
|
],
|
|
67235
|
-
"qx/decoration/Simple/
|
|
67236
|
-
|
|
67237
|
-
|
|
67238
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
67239
|
+
19,
|
|
67240
|
+
16,
|
|
67238
67241
|
"gif",
|
|
67239
67242
|
"qx"
|
|
67240
67243
|
],
|
|
67241
|
-
"qx/decoration/Simple/
|
|
67242
|
-
|
|
67243
|
-
|
|
67244
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
67245
|
+
19,
|
|
67246
|
+
16,
|
|
67244
67247
|
"gif",
|
|
67245
67248
|
"qx"
|
|
67246
67249
|
],
|
|
67247
|
-
"qx/decoration/Simple/
|
|
67248
|
-
|
|
67249
|
-
|
|
67250
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
67251
|
+
19,
|
|
67252
|
+
16,
|
|
67250
67253
|
"gif",
|
|
67251
67254
|
"qx"
|
|
67252
67255
|
],
|
|
67253
|
-
"qx/decoration/Simple/
|
|
67254
|
-
|
|
67255
|
-
|
|
67256
|
+
"qx/decoration/Simple/treevirtual/only_minus.gif": [
|
|
67257
|
+
19,
|
|
67258
|
+
16,
|
|
67256
67259
|
"gif",
|
|
67257
67260
|
"qx"
|
|
67258
67261
|
],
|
|
67259
|
-
"qx/decoration/Simple/
|
|
67260
|
-
|
|
67261
|
-
|
|
67262
|
+
"qx/decoration/Simple/treevirtual/only_plus.gif": [
|
|
67263
|
+
19,
|
|
67264
|
+
16,
|
|
67262
67265
|
"gif",
|
|
67263
67266
|
"qx"
|
|
67264
67267
|
],
|
|
67265
|
-
"qx/decoration/Simple/
|
|
67266
|
-
|
|
67267
|
-
|
|
67268
|
+
"qx/decoration/Simple/treevirtual/start.gif": [
|
|
67269
|
+
19,
|
|
67270
|
+
16,
|
|
67268
67271
|
"gif",
|
|
67269
67272
|
"qx"
|
|
67270
67273
|
],
|
|
67271
|
-
"qx/decoration/Simple/
|
|
67272
|
-
|
|
67273
|
-
|
|
67274
|
+
"qx/decoration/Simple/treevirtual/start_minus.gif": [
|
|
67275
|
+
19,
|
|
67276
|
+
16,
|
|
67274
67277
|
"gif",
|
|
67275
67278
|
"qx"
|
|
67276
67279
|
],
|
|
67277
|
-
"qx/decoration/Simple/
|
|
67278
|
-
|
|
67279
|
-
|
|
67280
|
+
"qx/decoration/Simple/treevirtual/start_plus.gif": [
|
|
67281
|
+
19,
|
|
67282
|
+
16,
|
|
67280
67283
|
"gif",
|
|
67281
67284
|
"qx"
|
|
67282
67285
|
],
|
|
@@ -67322,13 +67325,13 @@ qx.$$packageData['0'] = {
|
|
|
67322
67325
|
"json",
|
|
67323
67326
|
"qx"
|
|
67324
67327
|
],
|
|
67325
|
-
"qx/tool/schema/
|
|
67328
|
+
"qx/tool/schema/qooxdoo-1-0-0.json": [
|
|
67326
67329
|
null,
|
|
67327
67330
|
null,
|
|
67328
67331
|
"json",
|
|
67329
67332
|
"qx"
|
|
67330
67333
|
],
|
|
67331
|
-
"qx/tool/schema/
|
|
67334
|
+
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
67332
67335
|
null,
|
|
67333
67336
|
null,
|
|
67334
67337
|
"json",
|
|
@@ -67340,22 +67343,16 @@ qx.$$packageData['0'] = {
|
|
|
67340
67343
|
"",
|
|
67341
67344
|
"qx"
|
|
67342
67345
|
],
|
|
67343
|
-
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.d.ts": [
|
|
67344
|
-
null,
|
|
67345
|
-
null,
|
|
67346
|
-
"ts",
|
|
67347
|
-
"qx"
|
|
67348
|
-
],
|
|
67349
67346
|
"qx/tool/cli/templates/template_vars.js": [
|
|
67350
67347
|
null,
|
|
67351
67348
|
null,
|
|
67352
67349
|
"js",
|
|
67353
67350
|
"qx"
|
|
67354
67351
|
],
|
|
67355
|
-
"qx/tool/
|
|
67352
|
+
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.d.ts": [
|
|
67356
67353
|
null,
|
|
67357
67354
|
null,
|
|
67358
|
-
"
|
|
67355
|
+
"ts",
|
|
67359
67356
|
"qx"
|
|
67360
67357
|
],
|
|
67361
67358
|
"qx/tool/website/build/404.html": [
|
|
@@ -67382,6 +67379,12 @@ qx.$$packageData['0'] = {
|
|
|
67382
67379
|
"css",
|
|
67383
67380
|
"qx"
|
|
67384
67381
|
],
|
|
67382
|
+
"qx/tool/website/layouts/default.dot": [
|
|
67383
|
+
null,
|
|
67384
|
+
null,
|
|
67385
|
+
"dot",
|
|
67386
|
+
"qx"
|
|
67387
|
+
],
|
|
67385
67388
|
"qx/tool/website/sass/qooxdoo.scss": [
|
|
67386
67389
|
null,
|
|
67387
67390
|
null,
|
|
@@ -67466,13 +67469,13 @@ qx.$$packageData['0'] = {
|
|
|
67466
67469
|
"js",
|
|
67467
67470
|
"qx"
|
|
67468
67471
|
],
|
|
67469
|
-
"qx/tool/cli/templates/class/
|
|
67472
|
+
"qx/tool/cli/templates/class/singleton.tmpl.js": [
|
|
67470
67473
|
null,
|
|
67471
67474
|
null,
|
|
67472
67475
|
"js",
|
|
67473
67476
|
"qx"
|
|
67474
67477
|
],
|
|
67475
|
-
"qx/tool/cli/templates/class/
|
|
67478
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
67476
67479
|
null,
|
|
67477
67480
|
null,
|
|
67478
67481
|
"js",
|
|
@@ -67646,18 +67649,18 @@ qx.$$packageData['0'] = {
|
|
|
67646
67649
|
"js",
|
|
67647
67650
|
"qx"
|
|
67648
67651
|
],
|
|
67649
|
-
"qx/tool/website/src/assets/favicon.png": [
|
|
67650
|
-
32,
|
|
67651
|
-
32,
|
|
67652
|
-
"png",
|
|
67653
|
-
"qx"
|
|
67654
|
-
],
|
|
67655
67652
|
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
67656
67653
|
null,
|
|
67657
67654
|
null,
|
|
67658
67655
|
"js",
|
|
67659
67656
|
"qx"
|
|
67660
67657
|
],
|
|
67658
|
+
"qx/tool/website/src/assets/favicon.png": [
|
|
67659
|
+
32,
|
|
67660
|
+
32,
|
|
67661
|
+
"png",
|
|
67662
|
+
"qx"
|
|
67663
|
+
],
|
|
67661
67664
|
"qx/tool/website/src/assets/jquery.js": [
|
|
67662
67665
|
null,
|
|
67663
67666
|
null,
|
|
@@ -67670,18 +67673,18 @@ qx.$$packageData['0'] = {
|
|
|
67670
67673
|
"svg",
|
|
67671
67674
|
"qx"
|
|
67672
67675
|
],
|
|
67673
|
-
"qx/tool/website/src/assets/qx-api.png": [
|
|
67674
|
-
1144,
|
|
67675
|
-
640,
|
|
67676
|
-
"png",
|
|
67677
|
-
"qx"
|
|
67678
|
-
],
|
|
67679
67676
|
"qx/tool/website/src/assets/qx-ide.png": [
|
|
67680
67677
|
3183,
|
|
67681
67678
|
1752,
|
|
67682
67679
|
"png",
|
|
67683
67680
|
"qx"
|
|
67684
67681
|
],
|
|
67682
|
+
"qx/tool/website/src/assets/qx-api.png": [
|
|
67683
|
+
1144,
|
|
67684
|
+
640,
|
|
67685
|
+
"png",
|
|
67686
|
+
"qx"
|
|
67687
|
+
],
|
|
67685
67688
|
"qx/tool/website/src/assets/qx-oo.png": [
|
|
67686
67689
|
870,
|
|
67687
67690
|
502,
|
|
@@ -67724,49 +67727,49 @@ qx.$$packageData['0'] = {
|
|
|
67724
67727
|
"js",
|
|
67725
67728
|
"qx"
|
|
67726
67729
|
],
|
|
67727
|
-
"qx/tool/cli/templates/skeleton/
|
|
67730
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
67728
67731
|
null,
|
|
67729
67732
|
null,
|
|
67730
67733
|
"tmpl",
|
|
67731
67734
|
"qx"
|
|
67732
67735
|
],
|
|
67733
|
-
"qx/tool/cli/templates/skeleton/
|
|
67736
|
+
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
|
|
67734
67737
|
null,
|
|
67735
67738
|
null,
|
|
67736
67739
|
"json",
|
|
67737
67740
|
"qx"
|
|
67738
67741
|
],
|
|
67739
|
-
"qx/tool/cli/templates/skeleton/
|
|
67742
|
+
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
|
|
67740
67743
|
null,
|
|
67741
67744
|
null,
|
|
67742
67745
|
"json",
|
|
67743
67746
|
"qx"
|
|
67744
67747
|
],
|
|
67745
|
-
"qx/tool/cli/templates/skeleton/
|
|
67748
|
+
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
|
|
67746
67749
|
null,
|
|
67747
67750
|
null,
|
|
67748
67751
|
"md",
|
|
67749
67752
|
"qx"
|
|
67750
67753
|
],
|
|
67751
|
-
"qx/tool/cli/templates/skeleton/
|
|
67754
|
+
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
|
|
67752
67755
|
null,
|
|
67753
67756
|
null,
|
|
67754
67757
|
"tmpl",
|
|
67755
67758
|
"qx"
|
|
67756
67759
|
],
|
|
67757
|
-
"qx/tool/cli/templates/skeleton/
|
|
67760
|
+
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
|
|
67758
67761
|
null,
|
|
67759
67762
|
null,
|
|
67760
67763
|
"json",
|
|
67761
67764
|
"qx"
|
|
67762
67765
|
],
|
|
67763
|
-
"qx/tool/cli/templates/skeleton/
|
|
67766
|
+
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
|
|
67764
67767
|
null,
|
|
67765
67768
|
null,
|
|
67766
67769
|
"json",
|
|
67767
67770
|
"qx"
|
|
67768
67771
|
],
|
|
67769
|
-
"qx/tool/cli/templates/skeleton/
|
|
67772
|
+
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
|
|
67770
67773
|
null,
|
|
67771
67774
|
null,
|
|
67772
67775
|
"md",
|
|
@@ -67808,49 +67811,49 @@ qx.$$packageData['0'] = {
|
|
|
67808
67811
|
"json",
|
|
67809
67812
|
"qx"
|
|
67810
67813
|
],
|
|
67811
|
-
"qx/tool/cli/templates/skeleton/package/
|
|
67814
|
+
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
|
|
67812
67815
|
null,
|
|
67813
67816
|
null,
|
|
67814
|
-
"
|
|
67817
|
+
"json",
|
|
67815
67818
|
"qx"
|
|
67816
67819
|
],
|
|
67817
|
-
"qx/tool/cli/templates/skeleton/package/
|
|
67820
|
+
"qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
|
|
67818
67821
|
null,
|
|
67819
67822
|
null,
|
|
67820
|
-
"
|
|
67823
|
+
"md",
|
|
67821
67824
|
"qx"
|
|
67822
67825
|
],
|
|
67823
|
-
"qx/tool/cli/templates/skeleton/
|
|
67826
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
|
|
67824
67827
|
null,
|
|
67825
67828
|
null,
|
|
67826
67829
|
"html",
|
|
67827
67830
|
"qx"
|
|
67828
67831
|
],
|
|
67829
|
-
"qx/tool/cli/templates/skeleton/
|
|
67832
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
|
|
67830
67833
|
null,
|
|
67831
67834
|
null,
|
|
67832
67835
|
"html",
|
|
67833
67836
|
"qx"
|
|
67834
67837
|
],
|
|
67835
|
-
"qx/tool/cli/templates/skeleton/
|
|
67838
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
67836
67839
|
null,
|
|
67837
67840
|
null,
|
|
67838
67841
|
"html",
|
|
67839
67842
|
"qx"
|
|
67840
67843
|
],
|
|
67841
|
-
"qx/tool/cli/templates/skeleton/
|
|
67844
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
67842
67845
|
null,
|
|
67843
67846
|
null,
|
|
67844
67847
|
"html",
|
|
67845
67848
|
"qx"
|
|
67846
67849
|
],
|
|
67847
|
-
"qx/tool/cli/templates/skeleton/
|
|
67850
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
67848
67851
|
null,
|
|
67849
67852
|
null,
|
|
67850
67853
|
"txt",
|
|
67851
67854
|
"qx"
|
|
67852
67855
|
],
|
|
67853
|
-
"qx/tool/cli/templates/skeleton/
|
|
67856
|
+
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
67854
67857
|
null,
|
|
67855
67858
|
null,
|
|
67856
67859
|
"txt",
|
|
@@ -67868,34 +67871,28 @@ qx.$$packageData['0'] = {
|
|
|
67868
67871
|
"txt",
|
|
67869
67872
|
"qx"
|
|
67870
67873
|
],
|
|
67871
|
-
"qx/tool/cli/templates/skeleton/
|
|
67874
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
|
|
67872
67875
|
180,
|
|
67873
67876
|
180,
|
|
67874
67877
|
"png",
|
|
67875
67878
|
"qx"
|
|
67876
67879
|
],
|
|
67877
|
-
"qx/tool/cli/templates/skeleton/
|
|
67880
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
|
|
67878
67881
|
32,
|
|
67879
67882
|
32,
|
|
67880
67883
|
"png",
|
|
67881
67884
|
"qx"
|
|
67882
67885
|
],
|
|
67883
|
-
"qx/tool/cli/templates/skeleton/
|
|
67886
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
|
|
67884
67887
|
256,
|
|
67885
67888
|
256,
|
|
67886
67889
|
"png",
|
|
67887
67890
|
"qx"
|
|
67888
67891
|
],
|
|
67889
|
-
"qx/tool/cli/templates/skeleton/
|
|
67890
|
-
|
|
67891
|
-
|
|
67892
|
-
"
|
|
67893
|
-
"qx"
|
|
67894
|
-
],
|
|
67895
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
|
|
67896
|
-
null,
|
|
67897
|
-
null,
|
|
67898
|
-
"js",
|
|
67892
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
|
|
67893
|
+
32,
|
|
67894
|
+
32,
|
|
67895
|
+
"png",
|
|
67899
67896
|
"qx"
|
|
67900
67897
|
],
|
|
67901
67898
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
@@ -67904,58 +67901,58 @@ qx.$$packageData['0'] = {
|
|
|
67904
67901
|
"js",
|
|
67905
67902
|
"qx"
|
|
67906
67903
|
],
|
|
67907
|
-
"qx/tool/cli/templates/skeleton/
|
|
67904
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
|
|
67908
67905
|
null,
|
|
67909
67906
|
null,
|
|
67910
67907
|
"js",
|
|
67911
67908
|
"qx"
|
|
67912
67909
|
],
|
|
67913
|
-
"qx/tool/cli/templates/skeleton/
|
|
67910
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
|
|
67914
67911
|
null,
|
|
67915
67912
|
null,
|
|
67916
67913
|
"js",
|
|
67917
67914
|
"qx"
|
|
67918
67915
|
],
|
|
67919
|
-
"qx/tool/cli/templates/skeleton/
|
|
67916
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
|
|
67920
67917
|
null,
|
|
67921
67918
|
null,
|
|
67922
67919
|
"js",
|
|
67923
67920
|
"qx"
|
|
67924
67921
|
],
|
|
67925
|
-
"qx/tool/cli/templates/skeleton/
|
|
67926
|
-
null,
|
|
67927
|
-
null,
|
|
67928
|
-
"tmpl",
|
|
67929
|
-
"qx"
|
|
67930
|
-
],
|
|
67931
|
-
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
|
|
67922
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
|
|
67932
67923
|
180,
|
|
67933
67924
|
180,
|
|
67934
67925
|
"png",
|
|
67935
67926
|
"qx"
|
|
67936
67927
|
],
|
|
67937
|
-
"qx/tool/cli/templates/skeleton/
|
|
67928
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
|
|
67938
67929
|
32,
|
|
67939
67930
|
32,
|
|
67940
67931
|
"png",
|
|
67941
67932
|
"qx"
|
|
67942
67933
|
],
|
|
67943
|
-
"qx/tool/cli/templates/skeleton/
|
|
67934
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
|
|
67944
67935
|
256,
|
|
67945
67936
|
256,
|
|
67946
67937
|
"png",
|
|
67947
67938
|
"qx"
|
|
67948
67939
|
],
|
|
67949
|
-
"qx/tool/cli/templates/skeleton/
|
|
67950
|
-
|
|
67951
|
-
|
|
67952
|
-
"
|
|
67940
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
67941
|
+
null,
|
|
67942
|
+
null,
|
|
67943
|
+
"js",
|
|
67953
67944
|
"qx"
|
|
67954
67945
|
],
|
|
67955
|
-
"qx/tool/cli/templates/skeleton/
|
|
67956
|
-
|
|
67957
|
-
|
|
67958
|
-
"
|
|
67946
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
|
|
67947
|
+
null,
|
|
67948
|
+
null,
|
|
67949
|
+
"js",
|
|
67950
|
+
"qx"
|
|
67951
|
+
],
|
|
67952
|
+
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
|
|
67953
|
+
null,
|
|
67954
|
+
null,
|
|
67955
|
+
"tmpl",
|
|
67959
67956
|
"qx"
|
|
67960
67957
|
],
|
|
67961
67958
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
@@ -67970,82 +67967,88 @@ qx.$$packageData['0'] = {
|
|
|
67970
67967
|
"js",
|
|
67971
67968
|
"qx"
|
|
67972
67969
|
],
|
|
67973
|
-
"qx/tool/cli/templates/skeleton/
|
|
67970
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
67971
|
+
32,
|
|
67972
|
+
32,
|
|
67973
|
+
"png",
|
|
67974
|
+
"qx"
|
|
67975
|
+
],
|
|
67976
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
67974
67977
|
null,
|
|
67975
67978
|
null,
|
|
67976
|
-
"
|
|
67979
|
+
"js",
|
|
67977
67980
|
"qx"
|
|
67978
67981
|
],
|
|
67979
|
-
"qx/tool/cli/templates/skeleton/
|
|
67982
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
|
|
67980
67983
|
null,
|
|
67981
67984
|
null,
|
|
67982
67985
|
"js",
|
|
67983
67986
|
"qx"
|
|
67984
67987
|
],
|
|
67985
|
-
"qx/tool/cli/templates/skeleton/
|
|
67988
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
|
|
67986
67989
|
null,
|
|
67987
67990
|
null,
|
|
67988
67991
|
"js",
|
|
67989
67992
|
"qx"
|
|
67990
67993
|
],
|
|
67991
|
-
"qx/tool/cli/templates/skeleton/
|
|
67994
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
|
|
67992
67995
|
null,
|
|
67993
67996
|
null,
|
|
67994
67997
|
"js",
|
|
67995
67998
|
"qx"
|
|
67996
67999
|
],
|
|
67997
|
-
"qx/tool/cli/templates/skeleton/
|
|
68000
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
|
|
67998
68001
|
null,
|
|
67999
68002
|
null,
|
|
68000
|
-
"
|
|
68003
|
+
"js",
|
|
68001
68004
|
"qx"
|
|
68002
68005
|
],
|
|
68003
|
-
"qx/tool/cli/templates/skeleton/
|
|
68006
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
|
|
68004
68007
|
null,
|
|
68005
68008
|
null,
|
|
68006
|
-
"
|
|
68009
|
+
"js",
|
|
68007
68010
|
"qx"
|
|
68008
68011
|
],
|
|
68009
|
-
"qx/tool/cli/templates/skeleton/
|
|
68012
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
68010
68013
|
null,
|
|
68011
68014
|
null,
|
|
68012
68015
|
"js",
|
|
68013
68016
|
"qx"
|
|
68014
68017
|
],
|
|
68015
|
-
"qx/tool/cli/templates/skeleton/
|
|
68018
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
68016
68019
|
null,
|
|
68017
68020
|
null,
|
|
68018
68021
|
"js",
|
|
68019
68022
|
"qx"
|
|
68020
68023
|
],
|
|
68021
|
-
"qx/tool/cli/templates/skeleton/
|
|
68024
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
68022
68025
|
null,
|
|
68023
68026
|
null,
|
|
68024
68027
|
"js",
|
|
68025
68028
|
"qx"
|
|
68026
68029
|
],
|
|
68027
|
-
"qx/tool/cli/templates/skeleton/
|
|
68030
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
|
|
68028
68031
|
null,
|
|
68029
68032
|
null,
|
|
68030
|
-
"
|
|
68033
|
+
"tmpl",
|
|
68031
68034
|
"qx"
|
|
68032
68035
|
],
|
|
68033
|
-
"qx/tool/cli/templates/skeleton/
|
|
68036
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
|
|
68034
68037
|
null,
|
|
68035
68038
|
null,
|
|
68036
68039
|
"js",
|
|
68037
68040
|
"qx"
|
|
68038
68041
|
],
|
|
68039
|
-
"qx/tool/cli/templates/skeleton/
|
|
68042
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
68040
68043
|
null,
|
|
68041
68044
|
null,
|
|
68042
|
-
"
|
|
68045
|
+
"scss",
|
|
68043
68046
|
"qx"
|
|
68044
68047
|
],
|
|
68045
|
-
"qx/tool/cli/templates/skeleton/
|
|
68048
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
68046
68049
|
null,
|
|
68047
68050
|
null,
|
|
68048
|
-
"
|
|
68051
|
+
"scss",
|
|
68049
68052
|
"qx"
|
|
68050
68053
|
],
|
|
68051
68054
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
@@ -68054,19 +68057,19 @@ qx.$$packageData['0'] = {
|
|
|
68054
68057
|
"js",
|
|
68055
68058
|
"qx"
|
|
68056
68059
|
],
|
|
68057
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
68060
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
|
|
68058
68061
|
null,
|
|
68059
68062
|
null,
|
|
68060
68063
|
"js",
|
|
68061
68064
|
"qx"
|
|
68062
68065
|
],
|
|
68063
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
68066
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
|
|
68064
68067
|
null,
|
|
68065
68068
|
null,
|
|
68066
68069
|
"js",
|
|
68067
68070
|
"qx"
|
|
68068
68071
|
],
|
|
68069
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
68072
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
|
|
68070
68073
|
null,
|
|
68071
68074
|
null,
|
|
68072
68075
|
"js",
|
|
@@ -68078,13 +68081,13 @@ qx.$$packageData['0'] = {
|
|
|
68078
68081
|
"js",
|
|
68079
68082
|
"qx"
|
|
68080
68083
|
],
|
|
68081
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
68084
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
|
|
68082
68085
|
null,
|
|
68083
68086
|
null,
|
|
68084
68087
|
"js",
|
|
68085
68088
|
"qx"
|
|
68086
68089
|
],
|
|
68087
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
68090
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
68088
68091
|
null,
|
|
68089
68092
|
null,
|
|
68090
68093
|
"js",
|