@qooxdoo/framework 7.1.0 → 7.2.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/CHANGELOG.md +3 -0
- package/Manifest.json +22 -22
- package/lib/compiler/compile-info.json +66 -66
- package/lib/compiler/index.js +406 -335
- package/lib/resource/qx/tool/cli/templates/loader/loader-browser.tmpl.js +1 -2
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/theme/custom/css/custom.css.map +1 -1
- package/lib/resource/qx/tool/schema/compile-1-0-0.json +11 -1
- package/npm-shrinkwrap.json +793 -744
- package/package.json +9 -8
- package/source/class/qx/Interface.js +13 -15
- package/source/class/qx/dev/unit/MTestLoader.js +25 -33
- package/source/class/qx/dev/unit/TestResult.js +9 -13
- package/source/class/qx/event/handler/Focus.js +1 -1
- package/source/class/qx/html/Element.js +1 -1
- package/source/class/qx/html/Node.js +0 -1
- package/source/class/qx/io/request/AbstractRequest.js +42 -66
- package/source/class/qx/test/Interface.js +70 -6
- package/source/class/qx/test/Mixin.js +20 -17
- package/source/class/qx/test/Promise.js +67 -91
- package/source/class/qx/test/bom/History.js +11 -19
- package/source/class/qx/test/bom/WebWorker.js +7 -15
- package/source/class/qx/test/bom/media/MediaTestCase.js +10 -18
- package/source/class/qx/test/bom/media/Video.js +10 -18
- package/source/class/qx/test/bom/rest/Resource.js +3 -7
- package/source/class/qx/test/bom/rest/ResourceWithRemote.js +40 -56
- package/source/class/qx/test/bom/webfonts/Validator.js +12 -20
- package/source/class/qx/test/core/Object.js +3 -7
- package/source/class/qx/test/data/controller/List.js +18 -22
- package/source/class/qx/test/data/marshal/Json.js +10 -14
- package/source/class/qx/test/data/store/Json.js +337 -428
- package/source/class/qx/test/data/store/Jsonp.js +46 -66
- package/source/class/qx/test/data/store/RestWithRemote.js +10 -18
- package/source/class/qx/test/html/Element.js +4 -8
- package/source/class/qx/test/html/Iframe.js +48 -60
- package/source/class/qx/test/io/jsonrpc/Client.js +1 -1
- package/source/class/qx/test/io/request/JsonpWithRemote.js +6 -10
- package/source/class/qx/test/io/request/MRequest.js +13 -25
- package/source/class/qx/test/io/request/Xhr.js +5 -9
- package/source/class/qx/test/io/request/XhrWithRemote.js +50 -78
- package/source/class/qx/test/io/rest/Resource.js +3 -7
- package/source/class/qx/test/io/rest/ResourceWithRemote.js +41 -57
- package/source/class/qx/test/mobile/basic/Image.js +16 -24
- package/source/class/qx/test/mobile/container/Navigation.js +3 -7
- package/source/class/qx/test/mobile/container/Scroll.js +8 -12
- package/source/class/qx/test/mobile/page/Page.js +24 -44
- package/source/class/qx/test/performance/Property.js +2 -2
- package/source/class/qx/test/ui/basic/Image.js +32 -52
- package/source/class/qx/test/ui/core/Blocker.js +6 -14
- package/source/class/qx/test/ui/embed/Iframe.js +13 -21
- package/source/class/qx/test/ui/form/FileSelectorButton.js +32 -0
- package/source/class/qx/test/ui/form/FormValidator.js +147 -211
- package/source/class/qx/test/ui/form/Label.js +8 -16
- package/source/class/qx/test/ui/root/Inline.js +9 -13
- package/source/class/qx/test/ui/table/Table.js +6 -14
- package/source/class/qx/test/ui/toolbar/OverflowHandling.js +18 -30
- package/source/class/qx/test/ui/virtual/Pane.js +3 -7
- package/source/class/qx/test/util/DynamicScriptLoader.js +23 -42
- package/source/class/qx/theme/iconfont/LoadMaterialIcons.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsOutlined.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsRound.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsSharp.js +4 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsTwoTone.js +4 -4
- package/source/class/qx/theme/tangible/Appearance.js +22 -3
- package/source/class/qx/theme/tangible/ColorEngine.js +3 -3
- package/source/class/qx/theme/tangible/Decoration.js +3 -3
- package/source/class/qx/tool/cli/Watch.js +3 -7
- package/source/class/qx/tool/cli/api/AbstractApi.js +1 -1
- package/source/class/qx/tool/cli/api/CompilerApi.js +3 -7
- package/source/class/qx/tool/cli/commands/Compile.js +9 -1
- package/source/class/qx/tool/cli/commands/Lint.js +21 -17
- package/source/class/qx/tool/compiler/ClassFile.js +22 -12
- package/source/class/qx/tool/compiler/Es6ify.js +12 -5
- package/source/class/qx/tool/compiler/TargetError.js +3 -4
- package/source/class/qx/tool/compiler/app/Application.js +14 -0
- package/source/class/qx/tool/compiler/app/WebFont.js +8 -6
- package/source/class/qx/tool/compiler/targets/SourceCodeCopier.js +1 -1
- package/source/class/qx/tool/compiler/targets/Target.js +7 -5
- package/source/class/qx/tool/compiler/targets/meta/AbstractJavascriptMeta.js +1 -1
- package/source/class/qx/tool/compiler/targets/meta/Browserify.js +88 -52
- package/source/class/qx/tool/compiler/targets/meta/Uglify.js +11 -3
- package/source/class/qx/tool/utils/Json.js +1 -1
- package/source/class/qx/tool/utils/Website.js +2 -2
- package/source/class/qx/ui/basic/Label.js +13 -17
- package/source/class/qx/ui/core/MPlacement.js +13 -21
- package/source/class/qx/ui/core/Widget.js +2 -3
- package/source/class/qx/ui/core/scroll/NativeScrollBar.js +3 -7
- package/source/class/qx/ui/core/scroll/ScrollBar.js +3 -7
- package/source/class/qx/ui/embed/Iframe.js +40 -50
- package/source/class/qx/ui/form/AbstractField.js +8 -12
- package/source/class/qx/ui/form/ComboBox.js +7 -15
- package/source/class/qx/ui/form/DateField.js +9 -18
- package/source/class/qx/ui/form/FileSelectorButton.js +157 -0
- package/source/class/qx/ui/form/Spinner.js +7 -15
- package/source/class/qx/ui/form/TextArea.js +3 -7
- package/source/class/qx/ui/form/VirtualComboBox.js +8 -16
- package/source/class/qx/ui/form/VirtualSelectBox.js +21 -37
- package/source/class/qx/ui/layout/Canvas.js +2 -2
- package/source/class/qx/ui/mobile/container/MIScroll.js +3 -7
- package/source/class/qx/ui/progressive/headfoot/Progress.js +22 -34
- package/source/class/qx/ui/progressive/renderer/table/Row.js +1 -1
- package/source/class/qx/ui/splitpane/Pane.js +14 -22
- package/source/class/qx/ui/table/MTableContextMenu.js +63 -71
- package/source/class/qx/ui/table/Table.js +3 -7
- package/source/class/qx/ui/table/model/Abstract.js +5 -2
- package/source/class/qx/ui/table/pane/Scroller.js +8 -12
- package/source/class/qx/ui/toolbar/FileSelectorButton.js +57 -0
- package/source/class/qx/ui/toolbar/Part.js +3 -7
- package/source/class/qx/ui/tree/VirtualTree.js +5 -9
- package/source/class/qx/ui/treevirtual/MNode.js +5 -3
- package/source/class/qx/ui/treevirtual/TreeVirtual.js +3 -7
- package/source/class/qx/ui/virtual/core/Pane.js +30 -42
- package/source/class/qx/util/DynamicScriptLoader.js +31 -43
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v126.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/{materialicons-v70.ttf → materialicons-v126.ttf} +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v126.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v126.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v101.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v100.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v101.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v104.woff2 +0 -0
- package/source/resource/qx/tool/cli/templates/loader/loader-browser.tmpl.js +1 -2
- package/source/resource/qx/tool/schema/compile-1-0-0.json +11 -1
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v70.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v70.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialicons-v70.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined-v38.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround-v37.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp-v38.woff2 +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.eot +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.otf +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.woff +0 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone-v36.woff2 +0 -0
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.1
|
|
99
|
+
"qx.version": "7.2.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.1
|
|
131
|
+
"qx.compiler.version": "7.2.1",
|
|
132
132
|
"qx.headless": true,
|
|
133
133
|
"qx.compiler.applicationType": "node",
|
|
134
134
|
"qx.compiler.applicationName": "compiler"
|
|
@@ -1066,6 +1066,9 @@ try {
|
|
|
1066
1066
|
}
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
+
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({},{},[]);
|
|
1070
|
+
|
|
1071
|
+
|
|
1069
1072
|
(function () {
|
|
1070
1073
|
var $$dbClassInfo = {
|
|
1071
1074
|
"dependsOn": {
|
|
@@ -4768,13 +4771,11 @@ try {
|
|
|
4768
4771
|
} else {
|
|
4769
4772
|
// Other members are not checked more detailed because of
|
|
4770
4773
|
// JavaScript's loose type handling
|
|
4771
|
-
if (typeof object[key] === undefined) {
|
|
4772
|
-
if (
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
return false;
|
|
4777
|
-
}
|
|
4774
|
+
if (typeof object[key] === "undefined") {
|
|
4775
|
+
if (shouldThrow) {
|
|
4776
|
+
throw new Error('Implementation of member "' + key + '" is missing in class "' + clazz.classname + '" required by interface "' + iface.name + '"');
|
|
4777
|
+
} else {
|
|
4778
|
+
return false;
|
|
4778
4779
|
}
|
|
4779
4780
|
}
|
|
4780
4781
|
}
|
|
@@ -36437,7 +36438,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
36437
36438
|
* @return {String}
|
|
36438
36439
|
*/
|
|
36439
36440
|
getCompilerVersion() {
|
|
36440
|
-
return "7.1
|
|
36441
|
+
return "7.2.1";
|
|
36441
36442
|
},
|
|
36442
36443
|
|
|
36443
36444
|
/**
|
|
@@ -37853,9 +37854,9 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
37853
37854
|
construct() {
|
|
37854
37855
|
qx.tool.cli.api.AbstractApi.constructor.call(this);
|
|
37855
37856
|
this.__P_6_0 = {};
|
|
37856
|
-
this.addListener("changeCommand",
|
|
37857
|
+
this.addListener("changeCommand", () => {
|
|
37857
37858
|
this.afterCommandLoaded(this.getCommand());
|
|
37858
|
-
}
|
|
37859
|
+
});
|
|
37859
37860
|
},
|
|
37860
37861
|
|
|
37861
37862
|
properties: {
|
|
@@ -38004,7 +38005,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
38004
38005
|
* *********************************************************************** */
|
|
38005
38006
|
const Ajv = require("ajv");
|
|
38006
38007
|
|
|
38007
|
-
const betterAjvErrors = require("better-ajv-errors");
|
|
38008
|
+
const betterAjvErrors = require("better-ajv-errors").default;
|
|
38008
38009
|
|
|
38009
38010
|
const fs = qx.tool.utils.Promisify.fs;
|
|
38010
38011
|
qx.Class.define("qx.tool.utils.Json", {
|
|
@@ -45108,9 +45109,9 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45108
45109
|
|
|
45109
45110
|
var analyser = this.__P_5_0.getAnalyser();
|
|
45110
45111
|
|
|
45111
|
-
analyser.addListener("compiledClass",
|
|
45112
|
+
analyser.addListener("compiledClass", () => {
|
|
45112
45113
|
this.__P_5_1.classesCompiled++;
|
|
45113
|
-
}
|
|
45114
|
+
});
|
|
45114
45115
|
dirs.push(qx.tool.config.Compile.config.fileName);
|
|
45115
45116
|
dirs.push("compile.js");
|
|
45116
45117
|
analyser.getLibraries().forEach(function (lib) {
|
|
@@ -45729,6 +45730,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
45729
45730
|
"require": true
|
|
45730
45731
|
},
|
|
45731
45732
|
"qx.tool.cli.ConfigDb": {},
|
|
45733
|
+
"qx.tool.config.Compile": {},
|
|
45732
45734
|
"qx.tool.compiler.Console": {
|
|
45733
45735
|
"defer": "runtime"
|
|
45734
45736
|
},
|
|
@@ -46079,7 +46081,10 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
46079
46081
|
|
|
46080
46082
|
if (this.argv["feedback"] === null) {
|
|
46081
46083
|
this.argv["feedback"] = configDb.db("qx.default.feedback", true);
|
|
46082
|
-
}
|
|
46084
|
+
} // Validate compile.json against the schema
|
|
46085
|
+
|
|
46086
|
+
|
|
46087
|
+
await qx.tool.config.Compile.getInstance().load();
|
|
46083
46088
|
|
|
46084
46089
|
if (this.argv.verbose) {
|
|
46085
46090
|
console.log(`
|
|
@@ -46779,7 +46784,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46779
46784
|
appConfigs.forEach(appConfig => {
|
|
46780
46785
|
var app = appConfig.app = new qx.tool.compiler.app.Application(appConfig["class"]);
|
|
46781
46786
|
app.setTemplatePath(qx.tool.utils.Utils.getTemplateDir());
|
|
46782
|
-
["type", "theme", "name", "environment", "outputPath", "bootPath", "loaderTemplate", "publish", "deploy", "standalone"].forEach(name => {
|
|
46787
|
+
["type", "theme", "name", "environment", "outputPath", "bootPath", "loaderTemplate", "publish", "deploy", "standalone", "localModules"].forEach(name => {
|
|
46783
46788
|
if (appConfig[name] !== undefined) {
|
|
46784
46789
|
var fname = "set" + qx.lang.String.firstUp(name);
|
|
46785
46790
|
app[fname](appConfig[name]);
|
|
@@ -46799,6 +46804,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
46799
46804
|
app.setDescription(appConfig.description);
|
|
46800
46805
|
}
|
|
46801
46806
|
|
|
46807
|
+
if (appConfig.localModules) {
|
|
46808
|
+
app.setLocalModules(appConfig.localModules);
|
|
46809
|
+
}
|
|
46810
|
+
|
|
46802
46811
|
var parts = appConfig.parts || targetConfig.parts || data.parts;
|
|
46803
46812
|
|
|
46804
46813
|
if (parts) {
|
|
@@ -47587,16 +47596,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
47587
47596
|
let bootJs = new qx.tool.compiler.targets.meta.BootJs(appMeta);
|
|
47588
47597
|
let bootPackage = appMeta.createPackage();
|
|
47589
47598
|
appMeta.setBootMetaJs(bootJs);
|
|
47590
|
-
bootPackage.addJavascriptMeta(new qx.tool.compiler.targets.meta.PolyfillJs(appMeta)); // Add browserified CommonJS modules, if any
|
|
47599
|
+
bootPackage.addJavascriptMeta(new qx.tool.compiler.targets.meta.PolyfillJs(appMeta)); // Add browserified CommonJS modules, if any. The Browserify
|
|
47600
|
+
// class will always bundle local modules specified for an
|
|
47601
|
+
// application in compile.json, but will not bundle `require()`d
|
|
47602
|
+
// modules that are Node modules.
|
|
47591
47603
|
|
|
47592
|
-
|
|
47593
|
-
bootPackage.addJavascriptMeta(new qx.tool.compiler.targets.meta.Browserify(appMeta));
|
|
47594
|
-
}
|
|
47604
|
+
bootPackage.addJavascriptMeta(new qx.tool.compiler.targets.meta.Browserify(appMeta));
|
|
47595
47605
|
/*
|
|
47596
47606
|
* Assemble the Parts
|
|
47597
47607
|
*/
|
|
47598
47608
|
|
|
47599
|
-
|
|
47600
47609
|
var partsData = application.getPartsDependencies();
|
|
47601
47610
|
let matchBundle = qx.tool.compiler.app.Application.createWildcardMatchFunction(application.getBundleInclude(), application.getBundleExclude());
|
|
47602
47611
|
let lastPackage = bootPackage;
|
|
@@ -50013,6 +50022,20 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
50013
50022
|
writeIndexHtmlToRoot: {
|
|
50014
50023
|
init: false,
|
|
50015
50024
|
check: "Boolean"
|
|
50025
|
+
},
|
|
50026
|
+
|
|
50027
|
+
/**
|
|
50028
|
+
* Map specifying local modules to include in the build. Local modules are
|
|
50029
|
+
* always included in the compiled output, regardless of application type
|
|
50030
|
+
* (node, browser, etc.). Each member of the map has a key that is the
|
|
50031
|
+
* name of the module to be `require`d in code. The value is the path to
|
|
50032
|
+
* the module to be included. The path must begin with "./", and is
|
|
50033
|
+
* relative to the directory containing compile.json. The module may be
|
|
50034
|
+
* either a CommonJS module or an ES6 module.
|
|
50035
|
+
*/
|
|
50036
|
+
localModules: {
|
|
50037
|
+
init: null,
|
|
50038
|
+
check: "Object"
|
|
50016
50039
|
}
|
|
50017
50040
|
},
|
|
50018
50041
|
members: {
|
|
@@ -54404,7 +54427,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
54404
54427
|
|
|
54405
54428
|
const path = require("upath");
|
|
54406
54429
|
|
|
54407
|
-
const sourceMap = require("source-map");
|
|
54430
|
+
const sourceMap = require("source-map-js");
|
|
54408
54431
|
/**
|
|
54409
54432
|
* An AbstractJavascriptMeta provides an abstraction of some source code, and might be
|
|
54410
54433
|
* comprised of a number of input files which are merged together as required.
|
|
@@ -54932,7 +54955,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
54932
54955
|
|
|
54933
54956
|
const path = require("upath");
|
|
54934
54957
|
/**
|
|
54935
|
-
*
|
|
54958
|
+
*
|
|
54936
54959
|
*/
|
|
54937
54960
|
|
|
54938
54961
|
|
|
@@ -54955,32 +54978,45 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
54955
54978
|
let hasCommonjsModules = false;
|
|
54956
54979
|
let commonjsModules = new Set();
|
|
54957
54980
|
let references = {};
|
|
54981
|
+
const localModules = this.__P_44_0.getApplication().getLocalModules() || {};
|
|
54958
54982
|
|
|
54959
|
-
const db = this.__P_44_0.getAnalyser().getDatabase(); //
|
|
54983
|
+
const db = this.__P_44_0.getAnalyser().getDatabase(); // Only include discovered `require()`d Node modules if the
|
|
54984
|
+
// target application type is browser.
|
|
54960
54985
|
|
|
54961
54986
|
|
|
54962
|
-
|
|
54963
|
-
|
|
54987
|
+
if (this.__P_44_0.getEnvironmentValue("qx.compiler.applicationType") == "browser") {
|
|
54988
|
+
// Get a Set of unique `require`d CommonJS module names from
|
|
54989
|
+
// all classes
|
|
54990
|
+
for (let className in db.classInfo) {
|
|
54991
|
+
let classInfo = db.classInfo[className];
|
|
54964
54992
|
|
|
54965
|
-
|
|
54966
|
-
|
|
54967
|
-
|
|
54968
|
-
|
|
54993
|
+
if (classInfo.commonjsModules) {
|
|
54994
|
+
Object.keys(classInfo.commonjsModules).forEach(moduleName => {
|
|
54995
|
+
// Ignore this found `require()` if its a local modules
|
|
54996
|
+
if (moduleName in localModules) {
|
|
54997
|
+
return;
|
|
54998
|
+
} // Add this module name to the set of module names
|
|
54969
54999
|
|
|
54970
|
-
if (!references[moduleName]) {
|
|
54971
|
-
references[moduleName] = new Set();
|
|
54972
|
-
}
|
|
54973
55000
|
|
|
54974
|
-
|
|
55001
|
+
commonjsModules.add(moduleName); // Add the list of references from which this module was require()d
|
|
54975
55002
|
|
|
54976
|
-
|
|
54977
|
-
|
|
55003
|
+
if (!references[moduleName]) {
|
|
55004
|
+
references[moduleName] = new Set();
|
|
55005
|
+
}
|
|
55006
|
+
|
|
55007
|
+
references[moduleName].add([...classInfo.commonjsModules[moduleName]]); // There is at least one module
|
|
55008
|
+
|
|
55009
|
+
hasCommonjsModules = true;
|
|
55010
|
+
});
|
|
55011
|
+
}
|
|
54978
55012
|
}
|
|
54979
|
-
} // If there are any CommonJS modules required,
|
|
55013
|
+
} // If there are any CommonJS modules required to be bundled, or
|
|
55014
|
+
// any local modules specified for the application in
|
|
55015
|
+
// compile.json, browserify them
|
|
54980
55016
|
|
|
54981
55017
|
|
|
54982
|
-
if (hasCommonjsModules) {
|
|
54983
|
-
await this.__P_44_1(commonjsModules, references, ws);
|
|
55018
|
+
if (hasCommonjsModules || localModules) {
|
|
55019
|
+
await this.__P_44_1(commonjsModules, references, localModules, ws);
|
|
54984
55020
|
}
|
|
54985
55021
|
|
|
54986
55022
|
await new Promise(resolve => {
|
|
@@ -54988,8 +55024,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
54988
55024
|
});
|
|
54989
55025
|
},
|
|
54990
55026
|
|
|
54991
|
-
async __P_44_1(commonjsModules, references, ws) {
|
|
54992
|
-
|
|
55027
|
+
async __P_44_1(commonjsModules, references, localModules, ws) {
|
|
55028
|
+
const babelify = require("babelify");
|
|
55029
|
+
|
|
55030
|
+
const preset = require("@babel/preset-env");
|
|
54993
55031
|
|
|
54994
55032
|
const browserify = require("browserify");
|
|
54995
55033
|
|
|
@@ -55001,7 +55039,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55001
55039
|
|
|
55002
55040
|
commonjsModules = [...commonjsModules];
|
|
55003
55041
|
return new Promise(resolve => {
|
|
55004
|
-
b = browserify([], {
|
|
55042
|
+
let b = browserify([], {
|
|
55005
55043
|
builtins: builtins,
|
|
55006
55044
|
ignoreMissing: true,
|
|
55007
55045
|
insertGlobals: true,
|
|
@@ -55012,16 +55050,41 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55012
55050
|
let message = [];
|
|
55013
55051
|
message.push(`ERROR: could not locate require()d module: "${id}"`);
|
|
55014
55052
|
message.push(" required from:");
|
|
55015
|
-
|
|
55016
|
-
|
|
55017
|
-
|
|
55053
|
+
|
|
55054
|
+
try {
|
|
55055
|
+
[...references[id]].forEach(refs => {
|
|
55056
|
+
refs.forEach(ref => {
|
|
55057
|
+
message.push(` ${ref}`);
|
|
55058
|
+
});
|
|
55018
55059
|
});
|
|
55019
|
-
})
|
|
55060
|
+
} catch (e) {
|
|
55061
|
+
message.push(` <compile.json:application.localModules'>`);
|
|
55062
|
+
}
|
|
55063
|
+
|
|
55020
55064
|
qx.tool.compiler.Console.error(message.join("\n"));
|
|
55021
|
-
});
|
|
55065
|
+
}); // Include any dynamically determined `require()`d modules
|
|
55066
|
+
|
|
55067
|
+
|
|
55068
|
+
if (commonjsModules.length > 0) {
|
|
55069
|
+
b.require(commonjsModules);
|
|
55070
|
+
} // Include any local modules specified for the application
|
|
55071
|
+
// in compile.json
|
|
55072
|
+
|
|
55073
|
+
|
|
55074
|
+
if (localModules) {
|
|
55075
|
+
for (let requireName in localModules) {
|
|
55076
|
+
b.require(localModules[requireName], {
|
|
55077
|
+
expose: requireName
|
|
55078
|
+
});
|
|
55079
|
+
}
|
|
55080
|
+
} // Ensure ES6 local modules are converted to CommonJS format
|
|
55022
55081
|
|
|
55023
|
-
b.require(commonjsModules);
|
|
55024
55082
|
|
|
55083
|
+
b.transform(babelify, {
|
|
55084
|
+
presets: [preset],
|
|
55085
|
+
sourceMaps: false,
|
|
55086
|
+
global: true
|
|
55087
|
+
});
|
|
55025
55088
|
b.bundle((e, output) => {
|
|
55026
55089
|
if (e) {
|
|
55027
55090
|
// We've already handled the case of missing module. This is something else.
|
|
@@ -55929,12 +55992,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55929
55992
|
lookupListIndexes.forEach(index => {
|
|
55930
55993
|
let subTable = lookupList[index].subTables[0];
|
|
55931
55994
|
let leadingCharacters = [];
|
|
55932
|
-
|
|
55933
|
-
|
|
55934
|
-
|
|
55935
|
-
|
|
55936
|
-
|
|
55937
|
-
|
|
55995
|
+
|
|
55996
|
+
if (subTable.coverage.rangeRecords) {
|
|
55997
|
+
subTable.coverage.rangeRecords.forEach(coverage => {
|
|
55998
|
+
for (let i = coverage.start; i <= coverage.end; i++) {
|
|
55999
|
+
let character = font.stringsForGlyph(i)[0];
|
|
56000
|
+
leadingCharacters.push(character);
|
|
56001
|
+
}
|
|
56002
|
+
});
|
|
56003
|
+
}
|
|
56004
|
+
|
|
55938
56005
|
let ligatureSets = subTable.ligatureSets.toArray();
|
|
55939
56006
|
ligatureSets.forEach((ligatureSet, ligatureSetIndex) => {
|
|
55940
56007
|
let leadingCharacter = leadingCharacters[ligatureSetIndex];
|
|
@@ -62389,6 +62456,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62389
62456
|
construct(filename) {
|
|
62390
62457
|
qx.core.Object.constructor.call(this);
|
|
62391
62458
|
this.__filename = filename;
|
|
62459
|
+
this.__P_24_0 = ["addListener", "addListenerOnce"];
|
|
62392
62460
|
},
|
|
62393
62461
|
|
|
62394
62462
|
properties: {
|
|
@@ -62407,20 +62475,21 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62407
62475
|
},
|
|
62408
62476
|
members: {
|
|
62409
62477
|
__filename: null,
|
|
62478
|
+
__P_24_0: null,
|
|
62410
62479
|
|
|
62411
62480
|
async transform() {
|
|
62412
62481
|
let src = await fs.promises.readFile(this.__filename, "utf8");
|
|
62413
62482
|
let babelConfig = {};
|
|
62414
62483
|
let options = qx.lang.Object.clone(babelConfig.options || {}, true);
|
|
62415
62484
|
options.modules = false;
|
|
62416
|
-
let plugins = [require("@babel/plugin-syntax-jsx"), this.
|
|
62485
|
+
let plugins = [require("@babel/plugin-syntax-jsx"), this.__P_24_1()];
|
|
62417
62486
|
|
|
62418
62487
|
if (this.getArrowFunctions() != "never") {
|
|
62419
|
-
plugins.push(this.
|
|
62488
|
+
plugins.push(this.__P_24_2());
|
|
62420
62489
|
}
|
|
62421
62490
|
|
|
62422
|
-
plugins.push(this.__P_24_2());
|
|
62423
62491
|
plugins.push(this.__P_24_3());
|
|
62492
|
+
plugins.push(this.__P_24_4());
|
|
62424
62493
|
var config = {
|
|
62425
62494
|
ast: true,
|
|
62426
62495
|
babelrc: false,
|
|
@@ -62484,7 +62553,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62484
62553
|
* ```
|
|
62485
62554
|
* @returns
|
|
62486
62555
|
*/
|
|
62487
|
-
|
|
62556
|
+
__P_24_1() {
|
|
62488
62557
|
return {
|
|
62489
62558
|
visitor: {
|
|
62490
62559
|
ObjectExpression(path) {
|
|
@@ -62512,7 +62581,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62512
62581
|
};
|
|
62513
62582
|
},
|
|
62514
62583
|
|
|
62515
|
-
|
|
62584
|
+
__P_24_5(argNode) {
|
|
62516
62585
|
let body = argNode.body;
|
|
62517
62586
|
|
|
62518
62587
|
if (body.body.length == 1 && body.body[0].type == "ReturnStatement") {
|
|
@@ -62531,10 +62600,11 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62531
62600
|
* Tries to convert functions into arrow functions
|
|
62532
62601
|
* @returns
|
|
62533
62602
|
*/
|
|
62534
|
-
|
|
62603
|
+
__P_24_2() {
|
|
62535
62604
|
let t = this;
|
|
62536
62605
|
const isTest = this.__filename.indexOf("/test/") > -1;
|
|
62537
62606
|
let arrowFunctions = this.getArrowFunctions();
|
|
62607
|
+
let knownApiFunctions = this.__P_24_0;
|
|
62538
62608
|
return {
|
|
62539
62609
|
visitor: {
|
|
62540
62610
|
CallExpression(path) {
|
|
@@ -62542,11 +62612,11 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62542
62612
|
let callee = collapseMemberExpression(path.node.callee);
|
|
62543
62613
|
|
|
62544
62614
|
if (arrowFunctions == "careful") {
|
|
62545
|
-
if (!callee.endsWith(".
|
|
62615
|
+
if (!knownApiFunctions.some(fName => callee.endsWith("." + fName))) {
|
|
62546
62616
|
return;
|
|
62547
62617
|
}
|
|
62548
62618
|
|
|
62549
|
-
if (path.node.arguments.length != 3 || path.node.arguments[0].type != "StringLiteral" || path.node.arguments[1].type != "
|
|
62619
|
+
if (path.node.arguments.length != 3 || path.node.arguments[0].type != "StringLiteral" || path.node.arguments[1].type != "FunctionExpression" || path.node.arguments[2].type != "ThisExpression") {
|
|
62550
62620
|
return;
|
|
62551
62621
|
}
|
|
62552
62622
|
} else if (arrowFunctions == "aggressive") {
|
|
@@ -62562,7 +62632,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62562
62632
|
let argNode = path.node.arguments[i];
|
|
62563
62633
|
|
|
62564
62634
|
if (argNode.type == "FunctionExpression") {
|
|
62565
|
-
path.node.arguments[i] = t.
|
|
62635
|
+
path.node.arguments[i] = t.__P_24_5(argNode);
|
|
62566
62636
|
}
|
|
62567
62637
|
}
|
|
62568
62638
|
}
|
|
@@ -62576,11 +62646,12 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62576
62646
|
* and can be removed
|
|
62577
62647
|
* @returns
|
|
62578
62648
|
*/
|
|
62579
|
-
|
|
62649
|
+
__P_24_3() {
|
|
62650
|
+
let knownApiFunctions = this.__P_24_0;
|
|
62580
62651
|
return {
|
|
62581
62652
|
visitor: {
|
|
62582
62653
|
CallExpression(path) {
|
|
62583
|
-
if (path.node.callee.type == "MemberExpression" && path.node.callee.
|
|
62654
|
+
if (path.node.callee.type == "MemberExpression" && path.node.callee.property.type == "Identifier" && knownApiFunctions.includes(path.node.callee.property.name) && path.node.arguments.length == 3 && path.node.arguments[0].type == "StringLiteral" && path.node.arguments[1].type == "ArrowFunctionExpression" && path.node.arguments[2].type == "ThisExpression") {
|
|
62584
62655
|
qx.lang.Array.removeAt(path.node.arguments, 2);
|
|
62585
62656
|
}
|
|
62586
62657
|
}
|
|
@@ -62593,7 +62664,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62593
62664
|
* Translates `this.base(arguments...)` into `super`
|
|
62594
62665
|
* @returns
|
|
62595
62666
|
*/
|
|
62596
|
-
|
|
62667
|
+
__P_24_4() {
|
|
62597
62668
|
let methodNameStack = [];
|
|
62598
62669
|
|
|
62599
62670
|
function peekMethodName() {
|
|
@@ -62758,7 +62829,17 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62758
62829
|
},
|
|
62759
62830
|
members: {
|
|
62760
62831
|
async process() {
|
|
62761
|
-
|
|
62832
|
+
let files = this.argv.files || [];
|
|
62833
|
+
|
|
62834
|
+
if (files.length === 0) {
|
|
62835
|
+
files.push("source/class/**/*.js");
|
|
62836
|
+
}
|
|
62837
|
+
|
|
62838
|
+
for (let i = 0; i < files.length; i++) {
|
|
62839
|
+
files[i] = path.join(process.cwd(), files[i]);
|
|
62840
|
+
}
|
|
62841
|
+
|
|
62842
|
+
await this.__P_11_0(files);
|
|
62762
62843
|
let helperFilePath = require.main.path;
|
|
62763
62844
|
|
|
62764
62845
|
while (true) {
|
|
@@ -62791,15 +62872,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62791
62872
|
useEslintrc: this.argv.useEslintrc,
|
|
62792
62873
|
fix: this.argv.fix
|
|
62793
62874
|
});
|
|
62794
|
-
let files = this.argv.files || [];
|
|
62795
|
-
|
|
62796
|
-
if (files.length === 0) {
|
|
62797
|
-
files.push("source/class/**/*.js");
|
|
62798
|
-
}
|
|
62799
|
-
|
|
62800
|
-
for (let i = 0; i < files.length; i++) {
|
|
62801
|
-
files[i] = path.join(process.cwd(), files[i]);
|
|
62802
|
-
}
|
|
62803
62875
|
|
|
62804
62876
|
if (this.argv.printConfig) {
|
|
62805
62877
|
const fileConfig = await linter.calculateConfigForFile(files[0]);
|
|
@@ -62881,17 +62953,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
62881
62953
|
* @return {Promise<void>}
|
|
62882
62954
|
* @private
|
|
62883
62955
|
*/
|
|
62884
|
-
async __P_11_0() {
|
|
62956
|
+
async __P_11_0(files) {
|
|
62885
62957
|
const fixParams = this.argv.fixJsdocParams;
|
|
62886
62958
|
|
|
62887
62959
|
if (fixParams && fixParams !== "off") {
|
|
62888
|
-
let replaceInFiles = [];
|
|
62889
62960
|
const regex = fixParams === "type-first" ? /@param\s+([\w$]+)\s+({[\w|[\]{}<>?. ]+})/g : /@param\s+({[\w|[\]{}<>?. ]+})\s+([\w$]+)/g;
|
|
62890
|
-
replaceInFiles
|
|
62891
|
-
files:
|
|
62961
|
+
let replaceInFiles = {
|
|
62962
|
+
files: files,
|
|
62892
62963
|
from: regex,
|
|
62893
62964
|
to: "@param $2 $1"
|
|
62894
|
-
}
|
|
62965
|
+
};
|
|
62895
62966
|
await replaceInFile(replaceInFiles);
|
|
62896
62967
|
}
|
|
62897
62968
|
}
|
|
@@ -63581,9 +63652,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63581
63652
|
|
|
63582
63653
|
const metalsmith = require("metalsmith");
|
|
63583
63654
|
|
|
63584
|
-
const layouts = require("metalsmith
|
|
63655
|
+
const layouts = require("@metalsmith/layouts");
|
|
63585
63656
|
|
|
63586
|
-
const markdown = require("metalsmith
|
|
63657
|
+
const markdown = require("@metalsmith/markdown"); //const filenames = require("metalsmith-filenames");
|
|
63587
63658
|
//var permalinks = require("metalsmith-permalinks");
|
|
63588
63659
|
|
|
63589
63660
|
/**
|
|
@@ -65686,7 +65757,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
65686
65757
|
|
|
65687
65758
|
const crypto = require("crypto");
|
|
65688
65759
|
|
|
65689
|
-
const sourceMap = require("source-map");
|
|
65760
|
+
const sourceMap = require("source-map-js");
|
|
65690
65761
|
/**
|
|
65691
65762
|
* Copies multiple javascript source files into a single destination, preserving (merging)
|
|
65692
65763
|
* source maps as it goes.
|
|
@@ -71791,6 +71862,30 @@ qx.$$packageData['0'] = {
|
|
|
71791
71862
|
}
|
|
71792
71863
|
},
|
|
71793
71864
|
"resources": {
|
|
71865
|
+
"qx/decoration/Simple/checkbox/checked-disabled.png": [
|
|
71866
|
+
6,
|
|
71867
|
+
6,
|
|
71868
|
+
"png",
|
|
71869
|
+
"qx"
|
|
71870
|
+
],
|
|
71871
|
+
"qx/decoration/Simple/checkbox/checked.png": [
|
|
71872
|
+
6,
|
|
71873
|
+
6,
|
|
71874
|
+
"png",
|
|
71875
|
+
"qx"
|
|
71876
|
+
],
|
|
71877
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
71878
|
+
6,
|
|
71879
|
+
2,
|
|
71880
|
+
"png",
|
|
71881
|
+
"qx"
|
|
71882
|
+
],
|
|
71883
|
+
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
71884
|
+
6,
|
|
71885
|
+
2,
|
|
71886
|
+
"png",
|
|
71887
|
+
"qx"
|
|
71888
|
+
],
|
|
71794
71889
|
"qx/decoration/Simple/arrows/down-invert.gif": [
|
|
71795
71890
|
7,
|
|
71796
71891
|
4,
|
|
@@ -71815,13 +71910,13 @@ qx.$$packageData['0'] = {
|
|
|
71815
71910
|
"gif",
|
|
71816
71911
|
"qx"
|
|
71817
71912
|
],
|
|
71818
|
-
"qx/decoration/Simple/arrows/left
|
|
71913
|
+
"qx/decoration/Simple/arrows/left.gif": [
|
|
71819
71914
|
4,
|
|
71820
71915
|
7,
|
|
71821
71916
|
"gif",
|
|
71822
71917
|
"qx"
|
|
71823
71918
|
],
|
|
71824
|
-
"qx/decoration/Simple/arrows/left.gif": [
|
|
71919
|
+
"qx/decoration/Simple/arrows/left-invert.gif": [
|
|
71825
71920
|
4,
|
|
71826
71921
|
7,
|
|
71827
71922
|
"gif",
|
|
@@ -71833,13 +71928,13 @@ qx.$$packageData['0'] = {
|
|
|
71833
71928
|
"gif",
|
|
71834
71929
|
"qx"
|
|
71835
71930
|
],
|
|
71836
|
-
"qx/decoration/Simple/arrows/right
|
|
71931
|
+
"qx/decoration/Simple/arrows/right.gif": [
|
|
71837
71932
|
4,
|
|
71838
71933
|
7,
|
|
71839
71934
|
"gif",
|
|
71840
71935
|
"qx"
|
|
71841
71936
|
],
|
|
71842
|
-
"qx/decoration/Simple/arrows/right.gif": [
|
|
71937
|
+
"qx/decoration/Simple/arrows/right-invert.gif": [
|
|
71843
71938
|
4,
|
|
71844
71939
|
7,
|
|
71845
71940
|
"gif",
|
|
@@ -71851,40 +71946,16 @@ qx.$$packageData['0'] = {
|
|
|
71851
71946
|
"gif",
|
|
71852
71947
|
"qx"
|
|
71853
71948
|
],
|
|
71854
|
-
"qx/decoration/Simple/arrows/up-small.gif": [
|
|
71855
|
-
5,
|
|
71856
|
-
3,
|
|
71857
|
-
"gif",
|
|
71858
|
-
"qx"
|
|
71859
|
-
],
|
|
71860
71949
|
"qx/decoration/Simple/arrows/up.gif": [
|
|
71861
71950
|
7,
|
|
71862
71951
|
4,
|
|
71863
71952
|
"gif",
|
|
71864
71953
|
"qx"
|
|
71865
71954
|
],
|
|
71866
|
-
"qx/decoration/Simple/
|
|
71867
|
-
|
|
71868
|
-
|
|
71869
|
-
"
|
|
71870
|
-
"qx"
|
|
71871
|
-
],
|
|
71872
|
-
"qx/decoration/Simple/checkbox/checked.png": [
|
|
71873
|
-
6,
|
|
71874
|
-
6,
|
|
71875
|
-
"png",
|
|
71876
|
-
"qx"
|
|
71877
|
-
],
|
|
71878
|
-
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
71879
|
-
6,
|
|
71880
|
-
2,
|
|
71881
|
-
"png",
|
|
71882
|
-
"qx"
|
|
71883
|
-
],
|
|
71884
|
-
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
71885
|
-
6,
|
|
71886
|
-
2,
|
|
71887
|
-
"png",
|
|
71955
|
+
"qx/decoration/Simple/arrows/up-small.gif": [
|
|
71956
|
+
5,
|
|
71957
|
+
3,
|
|
71958
|
+
"gif",
|
|
71888
71959
|
"qx"
|
|
71889
71960
|
],
|
|
71890
71961
|
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
@@ -71899,15 +71970,39 @@ qx.$$packageData['0'] = {
|
|
|
71899
71970
|
"gif",
|
|
71900
71971
|
"qx"
|
|
71901
71972
|
],
|
|
71973
|
+
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
71974
|
+
11,
|
|
71975
|
+
11,
|
|
71976
|
+
"gif",
|
|
71977
|
+
"qx"
|
|
71978
|
+
],
|
|
71902
71979
|
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
71903
71980
|
256,
|
|
71904
71981
|
256,
|
|
71905
71982
|
"jpg",
|
|
71906
71983
|
"qx"
|
|
71907
71984
|
],
|
|
71908
|
-
"qx/decoration/Simple/
|
|
71909
|
-
|
|
71910
|
-
|
|
71985
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
71986
|
+
16,
|
|
71987
|
+
7,
|
|
71988
|
+
"gif",
|
|
71989
|
+
"qx"
|
|
71990
|
+
],
|
|
71991
|
+
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
71992
|
+
16,
|
|
71993
|
+
7,
|
|
71994
|
+
"gif",
|
|
71995
|
+
"qx"
|
|
71996
|
+
],
|
|
71997
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
71998
|
+
16,
|
|
71999
|
+
5,
|
|
72000
|
+
"gif",
|
|
72001
|
+
"qx"
|
|
72002
|
+
],
|
|
72003
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
72004
|
+
16,
|
|
72005
|
+
5,
|
|
71911
72006
|
"gif",
|
|
71912
72007
|
"qx"
|
|
71913
72008
|
],
|
|
@@ -71935,30 +72030,6 @@ qx.$$packageData['0'] = {
|
|
|
71935
72030
|
"gif",
|
|
71936
72031
|
"qx"
|
|
71937
72032
|
],
|
|
71938
|
-
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
71939
|
-
16,
|
|
71940
|
-
7,
|
|
71941
|
-
"gif",
|
|
71942
|
-
"qx"
|
|
71943
|
-
],
|
|
71944
|
-
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
71945
|
-
16,
|
|
71946
|
-
7,
|
|
71947
|
-
"gif",
|
|
71948
|
-
"qx"
|
|
71949
|
-
],
|
|
71950
|
-
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
71951
|
-
16,
|
|
71952
|
-
5,
|
|
71953
|
-
"gif",
|
|
71954
|
-
"qx"
|
|
71955
|
-
],
|
|
71956
|
-
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
71957
|
-
16,
|
|
71958
|
-
5,
|
|
71959
|
-
"gif",
|
|
71960
|
-
"qx"
|
|
71961
|
-
],
|
|
71962
72033
|
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
71963
72034
|
1,
|
|
71964
72035
|
8,
|
|
@@ -72031,54 +72102,6 @@ qx.$$packageData['0'] = {
|
|
|
72031
72102
|
"gif",
|
|
72032
72103
|
"qx"
|
|
72033
72104
|
],
|
|
72034
|
-
"qx/decoration/Simple/window/close-white.gif": [
|
|
72035
|
-
10,
|
|
72036
|
-
9,
|
|
72037
|
-
"gif",
|
|
72038
|
-
"qx"
|
|
72039
|
-
],
|
|
72040
|
-
"qx/decoration/Simple/window/close.gif": [
|
|
72041
|
-
10,
|
|
72042
|
-
9,
|
|
72043
|
-
"gif",
|
|
72044
|
-
"qx"
|
|
72045
|
-
],
|
|
72046
|
-
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
72047
|
-
9,
|
|
72048
|
-
9,
|
|
72049
|
-
"gif",
|
|
72050
|
-
"qx"
|
|
72051
|
-
],
|
|
72052
|
-
"qx/decoration/Simple/window/maximize.gif": [
|
|
72053
|
-
9,
|
|
72054
|
-
9,
|
|
72055
|
-
"gif",
|
|
72056
|
-
"qx"
|
|
72057
|
-
],
|
|
72058
|
-
"qx/decoration/Simple/window/minimize.gif": [
|
|
72059
|
-
9,
|
|
72060
|
-
9,
|
|
72061
|
-
"gif",
|
|
72062
|
-
"qx"
|
|
72063
|
-
],
|
|
72064
|
-
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
72065
|
-
9,
|
|
72066
|
-
9,
|
|
72067
|
-
"gif",
|
|
72068
|
-
"qx"
|
|
72069
|
-
],
|
|
72070
|
-
"qx/decoration/Simple/window/restore-white.gif": [
|
|
72071
|
-
8,
|
|
72072
|
-
9,
|
|
72073
|
-
"gif",
|
|
72074
|
-
"qx"
|
|
72075
|
-
],
|
|
72076
|
-
"qx/decoration/Simple/window/restore.gif": [
|
|
72077
|
-
8,
|
|
72078
|
-
9,
|
|
72079
|
-
"gif",
|
|
72080
|
-
"qx"
|
|
72081
|
-
],
|
|
72082
72105
|
"qx/decoration/Simple/treevirtual/cross.gif": [
|
|
72083
72106
|
19,
|
|
72084
72107
|
16,
|
|
@@ -72097,25 +72120,25 @@ qx.$$packageData['0'] = {
|
|
|
72097
72120
|
"gif",
|
|
72098
72121
|
"qx"
|
|
72099
72122
|
],
|
|
72100
|
-
"qx/decoration/Simple/treevirtual/
|
|
72123
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
72101
72124
|
19,
|
|
72102
72125
|
16,
|
|
72103
72126
|
"gif",
|
|
72104
72127
|
"qx"
|
|
72105
72128
|
],
|
|
72106
|
-
"qx/decoration/Simple/treevirtual/
|
|
72129
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
72107
72130
|
19,
|
|
72108
72131
|
16,
|
|
72109
72132
|
"gif",
|
|
72110
72133
|
"qx"
|
|
72111
72134
|
],
|
|
72112
|
-
"qx/decoration/Simple/treevirtual/
|
|
72135
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
72113
72136
|
19,
|
|
72114
72137
|
16,
|
|
72115
72138
|
"gif",
|
|
72116
72139
|
"qx"
|
|
72117
72140
|
],
|
|
72118
|
-
"qx/decoration/Simple/treevirtual/
|
|
72141
|
+
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
72119
72142
|
19,
|
|
72120
72143
|
16,
|
|
72121
72144
|
"gif",
|
|
@@ -72151,6 +72174,54 @@ qx.$$packageData['0'] = {
|
|
|
72151
72174
|
"gif",
|
|
72152
72175
|
"qx"
|
|
72153
72176
|
],
|
|
72177
|
+
"qx/decoration/Simple/window/close-white.gif": [
|
|
72178
|
+
10,
|
|
72179
|
+
9,
|
|
72180
|
+
"gif",
|
|
72181
|
+
"qx"
|
|
72182
|
+
],
|
|
72183
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
72184
|
+
10,
|
|
72185
|
+
9,
|
|
72186
|
+
"gif",
|
|
72187
|
+
"qx"
|
|
72188
|
+
],
|
|
72189
|
+
"qx/decoration/Simple/window/maximize.gif": [
|
|
72190
|
+
9,
|
|
72191
|
+
9,
|
|
72192
|
+
"gif",
|
|
72193
|
+
"qx"
|
|
72194
|
+
],
|
|
72195
|
+
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
72196
|
+
9,
|
|
72197
|
+
9,
|
|
72198
|
+
"gif",
|
|
72199
|
+
"qx"
|
|
72200
|
+
],
|
|
72201
|
+
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
72202
|
+
9,
|
|
72203
|
+
9,
|
|
72204
|
+
"gif",
|
|
72205
|
+
"qx"
|
|
72206
|
+
],
|
|
72207
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
72208
|
+
9,
|
|
72209
|
+
9,
|
|
72210
|
+
"gif",
|
|
72211
|
+
"qx"
|
|
72212
|
+
],
|
|
72213
|
+
"qx/decoration/Simple/window/restore-white.gif": [
|
|
72214
|
+
8,
|
|
72215
|
+
9,
|
|
72216
|
+
"gif",
|
|
72217
|
+
"qx"
|
|
72218
|
+
],
|
|
72219
|
+
"qx/decoration/Simple/window/restore.gif": [
|
|
72220
|
+
8,
|
|
72221
|
+
9,
|
|
72222
|
+
"gif",
|
|
72223
|
+
"qx"
|
|
72224
|
+
],
|
|
72154
72225
|
"qx/static/blank.png": [
|
|
72155
72226
|
1,
|
|
72156
72227
|
1,
|
|
@@ -72181,13 +72252,13 @@ qx.$$packageData['0'] = {
|
|
|
72181
72252
|
"",
|
|
72182
72253
|
"qx"
|
|
72183
72254
|
],
|
|
72184
|
-
"qx/tool/schema/
|
|
72255
|
+
"qx/tool/schema/Manifest-1-0-0.json": [
|
|
72185
72256
|
null,
|
|
72186
72257
|
null,
|
|
72187
72258
|
"json",
|
|
72188
72259
|
"qx"
|
|
72189
72260
|
],
|
|
72190
|
-
"qx/tool/schema/
|
|
72261
|
+
"qx/tool/schema/compile-1-0-0.json": [
|
|
72191
72262
|
null,
|
|
72192
72263
|
null,
|
|
72193
72264
|
"json",
|
|
@@ -72211,6 +72282,18 @@ qx.$$packageData['0'] = {
|
|
|
72211
72282
|
"",
|
|
72212
72283
|
"qx"
|
|
72213
72284
|
],
|
|
72285
|
+
"qx/tool/cli/templates/template_vars.js": [
|
|
72286
|
+
null,
|
|
72287
|
+
null,
|
|
72288
|
+
"js",
|
|
72289
|
+
"qx"
|
|
72290
|
+
],
|
|
72291
|
+
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt": [
|
|
72292
|
+
null,
|
|
72293
|
+
null,
|
|
72294
|
+
"txt",
|
|
72295
|
+
"qx"
|
|
72296
|
+
],
|
|
72214
72297
|
"qx/tool/website/build/404.html": [
|
|
72215
72298
|
null,
|
|
72216
72299
|
null,
|
|
@@ -72241,6 +72324,12 @@ qx.$$packageData['0'] = {
|
|
|
72241
72324
|
"dot",
|
|
72242
72325
|
"qx"
|
|
72243
72326
|
],
|
|
72327
|
+
"qx/tool/website/sass/qooxdoo.scss": [
|
|
72328
|
+
null,
|
|
72329
|
+
null,
|
|
72330
|
+
"scss",
|
|
72331
|
+
"qx"
|
|
72332
|
+
],
|
|
72244
72333
|
"qx/tool/website/partials/footer.html": [
|
|
72245
72334
|
null,
|
|
72246
72335
|
null,
|
|
@@ -72301,48 +72390,72 @@ qx.$$packageData['0'] = {
|
|
|
72301
72390
|
"html",
|
|
72302
72391
|
"qx"
|
|
72303
72392
|
],
|
|
72304
|
-
"qx/tool/
|
|
72393
|
+
"qx/tool/cli/templates/class/default.tmpl.js": [
|
|
72305
72394
|
null,
|
|
72306
72395
|
null,
|
|
72307
|
-
"
|
|
72396
|
+
"js",
|
|
72308
72397
|
"qx"
|
|
72309
72398
|
],
|
|
72310
|
-
"qx/tool/cli/templates/
|
|
72399
|
+
"qx/tool/cli/templates/class/header.tmpl.js": [
|
|
72311
72400
|
null,
|
|
72312
72401
|
null,
|
|
72313
|
-
"
|
|
72402
|
+
"js",
|
|
72314
72403
|
"qx"
|
|
72315
72404
|
],
|
|
72316
|
-
"qx/tool/cli/templates/
|
|
72405
|
+
"qx/tool/cli/templates/class/interface.tmpl.js": [
|
|
72317
72406
|
null,
|
|
72318
72407
|
null,
|
|
72319
72408
|
"js",
|
|
72320
72409
|
"qx"
|
|
72321
72410
|
],
|
|
72322
|
-
"qx/tool/
|
|
72411
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
72323
72412
|
null,
|
|
72324
72413
|
null,
|
|
72325
|
-
"
|
|
72414
|
+
"js",
|
|
72326
72415
|
"qx"
|
|
72327
72416
|
],
|
|
72328
|
-
"qx/tool/
|
|
72417
|
+
"qx/tool/cli/templates/class/singleton.tmpl.js": [
|
|
72329
72418
|
null,
|
|
72330
72419
|
null,
|
|
72331
72420
|
"js",
|
|
72332
72421
|
"qx"
|
|
72333
72422
|
],
|
|
72334
|
-
"qx/tool/
|
|
72423
|
+
"qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
|
|
72424
|
+
null,
|
|
72425
|
+
null,
|
|
72426
|
+
"js",
|
|
72427
|
+
"qx"
|
|
72428
|
+
],
|
|
72429
|
+
"qx/tool/cli/templates/loader/loader-node.tmpl.js": [
|
|
72430
|
+
null,
|
|
72431
|
+
null,
|
|
72432
|
+
"js",
|
|
72433
|
+
"qx"
|
|
72434
|
+
],
|
|
72435
|
+
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
|
|
72436
|
+
null,
|
|
72437
|
+
null,
|
|
72438
|
+
"js",
|
|
72439
|
+
"qx"
|
|
72440
|
+
],
|
|
72441
|
+
"qx/tool/website/build/assets/abel.css": [
|
|
72335
72442
|
null,
|
|
72336
72443
|
null,
|
|
72337
72444
|
"css",
|
|
72338
72445
|
"qx"
|
|
72339
72446
|
],
|
|
72340
|
-
"qx/tool/website/build/assets/
|
|
72447
|
+
"qx/tool/website/build/assets/bluebird.min.js": [
|
|
72341
72448
|
null,
|
|
72342
72449
|
null,
|
|
72343
72450
|
"js",
|
|
72344
72451
|
"qx"
|
|
72345
72452
|
],
|
|
72453
|
+
"qx/tool/website/build/assets/bootstrap.css": [
|
|
72454
|
+
null,
|
|
72455
|
+
null,
|
|
72456
|
+
"css",
|
|
72457
|
+
"qx"
|
|
72458
|
+
],
|
|
72346
72459
|
"qx/tool/website/build/assets/bootstrap.min.css": [
|
|
72347
72460
|
null,
|
|
72348
72461
|
null,
|
|
@@ -72355,7 +72468,7 @@ qx.$$packageData['0'] = {
|
|
|
72355
72468
|
"map",
|
|
72356
72469
|
"qx"
|
|
72357
72470
|
],
|
|
72358
|
-
"qx/tool/website/build/assets/
|
|
72471
|
+
"qx/tool/website/build/assets/buttons.js": [
|
|
72359
72472
|
null,
|
|
72360
72473
|
null,
|
|
72361
72474
|
"js",
|
|
@@ -72367,6 +72480,12 @@ qx.$$packageData['0'] = {
|
|
|
72367
72480
|
"png",
|
|
72368
72481
|
"qx"
|
|
72369
72482
|
],
|
|
72483
|
+
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
72484
|
+
null,
|
|
72485
|
+
null,
|
|
72486
|
+
"js",
|
|
72487
|
+
"qx"
|
|
72488
|
+
],
|
|
72370
72489
|
"qx/tool/website/build/assets/jquery.js": [
|
|
72371
72490
|
null,
|
|
72372
72491
|
null,
|
|
@@ -72403,7 +72522,7 @@ qx.$$packageData['0'] = {
|
|
|
72403
72522
|
"svg",
|
|
72404
72523
|
"qx"
|
|
72405
72524
|
],
|
|
72406
|
-
"qx/tool/website/build/diagnostics/
|
|
72525
|
+
"qx/tool/website/build/diagnostics/dependson.html": [
|
|
72407
72526
|
null,
|
|
72408
72527
|
null,
|
|
72409
72528
|
"html",
|
|
@@ -72415,7 +72534,7 @@ qx.$$packageData['0'] = {
|
|
|
72415
72534
|
"js",
|
|
72416
72535
|
"qx"
|
|
72417
72536
|
],
|
|
72418
|
-
"qx/tool/website/build/diagnostics/
|
|
72537
|
+
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72419
72538
|
null,
|
|
72420
72539
|
null,
|
|
72421
72540
|
"html",
|
|
@@ -72451,22 +72570,22 @@ qx.$$packageData['0'] = {
|
|
|
72451
72570
|
"css",
|
|
72452
72571
|
"qx"
|
|
72453
72572
|
],
|
|
72454
|
-
"qx/tool/website/src/assets/bootstrap.min.css
|
|
72573
|
+
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72455
72574
|
null,
|
|
72456
72575
|
null,
|
|
72457
|
-
"
|
|
72576
|
+
"css",
|
|
72458
72577
|
"qx"
|
|
72459
72578
|
],
|
|
72460
|
-
"qx/tool/website/src/assets/
|
|
72579
|
+
"qx/tool/website/src/assets/bootstrap.min.css.map": [
|
|
72461
72580
|
null,
|
|
72462
72581
|
null,
|
|
72463
|
-
"
|
|
72582
|
+
"map",
|
|
72464
72583
|
"qx"
|
|
72465
72584
|
],
|
|
72466
|
-
"qx/tool/website/src/assets/
|
|
72585
|
+
"qx/tool/website/src/assets/buttons.js": [
|
|
72467
72586
|
null,
|
|
72468
72587
|
null,
|
|
72469
|
-
"
|
|
72588
|
+
"js",
|
|
72470
72589
|
"qx"
|
|
72471
72590
|
],
|
|
72472
72591
|
"qx/tool/website/src/assets/favicon.png": [
|
|
@@ -72487,6 +72606,12 @@ qx.$$packageData['0'] = {
|
|
|
72487
72606
|
"js",
|
|
72488
72607
|
"qx"
|
|
72489
72608
|
],
|
|
72609
|
+
"qx/tool/website/src/assets/logo.svg": [
|
|
72610
|
+
512,
|
|
72611
|
+
145,
|
|
72612
|
+
"svg",
|
|
72613
|
+
"qx"
|
|
72614
|
+
],
|
|
72490
72615
|
"qx/tool/website/src/assets/qx-api.png": [
|
|
72491
72616
|
1144,
|
|
72492
72617
|
640,
|
|
@@ -72499,10 +72624,10 @@ qx.$$packageData['0'] = {
|
|
|
72499
72624
|
"png",
|
|
72500
72625
|
"qx"
|
|
72501
72626
|
],
|
|
72502
|
-
"qx/tool/website/src/assets/
|
|
72503
|
-
|
|
72504
|
-
|
|
72505
|
-
"
|
|
72627
|
+
"qx/tool/website/src/assets/qx-oo.png": [
|
|
72628
|
+
870,
|
|
72629
|
+
502,
|
|
72630
|
+
"png",
|
|
72506
72631
|
"qx"
|
|
72507
72632
|
],
|
|
72508
72633
|
"qx/tool/website/src/assets/qx-white.svg": [
|
|
@@ -72511,12 +72636,6 @@ qx.$$packageData['0'] = {
|
|
|
72511
72636
|
"svg",
|
|
72512
72637
|
"qx"
|
|
72513
72638
|
],
|
|
72514
|
-
"qx/tool/website/src/assets/qx-oo.png": [
|
|
72515
|
-
870,
|
|
72516
|
-
502,
|
|
72517
|
-
"png",
|
|
72518
|
-
"qx"
|
|
72519
|
-
],
|
|
72520
72639
|
"qx/tool/website/src/diagnostics/dependson.html": [
|
|
72521
72640
|
null,
|
|
72522
72641
|
null,
|
|
@@ -72547,97 +72666,49 @@ qx.$$packageData['0'] = {
|
|
|
72547
72666
|
"js",
|
|
72548
72667
|
"qx"
|
|
72549
72668
|
],
|
|
72550
|
-
"qx/tool/cli/templates/
|
|
72551
|
-
null,
|
|
72552
|
-
null,
|
|
72553
|
-
"js",
|
|
72554
|
-
"qx"
|
|
72555
|
-
],
|
|
72556
|
-
"qx/tool/cli/templates/class/header.tmpl.js": [
|
|
72557
|
-
null,
|
|
72558
|
-
null,
|
|
72559
|
-
"js",
|
|
72560
|
-
"qx"
|
|
72561
|
-
],
|
|
72562
|
-
"qx/tool/cli/templates/class/interface.tmpl.js": [
|
|
72563
|
-
null,
|
|
72564
|
-
null,
|
|
72565
|
-
"js",
|
|
72566
|
-
"qx"
|
|
72567
|
-
],
|
|
72568
|
-
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
72569
|
-
null,
|
|
72570
|
-
null,
|
|
72571
|
-
"js",
|
|
72572
|
-
"qx"
|
|
72573
|
-
],
|
|
72574
|
-
"qx/tool/cli/templates/class/singleton.tmpl.js": [
|
|
72575
|
-
null,
|
|
72576
|
-
null,
|
|
72577
|
-
"js",
|
|
72578
|
-
"qx"
|
|
72579
|
-
],
|
|
72580
|
-
"qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
|
|
72581
|
-
null,
|
|
72582
|
-
null,
|
|
72583
|
-
"js",
|
|
72584
|
-
"qx"
|
|
72585
|
-
],
|
|
72586
|
-
"qx/tool/cli/templates/loader/loader-node.tmpl.js": [
|
|
72587
|
-
null,
|
|
72588
|
-
null,
|
|
72589
|
-
"js",
|
|
72590
|
-
"qx"
|
|
72591
|
-
],
|
|
72592
|
-
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
|
|
72669
|
+
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
|
|
72593
72670
|
null,
|
|
72594
72671
|
null,
|
|
72595
|
-
"
|
|
72672
|
+
"json",
|
|
72596
72673
|
"qx"
|
|
72597
72674
|
],
|
|
72598
|
-
"qx/tool/cli/templates/skeleton/
|
|
72675
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
72599
72676
|
null,
|
|
72600
72677
|
null,
|
|
72601
72678
|
"tmpl",
|
|
72602
72679
|
"qx"
|
|
72603
72680
|
],
|
|
72604
|
-
"qx/tool/cli/templates/skeleton/
|
|
72605
|
-
null,
|
|
72606
|
-
null,
|
|
72607
|
-
"json",
|
|
72608
|
-
"qx"
|
|
72609
|
-
],
|
|
72610
|
-
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
|
|
72681
|
+
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
|
|
72611
72682
|
null,
|
|
72612
72683
|
null,
|
|
72613
72684
|
"json",
|
|
72614
72685
|
"qx"
|
|
72615
72686
|
],
|
|
72616
|
-
"qx/tool/cli/templates/skeleton/
|
|
72687
|
+
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
|
|
72617
72688
|
null,
|
|
72618
72689
|
null,
|
|
72619
72690
|
"md",
|
|
72620
72691
|
"qx"
|
|
72621
72692
|
],
|
|
72622
|
-
"qx/tool/cli/templates/skeleton/
|
|
72693
|
+
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
|
|
72623
72694
|
null,
|
|
72624
72695
|
null,
|
|
72625
72696
|
"tmpl",
|
|
72626
72697
|
"qx"
|
|
72627
72698
|
],
|
|
72628
|
-
"qx/tool/cli/templates/skeleton/
|
|
72699
|
+
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
|
|
72629
72700
|
null,
|
|
72630
72701
|
null,
|
|
72631
72702
|
"json",
|
|
72632
72703
|
"qx"
|
|
72633
72704
|
],
|
|
72634
|
-
"qx/tool/cli/templates/skeleton/
|
|
72705
|
+
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
|
|
72635
72706
|
null,
|
|
72636
72707
|
null,
|
|
72637
72708
|
"json",
|
|
72638
72709
|
"qx"
|
|
72639
72710
|
],
|
|
72640
|
-
"qx/tool/cli/templates/skeleton/
|
|
72711
|
+
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
|
|
72641
72712
|
null,
|
|
72642
72713
|
null,
|
|
72643
72714
|
"md",
|
|
@@ -72691,37 +72762,37 @@ qx.$$packageData['0'] = {
|
|
|
72691
72762
|
"txt",
|
|
72692
72763
|
"qx"
|
|
72693
72764
|
],
|
|
72694
|
-
"qx/tool/cli/templates/skeleton/
|
|
72765
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
|
|
72695
72766
|
null,
|
|
72696
72767
|
null,
|
|
72697
72768
|
"html",
|
|
72698
72769
|
"qx"
|
|
72699
72770
|
],
|
|
72700
|
-
"qx/tool/cli/templates/skeleton/
|
|
72771
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
|
|
72701
72772
|
null,
|
|
72702
72773
|
null,
|
|
72703
72774
|
"html",
|
|
72704
72775
|
"qx"
|
|
72705
72776
|
],
|
|
72706
|
-
"qx/tool/cli/templates/skeleton/
|
|
72777
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
72707
72778
|
null,
|
|
72708
72779
|
null,
|
|
72709
72780
|
"txt",
|
|
72710
72781
|
"qx"
|
|
72711
72782
|
],
|
|
72712
|
-
"qx/tool/cli/templates/skeleton/
|
|
72783
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
72713
72784
|
null,
|
|
72714
72785
|
null,
|
|
72715
72786
|
"html",
|
|
72716
72787
|
"qx"
|
|
72717
72788
|
],
|
|
72718
|
-
"qx/tool/cli/templates/skeleton/
|
|
72789
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
72719
72790
|
null,
|
|
72720
72791
|
null,
|
|
72721
72792
|
"html",
|
|
72722
72793
|
"qx"
|
|
72723
72794
|
],
|
|
72724
|
-
"qx/tool/cli/templates/skeleton/
|
|
72795
|
+
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
72725
72796
|
null,
|
|
72726
72797
|
null,
|
|
72727
72798
|
"txt",
|
|
@@ -72739,67 +72810,73 @@ qx.$$packageData['0'] = {
|
|
|
72739
72810
|
"txt",
|
|
72740
72811
|
"qx"
|
|
72741
72812
|
],
|
|
72742
|
-
"qx/tool/cli/templates/skeleton/
|
|
72813
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
72743
72814
|
null,
|
|
72744
72815
|
null,
|
|
72745
72816
|
"js",
|
|
72746
72817
|
"qx"
|
|
72747
72818
|
],
|
|
72748
|
-
"qx/tool/cli/templates/skeleton/
|
|
72819
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
|
|
72749
72820
|
null,
|
|
72750
72821
|
null,
|
|
72751
72822
|
"js",
|
|
72752
72823
|
"qx"
|
|
72753
72824
|
],
|
|
72754
|
-
"qx/tool/cli/templates/skeleton/
|
|
72825
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
|
|
72755
72826
|
180,
|
|
72756
72827
|
180,
|
|
72757
72828
|
"png",
|
|
72758
72829
|
"qx"
|
|
72759
72830
|
],
|
|
72760
|
-
"qx/tool/cli/templates/skeleton/
|
|
72831
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
|
|
72832
|
+
32,
|
|
72833
|
+
32,
|
|
72834
|
+
"png",
|
|
72835
|
+
"qx"
|
|
72836
|
+
],
|
|
72837
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
|
|
72761
72838
|
256,
|
|
72762
72839
|
256,
|
|
72763
72840
|
"png",
|
|
72764
72841
|
"qx"
|
|
72765
72842
|
],
|
|
72766
|
-
"qx/tool/cli/templates/skeleton/
|
|
72843
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
|
|
72767
72844
|
32,
|
|
72768
72845
|
32,
|
|
72769
72846
|
"png",
|
|
72770
72847
|
"qx"
|
|
72771
72848
|
],
|
|
72772
|
-
"qx/tool/cli/templates/skeleton/
|
|
72849
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
|
|
72773
72850
|
null,
|
|
72774
72851
|
null,
|
|
72775
72852
|
"js",
|
|
72776
72853
|
"qx"
|
|
72777
72854
|
],
|
|
72778
|
-
"qx/tool/cli/templates/skeleton/
|
|
72855
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
|
|
72779
72856
|
null,
|
|
72780
72857
|
null,
|
|
72781
72858
|
"js",
|
|
72782
72859
|
"qx"
|
|
72783
72860
|
],
|
|
72784
|
-
"qx/tool/cli/templates/skeleton/
|
|
72861
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
|
|
72785
72862
|
180,
|
|
72786
72863
|
180,
|
|
72787
72864
|
"png",
|
|
72788
72865
|
"qx"
|
|
72789
72866
|
],
|
|
72790
|
-
"qx/tool/cli/templates/skeleton/
|
|
72867
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
|
|
72791
72868
|
32,
|
|
72792
72869
|
32,
|
|
72793
72870
|
"png",
|
|
72794
72871
|
"qx"
|
|
72795
72872
|
],
|
|
72796
|
-
"qx/tool/cli/templates/skeleton/
|
|
72873
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
|
|
72797
72874
|
256,
|
|
72798
72875
|
256,
|
|
72799
72876
|
"png",
|
|
72800
72877
|
"qx"
|
|
72801
72878
|
],
|
|
72802
|
-
"qx/tool/cli/templates/skeleton/
|
|
72879
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
72803
72880
|
32,
|
|
72804
72881
|
32,
|
|
72805
72882
|
"png",
|
|
@@ -72817,10 +72894,10 @@ qx.$$packageData['0'] = {
|
|
|
72817
72894
|
"js",
|
|
72818
72895
|
"qx"
|
|
72819
72896
|
],
|
|
72820
|
-
"qx/tool/cli/templates/skeleton/
|
|
72821
|
-
|
|
72822
|
-
|
|
72823
|
-
"
|
|
72897
|
+
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
|
|
72898
|
+
null,
|
|
72899
|
+
null,
|
|
72900
|
+
"tmpl",
|
|
72824
72901
|
"qx"
|
|
72825
72902
|
],
|
|
72826
72903
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
@@ -72835,97 +72912,91 @@ qx.$$packageData['0'] = {
|
|
|
72835
72912
|
"js",
|
|
72836
72913
|
"qx"
|
|
72837
72914
|
],
|
|
72838
|
-
"qx/tool/cli/templates/skeleton/
|
|
72839
|
-
null,
|
|
72840
|
-
null,
|
|
72841
|
-
"tmpl",
|
|
72842
|
-
"qx"
|
|
72843
|
-
],
|
|
72844
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
72915
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
72845
72916
|
null,
|
|
72846
72917
|
null,
|
|
72847
72918
|
"js",
|
|
72848
72919
|
"qx"
|
|
72849
72920
|
],
|
|
72850
|
-
"qx/tool/cli/templates/skeleton/
|
|
72921
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
|
|
72851
72922
|
null,
|
|
72852
72923
|
null,
|
|
72853
72924
|
"js",
|
|
72854
72925
|
"qx"
|
|
72855
72926
|
],
|
|
72856
|
-
"qx/tool/cli/templates/skeleton/
|
|
72927
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
|
|
72857
72928
|
null,
|
|
72858
72929
|
null,
|
|
72859
72930
|
"js",
|
|
72860
72931
|
"qx"
|
|
72861
72932
|
],
|
|
72862
|
-
"qx/tool/cli/templates/skeleton/
|
|
72933
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
|
|
72863
72934
|
null,
|
|
72864
72935
|
null,
|
|
72865
|
-
"
|
|
72936
|
+
"js",
|
|
72866
72937
|
"qx"
|
|
72867
72938
|
],
|
|
72868
|
-
"qx/tool/cli/templates/skeleton/
|
|
72939
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
|
|
72869
72940
|
null,
|
|
72870
72941
|
null,
|
|
72871
|
-
"
|
|
72942
|
+
"js",
|
|
72872
72943
|
"qx"
|
|
72873
72944
|
],
|
|
72874
|
-
"qx/tool/cli/templates/skeleton/
|
|
72945
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
|
|
72875
72946
|
null,
|
|
72876
72947
|
null,
|
|
72877
|
-
"
|
|
72948
|
+
"js",
|
|
72878
72949
|
"qx"
|
|
72879
72950
|
],
|
|
72880
|
-
"qx/tool/cli/templates/skeleton/
|
|
72951
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
72881
72952
|
null,
|
|
72882
72953
|
null,
|
|
72883
72954
|
"js",
|
|
72884
72955
|
"qx"
|
|
72885
72956
|
],
|
|
72886
|
-
"qx/tool/cli/templates/skeleton/
|
|
72957
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
72887
72958
|
null,
|
|
72888
72959
|
null,
|
|
72889
72960
|
"js",
|
|
72890
72961
|
"qx"
|
|
72891
72962
|
],
|
|
72892
|
-
"qx/tool/cli/templates/skeleton/
|
|
72963
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
72893
72964
|
null,
|
|
72894
72965
|
null,
|
|
72895
|
-
"
|
|
72966
|
+
"scss",
|
|
72896
72967
|
"qx"
|
|
72897
72968
|
],
|
|
72898
|
-
"qx/tool/cli/templates/skeleton/
|
|
72969
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
72899
72970
|
null,
|
|
72900
72971
|
null,
|
|
72901
72972
|
"js",
|
|
72902
72973
|
"qx"
|
|
72903
72974
|
],
|
|
72904
|
-
"qx/tool/cli/templates/skeleton/
|
|
72975
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
72905
72976
|
null,
|
|
72906
72977
|
null,
|
|
72907
|
-
"
|
|
72978
|
+
"scss",
|
|
72908
72979
|
"qx"
|
|
72909
72980
|
],
|
|
72910
|
-
"qx/tool/cli/templates/skeleton/
|
|
72981
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
|
|
72911
72982
|
null,
|
|
72912
72983
|
null,
|
|
72913
|
-
"
|
|
72984
|
+
"tmpl",
|
|
72914
72985
|
"qx"
|
|
72915
72986
|
],
|
|
72916
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
72987
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
72917
72988
|
null,
|
|
72918
72989
|
null,
|
|
72919
72990
|
"js",
|
|
72920
72991
|
"qx"
|
|
72921
72992
|
],
|
|
72922
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
72993
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
|
|
72923
72994
|
null,
|
|
72924
72995
|
null,
|
|
72925
72996
|
"js",
|
|
72926
72997
|
"qx"
|
|
72927
72998
|
],
|
|
72928
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/
|
|
72999
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
72929
73000
|
null,
|
|
72930
73001
|
null,
|
|
72931
73002
|
"js",
|
|
@@ -72937,19 +73008,19 @@ qx.$$packageData['0'] = {
|
|
|
72937
73008
|
"js",
|
|
72938
73009
|
"qx"
|
|
72939
73010
|
],
|
|
72940
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73011
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
|
|
72941
73012
|
null,
|
|
72942
73013
|
null,
|
|
72943
73014
|
"js",
|
|
72944
73015
|
"qx"
|
|
72945
73016
|
],
|
|
72946
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73017
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
|
|
72947
73018
|
null,
|
|
72948
73019
|
null,
|
|
72949
73020
|
"js",
|
|
72950
73021
|
"qx"
|
|
72951
73022
|
],
|
|
72952
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/
|
|
73023
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
|
|
72953
73024
|
null,
|
|
72954
73025
|
null,
|
|
72955
73026
|
"js",
|