@qooxdoo/framework 7.1.1 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Manifest.json +1 -1
- package/lib/compiler/compile-info.json +83 -83
- package/lib/compiler/index.js +279 -274
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/theme/custom/css/custom.css.map +1 -1
- package/npm-shrinkwrap.json +235 -11095
- package/package.json +6 -6
- 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/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/tangible/Appearance.js +22 -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 +3 -3
- package/source/class/qx/tool/cli/commands/Lint.js +8 -5
- package/source/class/qx/tool/compiler/ClassFile.js +22 -12
- package/source/class/qx/tool/compiler/Es6ify.js +7 -3
- package/source/class/qx/tool/compiler/TargetError.js +3 -4
- package/source/class/qx/tool/compiler/app/Application.js +3 -3
- 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 +2 -1
- package/source/class/qx/tool/compiler/targets/meta/AbstractJavascriptMeta.js +1 -1
- package/source/class/qx/tool/compiler/targets/meta/Browserify.js +77 -83
- package/source/class/qx/tool/compiler/targets/meta/Uglify.js +11 -3
- 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/lib/compiler/index.js
CHANGED
|
@@ -96,7 +96,7 @@ if (typeof global !== "undefined") {
|
|
|
96
96
|
"qx.application": "qx.tool.cli.Application",
|
|
97
97
|
"qx.revision": "",
|
|
98
98
|
"qx.theme": "qx.theme.Simple",
|
|
99
|
-
"qx.version": "7.
|
|
99
|
+
"qx.version": "7.2.0",
|
|
100
100
|
"qx.compiler.targetType": "source",
|
|
101
101
|
"qx.compiler.outputDir": "compiled/node/build/",
|
|
102
102
|
"true": true,
|
|
@@ -128,7 +128,7 @@ if (typeof global !== "undefined") {
|
|
|
128
128
|
"qx.promise.warnings": true,
|
|
129
129
|
"qx.promise.longStackTraces": true,
|
|
130
130
|
"qx.compiler": true,
|
|
131
|
-
"qx.compiler.version": "7.
|
|
131
|
+
"qx.compiler.version": "7.2.0",
|
|
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.
|
|
36441
|
+
return "7.2.0";
|
|
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: {
|
|
@@ -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) {
|
|
@@ -54426,7 +54427,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
54426
54427
|
|
|
54427
54428
|
const path = require("upath");
|
|
54428
54429
|
|
|
54429
|
-
const sourceMap = require("source-map");
|
|
54430
|
+
const sourceMap = require("source-map-js");
|
|
54430
54431
|
/**
|
|
54431
54432
|
* An AbstractJavascriptMeta provides an abstraction of some source code, and might be
|
|
54432
54433
|
* comprised of a number of input files which are merged together as required.
|
|
@@ -55991,12 +55992,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
55991
55992
|
lookupListIndexes.forEach(index => {
|
|
55992
55993
|
let subTable = lookupList[index].subTables[0];
|
|
55993
55994
|
let leadingCharacters = [];
|
|
55994
|
-
|
|
55995
|
-
|
|
55996
|
-
|
|
55997
|
-
|
|
55998
|
-
|
|
55999
|
-
|
|
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
|
+
|
|
56000
56005
|
let ligatureSets = subTable.ligatureSets.toArray();
|
|
56001
56006
|
ligatureSets.forEach((ligatureSet, ligatureSetIndex) => {
|
|
56002
56007
|
let leadingCharacter = leadingCharacters[ligatureSetIndex];
|
|
@@ -63647,9 +63652,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
63647
63652
|
|
|
63648
63653
|
const metalsmith = require("metalsmith");
|
|
63649
63654
|
|
|
63650
|
-
const layouts = require("metalsmith
|
|
63655
|
+
const layouts = require("@metalsmith/layouts");
|
|
63651
63656
|
|
|
63652
|
-
const markdown = require("metalsmith
|
|
63657
|
+
const markdown = require("@metalsmith/markdown"); //const filenames = require("metalsmith-filenames");
|
|
63653
63658
|
//var permalinks = require("metalsmith-permalinks");
|
|
63654
63659
|
|
|
63655
63660
|
/**
|
|
@@ -65752,7 +65757,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
65752
65757
|
|
|
65753
65758
|
const crypto = require("crypto");
|
|
65754
65759
|
|
|
65755
|
-
const sourceMap = require("source-map");
|
|
65760
|
+
const sourceMap = require("source-map-js");
|
|
65756
65761
|
/**
|
|
65757
65762
|
* Copies multiple javascript source files into a single destination, preserving (merging)
|
|
65758
65763
|
* source maps as it goes.
|
|
@@ -71599,7 +71604,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
|
|
|
71599
71604
|
})();
|
|
71600
71605
|
qx.$$packageData['0'] = {
|
|
71601
71606
|
"locales": {
|
|
71602
|
-
"
|
|
71607
|
+
"en": {
|
|
71603
71608
|
"alternateQuotationEnd": "’",
|
|
71604
71609
|
"alternateQuotationStart": "‘",
|
|
71605
71610
|
"quotationEnd": "”",
|
|
@@ -71727,7 +71732,7 @@ qx.$$packageData['0'] = {
|
|
|
71727
71732
|
"time zone"
|
|
71728
71733
|
]
|
|
71729
71734
|
},
|
|
71730
|
-
"
|
|
71735
|
+
"C": {
|
|
71731
71736
|
"alternateQuotationEnd": "’",
|
|
71732
71737
|
"alternateQuotationStart": "‘",
|
|
71733
71738
|
"quotationEnd": "”",
|
|
@@ -71869,14 +71874,8 @@ qx.$$packageData['0'] = {
|
|
|
71869
71874
|
"gif",
|
|
71870
71875
|
"qx"
|
|
71871
71876
|
],
|
|
71872
|
-
"qx/decoration/Simple/arrows/
|
|
71873
|
-
7,
|
|
71877
|
+
"qx/decoration/Simple/arrows/left-invert.gif": [
|
|
71874
71878
|
4,
|
|
71875
|
-
"gif",
|
|
71876
|
-
"qx"
|
|
71877
|
-
],
|
|
71878
|
-
"qx/decoration/Simple/arrows/forward.gif": [
|
|
71879
|
-
8,
|
|
71880
71879
|
7,
|
|
71881
71880
|
"gif",
|
|
71882
71881
|
"qx"
|
|
@@ -71887,19 +71886,13 @@ qx.$$packageData['0'] = {
|
|
|
71887
71886
|
"gif",
|
|
71888
71887
|
"qx"
|
|
71889
71888
|
],
|
|
71890
|
-
"qx/decoration/Simple/arrows/
|
|
71891
|
-
|
|
71892
|
-
7,
|
|
71893
|
-
"gif",
|
|
71894
|
-
"qx"
|
|
71895
|
-
],
|
|
71896
|
-
"qx/decoration/Simple/arrows/right.gif": [
|
|
71897
|
-
4,
|
|
71889
|
+
"qx/decoration/Simple/arrows/forward.gif": [
|
|
71890
|
+
8,
|
|
71898
71891
|
7,
|
|
71899
71892
|
"gif",
|
|
71900
71893
|
"qx"
|
|
71901
71894
|
],
|
|
71902
|
-
"qx/decoration/Simple/arrows/
|
|
71895
|
+
"qx/decoration/Simple/arrows/down.gif": [
|
|
71903
71896
|
7,
|
|
71904
71897
|
4,
|
|
71905
71898
|
"gif",
|
|
@@ -71929,6 +71922,18 @@ qx.$$packageData['0'] = {
|
|
|
71929
71922
|
"gif",
|
|
71930
71923
|
"qx"
|
|
71931
71924
|
],
|
|
71925
|
+
"qx/decoration/Simple/arrows/up-invert.gif": [
|
|
71926
|
+
7,
|
|
71927
|
+
4,
|
|
71928
|
+
"gif",
|
|
71929
|
+
"qx"
|
|
71930
|
+
],
|
|
71931
|
+
"qx/decoration/Simple/arrows/right.gif": [
|
|
71932
|
+
4,
|
|
71933
|
+
7,
|
|
71934
|
+
"gif",
|
|
71935
|
+
"qx"
|
|
71936
|
+
],
|
|
71932
71937
|
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
71933
71938
|
19,
|
|
71934
71939
|
256,
|
|
@@ -72001,19 +72006,55 @@ qx.$$packageData['0'] = {
|
|
|
72001
72006
|
"gif",
|
|
72002
72007
|
"qx"
|
|
72003
72008
|
],
|
|
72004
|
-
"qx/decoration/Simple/
|
|
72005
|
-
|
|
72006
|
-
|
|
72009
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
72010
|
+
16,
|
|
72011
|
+
5,
|
|
72012
|
+
"gif",
|
|
72013
|
+
"qx"
|
|
72014
|
+
],
|
|
72015
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
72016
|
+
16,
|
|
72017
|
+
7,
|
|
72018
|
+
"gif",
|
|
72019
|
+
"qx"
|
|
72020
|
+
],
|
|
72021
|
+
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
72022
|
+
16,
|
|
72023
|
+
7,
|
|
72024
|
+
"gif",
|
|
72025
|
+
"qx"
|
|
72026
|
+
],
|
|
72027
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
72028
|
+
16,
|
|
72029
|
+
5,
|
|
72030
|
+
"gif",
|
|
72031
|
+
"qx"
|
|
72032
|
+
],
|
|
72033
|
+
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
72034
|
+
1,
|
|
72035
|
+
8,
|
|
72007
72036
|
"png",
|
|
72008
72037
|
"qx"
|
|
72009
72038
|
],
|
|
72010
|
-
"qx/decoration/Simple/
|
|
72039
|
+
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
72040
|
+
8,
|
|
72041
|
+
1,
|
|
72042
|
+
"png",
|
|
72043
|
+
"qx"
|
|
72044
|
+
],
|
|
72045
|
+
"qx/decoration/Simple/tabview/close.gif": [
|
|
72046
|
+
10,
|
|
72047
|
+
9,
|
|
72048
|
+
"gif",
|
|
72049
|
+
"qx"
|
|
72050
|
+
],
|
|
72051
|
+
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
72011
72052
|
10,
|
|
72012
72053
|
10,
|
|
72013
72054
|
"png",
|
|
72014
72055
|
"qx"
|
|
72015
72056
|
],
|
|
72016
|
-
"qx/decoration/Simple/table/
|
|
72057
|
+
"qx/decoration/Simple/table/ascending.png": [
|
|
72017
72058
|
10,
|
|
72018
72059
|
10,
|
|
72019
72060
|
"png",
|
|
@@ -72025,9 +72066,9 @@ qx.$$packageData['0'] = {
|
|
|
72025
72066
|
"png",
|
|
72026
72067
|
"qx"
|
|
72027
72068
|
],
|
|
72028
|
-
"qx/decoration/Simple/table/
|
|
72029
|
-
|
|
72030
|
-
|
|
72069
|
+
"qx/decoration/Simple/table/descending-invert.png": [
|
|
72070
|
+
10,
|
|
72071
|
+
10,
|
|
72031
72072
|
"png",
|
|
72032
72073
|
"qx"
|
|
72033
72074
|
],
|
|
@@ -72043,15 +72084,9 @@ qx.$$packageData['0'] = {
|
|
|
72043
72084
|
"png",
|
|
72044
72085
|
"qx"
|
|
72045
72086
|
],
|
|
72046
|
-
"qx/decoration/Simple/
|
|
72047
|
-
|
|
72048
|
-
|
|
72049
|
-
"png",
|
|
72050
|
-
"qx"
|
|
72051
|
-
],
|
|
72052
|
-
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
72053
|
-
8,
|
|
72054
|
-
1,
|
|
72087
|
+
"qx/decoration/Simple/table/boolean-true.png": [
|
|
72088
|
+
11,
|
|
72089
|
+
11,
|
|
72055
72090
|
"png",
|
|
72056
72091
|
"qx"
|
|
72057
72092
|
],
|
|
@@ -72067,7 +72102,7 @@ qx.$$packageData['0'] = {
|
|
|
72067
72102
|
"gif",
|
|
72068
72103
|
"qx"
|
|
72069
72104
|
],
|
|
72070
|
-
"qx/decoration/Simple/
|
|
72105
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
72071
72106
|
10,
|
|
72072
72107
|
9,
|
|
72073
72108
|
"gif",
|
|
@@ -72079,12 +72114,6 @@ qx.$$packageData['0'] = {
|
|
|
72079
72114
|
"gif",
|
|
72080
72115
|
"qx"
|
|
72081
72116
|
],
|
|
72082
|
-
"qx/decoration/Simple/window/close.gif": [
|
|
72083
|
-
10,
|
|
72084
|
-
9,
|
|
72085
|
-
"gif",
|
|
72086
|
-
"qx"
|
|
72087
|
-
],
|
|
72088
72117
|
"qx/decoration/Simple/window/maximize-white.gif": [
|
|
72089
72118
|
9,
|
|
72090
72119
|
9,
|
|
@@ -72103,14 +72132,14 @@ qx.$$packageData['0'] = {
|
|
|
72103
72132
|
"gif",
|
|
72104
72133
|
"qx"
|
|
72105
72134
|
],
|
|
72106
|
-
"qx/decoration/Simple/window/
|
|
72107
|
-
|
|
72135
|
+
"qx/decoration/Simple/window/restore-white.gif": [
|
|
72136
|
+
8,
|
|
72108
72137
|
9,
|
|
72109
72138
|
"gif",
|
|
72110
72139
|
"qx"
|
|
72111
72140
|
],
|
|
72112
|
-
"qx/decoration/Simple/window/
|
|
72113
|
-
|
|
72141
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
72142
|
+
9,
|
|
72114
72143
|
9,
|
|
72115
72144
|
"gif",
|
|
72116
72145
|
"qx"
|
|
@@ -72133,37 +72162,25 @@ qx.$$packageData['0'] = {
|
|
|
72133
72162
|
"gif",
|
|
72134
72163
|
"qx"
|
|
72135
72164
|
],
|
|
72136
|
-
"qx/decoration/Simple/treevirtual/cross_plus.gif": [
|
|
72137
|
-
19,
|
|
72138
|
-
16,
|
|
72139
|
-
"gif",
|
|
72140
|
-
"qx"
|
|
72141
|
-
],
|
|
72142
|
-
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
72143
|
-
19,
|
|
72144
|
-
16,
|
|
72145
|
-
"gif",
|
|
72146
|
-
"qx"
|
|
72147
|
-
],
|
|
72148
72165
|
"qx/decoration/Simple/treevirtual/end.gif": [
|
|
72149
72166
|
19,
|
|
72150
72167
|
16,
|
|
72151
72168
|
"gif",
|
|
72152
72169
|
"qx"
|
|
72153
72170
|
],
|
|
72154
|
-
"qx/decoration/Simple/treevirtual/
|
|
72171
|
+
"qx/decoration/Simple/treevirtual/cross_plus.gif": [
|
|
72155
72172
|
19,
|
|
72156
72173
|
16,
|
|
72157
72174
|
"gif",
|
|
72158
72175
|
"qx"
|
|
72159
72176
|
],
|
|
72160
|
-
"qx/decoration/Simple/treevirtual/
|
|
72177
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif": [
|
|
72161
72178
|
19,
|
|
72162
72179
|
16,
|
|
72163
72180
|
"gif",
|
|
72164
72181
|
"qx"
|
|
72165
72182
|
],
|
|
72166
|
-
"qx/decoration/Simple/treevirtual/
|
|
72183
|
+
"qx/decoration/Simple/treevirtual/end_plus.gif": [
|
|
72167
72184
|
19,
|
|
72168
72185
|
16,
|
|
72169
72186
|
"gif",
|
|
@@ -72181,39 +72198,27 @@ qx.$$packageData['0'] = {
|
|
|
72181
72198
|
"gif",
|
|
72182
72199
|
"qx"
|
|
72183
72200
|
],
|
|
72184
|
-
"qx/decoration/Simple/treevirtual/
|
|
72201
|
+
"qx/decoration/Simple/treevirtual/line.gif": [
|
|
72185
72202
|
19,
|
|
72186
72203
|
16,
|
|
72187
72204
|
"gif",
|
|
72188
72205
|
"qx"
|
|
72189
72206
|
],
|
|
72190
|
-
"qx/decoration/Simple/treevirtual/
|
|
72207
|
+
"qx/decoration/Simple/treevirtual/only_minus.gif": [
|
|
72191
72208
|
19,
|
|
72192
72209
|
16,
|
|
72193
72210
|
"gif",
|
|
72194
72211
|
"qx"
|
|
72195
72212
|
],
|
|
72196
|
-
"qx/decoration/Simple/
|
|
72197
|
-
|
|
72198
|
-
7,
|
|
72199
|
-
"gif",
|
|
72200
|
-
"qx"
|
|
72201
|
-
],
|
|
72202
|
-
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
72203
|
-
16,
|
|
72204
|
-
7,
|
|
72205
|
-
"gif",
|
|
72206
|
-
"qx"
|
|
72207
|
-
],
|
|
72208
|
-
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
72213
|
+
"qx/decoration/Simple/treevirtual/start_plus.gif": [
|
|
72214
|
+
19,
|
|
72209
72215
|
16,
|
|
72210
|
-
5,
|
|
72211
72216
|
"gif",
|
|
72212
72217
|
"qx"
|
|
72213
72218
|
],
|
|
72214
|
-
"qx/decoration/Simple/
|
|
72219
|
+
"qx/decoration/Simple/treevirtual/start_minus.gif": [
|
|
72220
|
+
19,
|
|
72215
72221
|
16,
|
|
72216
|
-
5,
|
|
72217
72222
|
"gif",
|
|
72218
72223
|
"qx"
|
|
72219
72224
|
],
|
|
@@ -72247,10 +72252,10 @@ qx.$$packageData['0'] = {
|
|
|
72247
72252
|
"",
|
|
72248
72253
|
"qx"
|
|
72249
72254
|
],
|
|
72250
|
-
"qx/tool/
|
|
72255
|
+
"qx/tool/website/.gitignore": [
|
|
72251
72256
|
null,
|
|
72252
72257
|
null,
|
|
72253
|
-
"
|
|
72258
|
+
"",
|
|
72254
72259
|
"qx"
|
|
72255
72260
|
],
|
|
72256
72261
|
"qx/tool/schema/compile-1-0-0.json": [
|
|
@@ -72259,22 +72264,22 @@ qx.$$packageData['0'] = {
|
|
|
72259
72264
|
"json",
|
|
72260
72265
|
"qx"
|
|
72261
72266
|
],
|
|
72262
|
-
"qx/tool/schema/Manifest-
|
|
72267
|
+
"qx/tool/schema/Manifest-1-0-0.json": [
|
|
72263
72268
|
null,
|
|
72264
72269
|
null,
|
|
72265
72270
|
"json",
|
|
72266
72271
|
"qx"
|
|
72267
72272
|
],
|
|
72268
|
-
"qx/tool/schema/
|
|
72273
|
+
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
72269
72274
|
null,
|
|
72270
72275
|
null,
|
|
72271
72276
|
"json",
|
|
72272
72277
|
"qx"
|
|
72273
72278
|
],
|
|
72274
|
-
"qx/tool/
|
|
72279
|
+
"qx/tool/schema/qooxdoo-1-0-0.json": [
|
|
72275
72280
|
null,
|
|
72276
72281
|
null,
|
|
72277
|
-
"",
|
|
72282
|
+
"json",
|
|
72278
72283
|
"qx"
|
|
72279
72284
|
],
|
|
72280
72285
|
"qx/tool/cli/templates/template_vars.js": [
|
|
@@ -72289,10 +72294,10 @@ qx.$$packageData['0'] = {
|
|
|
72289
72294
|
"txt",
|
|
72290
72295
|
"qx"
|
|
72291
72296
|
],
|
|
72292
|
-
"qx/tool/website/
|
|
72297
|
+
"qx/tool/website/sass/qooxdoo.scss": [
|
|
72293
72298
|
null,
|
|
72294
72299
|
null,
|
|
72295
|
-
"
|
|
72300
|
+
"scss",
|
|
72296
72301
|
"qx"
|
|
72297
72302
|
],
|
|
72298
72303
|
"qx/tool/website/build/404.html": [
|
|
@@ -72307,82 +72312,82 @@ qx.$$packageData['0'] = {
|
|
|
72307
72312
|
"html",
|
|
72308
72313
|
"qx"
|
|
72309
72314
|
],
|
|
72315
|
+
"qx/tool/website/build/index.html": [
|
|
72316
|
+
null,
|
|
72317
|
+
null,
|
|
72318
|
+
"html",
|
|
72319
|
+
"qx"
|
|
72320
|
+
],
|
|
72310
72321
|
"qx/tool/website/build/qooxdoo.css": [
|
|
72311
72322
|
null,
|
|
72312
72323
|
null,
|
|
72313
72324
|
"css",
|
|
72314
72325
|
"qx"
|
|
72315
72326
|
],
|
|
72316
|
-
"qx/tool/website/
|
|
72327
|
+
"qx/tool/website/src/404.html": [
|
|
72317
72328
|
null,
|
|
72318
72329
|
null,
|
|
72319
72330
|
"html",
|
|
72320
72331
|
"qx"
|
|
72321
72332
|
],
|
|
72322
|
-
"qx/tool/website/
|
|
72333
|
+
"qx/tool/website/src/about.md": [
|
|
72323
72334
|
null,
|
|
72324
72335
|
null,
|
|
72325
|
-
"
|
|
72336
|
+
"md",
|
|
72326
72337
|
"qx"
|
|
72327
72338
|
],
|
|
72328
|
-
"qx/tool/website/
|
|
72339
|
+
"qx/tool/website/src/index.html": [
|
|
72329
72340
|
null,
|
|
72330
72341
|
null,
|
|
72331
72342
|
"html",
|
|
72332
72343
|
"qx"
|
|
72333
72344
|
],
|
|
72334
|
-
"qx/tool/website/
|
|
72345
|
+
"qx/tool/website/layouts/default.dot": [
|
|
72335
72346
|
null,
|
|
72336
72347
|
null,
|
|
72337
|
-
"
|
|
72348
|
+
"dot",
|
|
72338
72349
|
"qx"
|
|
72339
72350
|
],
|
|
72340
|
-
"qx/tool/website/partials/
|
|
72351
|
+
"qx/tool/website/partials/footer.html": [
|
|
72341
72352
|
null,
|
|
72342
72353
|
null,
|
|
72343
72354
|
"html",
|
|
72344
72355
|
"qx"
|
|
72345
72356
|
],
|
|
72346
|
-
"qx/tool/website/partials/
|
|
72347
|
-
|
|
72348
|
-
|
|
72349
|
-
"
|
|
72357
|
+
"qx/tool/website/partials/head.html": [
|
|
72358
|
+
null,
|
|
72359
|
+
null,
|
|
72360
|
+
"html",
|
|
72350
72361
|
"qx"
|
|
72351
72362
|
],
|
|
72352
|
-
"qx/tool/website/partials/
|
|
72363
|
+
"qx/tool/website/partials/header.html": [
|
|
72353
72364
|
null,
|
|
72354
72365
|
null,
|
|
72355
72366
|
"html",
|
|
72356
72367
|
"qx"
|
|
72357
72368
|
],
|
|
72358
|
-
"qx/tool/website/partials/icon-
|
|
72369
|
+
"qx/tool/website/partials/icon-github.html": [
|
|
72359
72370
|
null,
|
|
72360
72371
|
null,
|
|
72361
72372
|
"html",
|
|
72362
72373
|
"qx"
|
|
72363
72374
|
],
|
|
72364
|
-
"qx/tool/website/partials/icon-
|
|
72375
|
+
"qx/tool/website/partials/icon-github.svg": [
|
|
72365
72376
|
16,
|
|
72366
72377
|
16,
|
|
72367
72378
|
"svg",
|
|
72368
72379
|
"qx"
|
|
72369
72380
|
],
|
|
72370
|
-
"qx/tool/website/
|
|
72381
|
+
"qx/tool/website/partials/icon-twitter.html": [
|
|
72371
72382
|
null,
|
|
72372
72383
|
null,
|
|
72373
72384
|
"html",
|
|
72374
72385
|
"qx"
|
|
72375
72386
|
],
|
|
72376
|
-
"qx/tool/website/
|
|
72377
|
-
|
|
72378
|
-
|
|
72379
|
-
"
|
|
72380
|
-
"qx"
|
|
72381
|
-
],
|
|
72382
|
-
"qx/tool/website/src/index.html": [
|
|
72383
|
-
null,
|
|
72384
|
-
null,
|
|
72385
|
-
"html",
|
|
72387
|
+
"qx/tool/website/partials/icon-twitter.svg": [
|
|
72388
|
+
16,
|
|
72389
|
+
16,
|
|
72390
|
+
"svg",
|
|
72386
72391
|
"qx"
|
|
72387
72392
|
],
|
|
72388
72393
|
"qx/tool/cli/templates/class/default.tmpl.js": [
|
|
@@ -72403,13 +72408,13 @@ qx.$$packageData['0'] = {
|
|
|
72403
72408
|
"js",
|
|
72404
72409
|
"qx"
|
|
72405
72410
|
],
|
|
72406
|
-
"qx/tool/cli/templates/class/
|
|
72411
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
72407
72412
|
null,
|
|
72408
72413
|
null,
|
|
72409
72414
|
"js",
|
|
72410
72415
|
"qx"
|
|
72411
72416
|
],
|
|
72412
|
-
"qx/tool/cli/templates/class/
|
|
72417
|
+
"qx/tool/cli/templates/class/singleton.tmpl.js": [
|
|
72413
72418
|
null,
|
|
72414
72419
|
null,
|
|
72415
72420
|
"js",
|
|
@@ -72433,43 +72438,25 @@ qx.$$packageData['0'] = {
|
|
|
72433
72438
|
"js",
|
|
72434
72439
|
"qx"
|
|
72435
72440
|
],
|
|
72436
|
-
"qx/tool/website/build/
|
|
72437
|
-
null,
|
|
72438
|
-
null,
|
|
72439
|
-
"html",
|
|
72440
|
-
"qx"
|
|
72441
|
-
],
|
|
72442
|
-
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72443
|
-
null,
|
|
72444
|
-
null,
|
|
72445
|
-
"html",
|
|
72446
|
-
"qx"
|
|
72447
|
-
],
|
|
72448
|
-
"qx/tool/website/build/diagnostics/dependson.js": [
|
|
72441
|
+
"qx/tool/website/build/assets/abel.css": [
|
|
72449
72442
|
null,
|
|
72450
72443
|
null,
|
|
72451
|
-
"
|
|
72444
|
+
"css",
|
|
72452
72445
|
"qx"
|
|
72453
72446
|
],
|
|
72454
|
-
"qx/tool/website/build/
|
|
72447
|
+
"qx/tool/website/build/assets/bluebird.min.js": [
|
|
72455
72448
|
null,
|
|
72456
72449
|
null,
|
|
72457
72450
|
"js",
|
|
72458
72451
|
"qx"
|
|
72459
72452
|
],
|
|
72460
|
-
"qx/tool/website/build/assets/abel.css": [
|
|
72461
|
-
null,
|
|
72462
|
-
null,
|
|
72463
|
-
"css",
|
|
72464
|
-
"qx"
|
|
72465
|
-
],
|
|
72466
72453
|
"qx/tool/website/build/assets/bootstrap.css": [
|
|
72467
72454
|
null,
|
|
72468
72455
|
null,
|
|
72469
72456
|
"css",
|
|
72470
72457
|
"qx"
|
|
72471
72458
|
],
|
|
72472
|
-
"qx/tool/website/build/assets/
|
|
72459
|
+
"qx/tool/website/build/assets/buttons.js": [
|
|
72473
72460
|
null,
|
|
72474
72461
|
null,
|
|
72475
72462
|
"js",
|
|
@@ -72487,10 +72474,10 @@ qx.$$packageData['0'] = {
|
|
|
72487
72474
|
"css",
|
|
72488
72475
|
"qx"
|
|
72489
72476
|
],
|
|
72490
|
-
"qx/tool/website/build/assets/
|
|
72491
|
-
|
|
72492
|
-
|
|
72493
|
-
"
|
|
72477
|
+
"qx/tool/website/build/assets/favicon.png": [
|
|
72478
|
+
32,
|
|
72479
|
+
32,
|
|
72480
|
+
"png",
|
|
72494
72481
|
"qx"
|
|
72495
72482
|
],
|
|
72496
72483
|
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
@@ -72499,10 +72486,10 @@ qx.$$packageData['0'] = {
|
|
|
72499
72486
|
"js",
|
|
72500
72487
|
"qx"
|
|
72501
72488
|
],
|
|
72502
|
-
"qx/tool/website/build/assets/
|
|
72503
|
-
|
|
72504
|
-
|
|
72505
|
-
"
|
|
72489
|
+
"qx/tool/website/build/assets/jquery.js": [
|
|
72490
|
+
null,
|
|
72491
|
+
null,
|
|
72492
|
+
"js",
|
|
72506
72493
|
"qx"
|
|
72507
72494
|
],
|
|
72508
72495
|
"qx/tool/website/build/assets/logo.svg": [
|
|
@@ -72511,10 +72498,10 @@ qx.$$packageData['0'] = {
|
|
|
72511
72498
|
"svg",
|
|
72512
72499
|
"qx"
|
|
72513
72500
|
],
|
|
72514
|
-
"qx/tool/website/build/assets/
|
|
72515
|
-
|
|
72516
|
-
|
|
72517
|
-
"
|
|
72501
|
+
"qx/tool/website/build/assets/qx-oo.png": [
|
|
72502
|
+
870,
|
|
72503
|
+
502,
|
|
72504
|
+
"png",
|
|
72518
72505
|
"qx"
|
|
72519
72506
|
],
|
|
72520
72507
|
"qx/tool/website/build/assets/qx-api.png": [
|
|
@@ -72523,12 +72510,6 @@ qx.$$packageData['0'] = {
|
|
|
72523
72510
|
"png",
|
|
72524
72511
|
"qx"
|
|
72525
72512
|
],
|
|
72526
|
-
"qx/tool/website/build/assets/qx-oo.png": [
|
|
72527
|
-
870,
|
|
72528
|
-
502,
|
|
72529
|
-
"png",
|
|
72530
|
-
"qx"
|
|
72531
|
-
],
|
|
72532
72513
|
"qx/tool/website/build/assets/qx-ide.png": [
|
|
72533
72514
|
3183,
|
|
72534
72515
|
1752,
|
|
@@ -72541,16 +72522,34 @@ qx.$$packageData['0'] = {
|
|
|
72541
72522
|
"svg",
|
|
72542
72523
|
"qx"
|
|
72543
72524
|
],
|
|
72544
|
-
"qx/tool/website/build/
|
|
72525
|
+
"qx/tool/website/build/diagnostics/dependson.html": [
|
|
72526
|
+
null,
|
|
72527
|
+
null,
|
|
72528
|
+
"html",
|
|
72529
|
+
"qx"
|
|
72530
|
+
],
|
|
72531
|
+
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
72532
|
+
null,
|
|
72533
|
+
null,
|
|
72534
|
+
"html",
|
|
72535
|
+
"qx"
|
|
72536
|
+
],
|
|
72537
|
+
"qx/tool/website/build/diagnostics/dependson.js": [
|
|
72545
72538
|
null,
|
|
72546
72539
|
null,
|
|
72547
72540
|
"js",
|
|
72548
72541
|
"qx"
|
|
72549
72542
|
],
|
|
72550
|
-
"qx/tool/website/
|
|
72543
|
+
"qx/tool/website/build/diagnostics/requiredby.js": [
|
|
72551
72544
|
null,
|
|
72552
72545
|
null,
|
|
72553
|
-
"
|
|
72546
|
+
"js",
|
|
72547
|
+
"qx"
|
|
72548
|
+
],
|
|
72549
|
+
"qx/tool/website/build/scripts/serve.js": [
|
|
72550
|
+
null,
|
|
72551
|
+
null,
|
|
72552
|
+
"js",
|
|
72554
72553
|
"qx"
|
|
72555
72554
|
],
|
|
72556
72555
|
"qx/tool/website/src/assets/abel.css": [
|
|
@@ -72565,31 +72564,37 @@ qx.$$packageData['0'] = {
|
|
|
72565
72564
|
"js",
|
|
72566
72565
|
"qx"
|
|
72567
72566
|
],
|
|
72567
|
+
"qx/tool/website/src/assets/bootstrap.css": [
|
|
72568
|
+
null,
|
|
72569
|
+
null,
|
|
72570
|
+
"css",
|
|
72571
|
+
"qx"
|
|
72572
|
+
],
|
|
72568
72573
|
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
72569
72574
|
null,
|
|
72570
72575
|
null,
|
|
72571
72576
|
"css",
|
|
72572
72577
|
"qx"
|
|
72573
72578
|
],
|
|
72579
|
+
"qx/tool/website/src/assets/favicon.png": [
|
|
72580
|
+
32,
|
|
72581
|
+
32,
|
|
72582
|
+
"png",
|
|
72583
|
+
"qx"
|
|
72584
|
+
],
|
|
72574
72585
|
"qx/tool/website/src/assets/bootstrap.min.css.map": [
|
|
72575
72586
|
null,
|
|
72576
72587
|
null,
|
|
72577
72588
|
"map",
|
|
72578
72589
|
"qx"
|
|
72579
72590
|
],
|
|
72580
|
-
"qx/tool/website/src/assets/
|
|
72591
|
+
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
72581
72592
|
null,
|
|
72582
72593
|
null,
|
|
72583
72594
|
"js",
|
|
72584
72595
|
"qx"
|
|
72585
72596
|
],
|
|
72586
|
-
"qx/tool/website/src/assets/
|
|
72587
|
-
32,
|
|
72588
|
-
32,
|
|
72589
|
-
"png",
|
|
72590
|
-
"qx"
|
|
72591
|
-
],
|
|
72592
|
-
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
72597
|
+
"qx/tool/website/src/assets/buttons.js": [
|
|
72593
72598
|
null,
|
|
72594
72599
|
null,
|
|
72595
72600
|
"js",
|
|
@@ -72637,10 +72642,10 @@ qx.$$packageData['0'] = {
|
|
|
72637
72642
|
"html",
|
|
72638
72643
|
"qx"
|
|
72639
72644
|
],
|
|
72640
|
-
"qx/tool/website/src/diagnostics/
|
|
72645
|
+
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
72641
72646
|
null,
|
|
72642
72647
|
null,
|
|
72643
|
-
"
|
|
72648
|
+
"js",
|
|
72644
72649
|
"qx"
|
|
72645
72650
|
],
|
|
72646
72651
|
"qx/tool/website/src/diagnostics/requiredby.js": [
|
|
@@ -72649,10 +72654,10 @@ qx.$$packageData['0'] = {
|
|
|
72649
72654
|
"js",
|
|
72650
72655
|
"qx"
|
|
72651
72656
|
],
|
|
72652
|
-
"qx/tool/website/src/diagnostics/
|
|
72657
|
+
"qx/tool/website/src/diagnostics/requiredby.html": [
|
|
72653
72658
|
null,
|
|
72654
72659
|
null,
|
|
72655
|
-
"
|
|
72660
|
+
"html",
|
|
72656
72661
|
"qx"
|
|
72657
72662
|
],
|
|
72658
72663
|
"qx/tool/website/src/scripts/serve.js": [
|
|
@@ -72661,25 +72666,25 @@ qx.$$packageData['0'] = {
|
|
|
72661
72666
|
"js",
|
|
72662
72667
|
"qx"
|
|
72663
72668
|
],
|
|
72664
|
-
"qx/tool/cli/templates/skeleton/
|
|
72669
|
+
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
|
|
72665
72670
|
null,
|
|
72666
72671
|
null,
|
|
72667
|
-
"
|
|
72672
|
+
"json",
|
|
72668
72673
|
"qx"
|
|
72669
72674
|
],
|
|
72670
|
-
"qx/tool/cli/templates/skeleton/
|
|
72675
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
72671
72676
|
null,
|
|
72672
72677
|
null,
|
|
72673
|
-
"
|
|
72678
|
+
"tmpl",
|
|
72674
72679
|
"qx"
|
|
72675
72680
|
],
|
|
72676
|
-
"qx/tool/cli/templates/skeleton/
|
|
72681
|
+
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
|
|
72677
72682
|
null,
|
|
72678
72683
|
null,
|
|
72679
72684
|
"json",
|
|
72680
72685
|
"qx"
|
|
72681
72686
|
],
|
|
72682
|
-
"qx/tool/cli/templates/skeleton/
|
|
72687
|
+
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
|
|
72683
72688
|
null,
|
|
72684
72689
|
null,
|
|
72685
72690
|
"md",
|
|
@@ -72733,103 +72738,109 @@ qx.$$packageData['0'] = {
|
|
|
72733
72738
|
"txt",
|
|
72734
72739
|
"qx"
|
|
72735
72740
|
],
|
|
72736
|
-
"qx/tool/cli/templates/skeleton/
|
|
72741
|
+
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
|
|
72737
72742
|
null,
|
|
72738
72743
|
null,
|
|
72739
72744
|
"tmpl",
|
|
72740
72745
|
"qx"
|
|
72741
72746
|
],
|
|
72742
|
-
"qx/tool/cli/templates/skeleton/
|
|
72747
|
+
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
|
|
72743
72748
|
null,
|
|
72744
72749
|
null,
|
|
72745
72750
|
"json",
|
|
72746
72751
|
"qx"
|
|
72747
72752
|
],
|
|
72748
|
-
"qx/tool/cli/templates/skeleton/
|
|
72753
|
+
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
|
|
72749
72754
|
null,
|
|
72750
72755
|
null,
|
|
72751
72756
|
"json",
|
|
72752
72757
|
"qx"
|
|
72753
72758
|
],
|
|
72754
|
-
"qx/tool/cli/templates/skeleton/
|
|
72759
|
+
"qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
|
|
72755
72760
|
null,
|
|
72756
72761
|
null,
|
|
72757
72762
|
"md",
|
|
72758
72763
|
"qx"
|
|
72759
72764
|
],
|
|
72760
|
-
"qx/tool/cli/templates/skeleton/
|
|
72765
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
|
|
72761
72766
|
null,
|
|
72762
72767
|
null,
|
|
72763
|
-
"
|
|
72768
|
+
"html",
|
|
72764
72769
|
"qx"
|
|
72765
72770
|
],
|
|
72766
|
-
"qx/tool/cli/templates/skeleton/
|
|
72771
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
|
|
72767
72772
|
null,
|
|
72768
72773
|
null,
|
|
72769
72774
|
"html",
|
|
72770
72775
|
"qx"
|
|
72771
72776
|
],
|
|
72777
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
72778
|
+
null,
|
|
72779
|
+
null,
|
|
72780
|
+
"txt",
|
|
72781
|
+
"qx"
|
|
72782
|
+
],
|
|
72772
72783
|
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
72773
72784
|
null,
|
|
72774
72785
|
null,
|
|
72775
72786
|
"html",
|
|
72776
72787
|
"qx"
|
|
72777
72788
|
],
|
|
72778
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
72789
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
72779
72790
|
null,
|
|
72780
72791
|
null,
|
|
72781
|
-
"
|
|
72792
|
+
"html",
|
|
72782
72793
|
"qx"
|
|
72783
72794
|
],
|
|
72784
|
-
"qx/tool/cli/templates/skeleton/
|
|
72795
|
+
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
72785
72796
|
null,
|
|
72786
72797
|
null,
|
|
72787
72798
|
"txt",
|
|
72788
72799
|
"qx"
|
|
72789
72800
|
],
|
|
72790
|
-
"qx/tool/cli/templates/skeleton/
|
|
72801
|
+
"qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
|
|
72791
72802
|
null,
|
|
72792
72803
|
null,
|
|
72793
72804
|
"txt",
|
|
72794
72805
|
"qx"
|
|
72795
72806
|
],
|
|
72796
|
-
"qx/tool/cli/templates/skeleton/
|
|
72807
|
+
"qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
|
|
72797
72808
|
null,
|
|
72798
72809
|
null,
|
|
72799
|
-
"
|
|
72810
|
+
"txt",
|
|
72800
72811
|
"qx"
|
|
72801
72812
|
],
|
|
72802
|
-
"qx/tool/cli/templates/skeleton/desktop/source/
|
|
72803
|
-
|
|
72804
|
-
|
|
72805
|
-
"
|
|
72813
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
|
|
72814
|
+
180,
|
|
72815
|
+
180,
|
|
72816
|
+
"png",
|
|
72806
72817
|
"qx"
|
|
72807
72818
|
],
|
|
72808
|
-
"qx/tool/cli/templates/skeleton/
|
|
72809
|
-
|
|
72810
|
-
|
|
72811
|
-
"
|
|
72819
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
|
|
72820
|
+
32,
|
|
72821
|
+
32,
|
|
72822
|
+
"png",
|
|
72812
72823
|
"qx"
|
|
72813
72824
|
],
|
|
72814
|
-
"qx/tool/cli/templates/skeleton/
|
|
72815
|
-
|
|
72816
|
-
|
|
72817
|
-
"
|
|
72825
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
|
|
72826
|
+
256,
|
|
72827
|
+
256,
|
|
72828
|
+
"png",
|
|
72818
72829
|
"qx"
|
|
72819
72830
|
],
|
|
72820
|
-
"qx/tool/cli/templates/skeleton/
|
|
72831
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
|
|
72821
72832
|
32,
|
|
72822
72833
|
32,
|
|
72823
72834
|
"png",
|
|
72824
72835
|
"qx"
|
|
72825
72836
|
],
|
|
72826
|
-
"qx/tool/cli/templates/skeleton/
|
|
72837
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
72827
72838
|
null,
|
|
72828
72839
|
null,
|
|
72829
72840
|
"js",
|
|
72830
72841
|
"qx"
|
|
72831
72842
|
],
|
|
72832
|
-
"qx/tool/cli/templates/skeleton/
|
|
72843
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
|
|
72833
72844
|
null,
|
|
72834
72845
|
null,
|
|
72835
72846
|
"js",
|
|
@@ -72871,157 +72882,151 @@ qx.$$packageData['0'] = {
|
|
|
72871
72882
|
"tmpl",
|
|
72872
72883
|
"qx"
|
|
72873
72884
|
],
|
|
72874
|
-
"qx/tool/cli/templates/skeleton/
|
|
72875
|
-
|
|
72876
|
-
|
|
72877
|
-
"
|
|
72885
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
72886
|
+
null,
|
|
72887
|
+
null,
|
|
72888
|
+
"js",
|
|
72878
72889
|
"qx"
|
|
72879
72890
|
],
|
|
72880
|
-
"qx/tool/cli/templates/skeleton/
|
|
72881
|
-
|
|
72882
|
-
|
|
72883
|
-
"
|
|
72891
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
|
|
72892
|
+
null,
|
|
72893
|
+
null,
|
|
72894
|
+
"js",
|
|
72884
72895
|
"qx"
|
|
72885
72896
|
],
|
|
72886
|
-
"qx/tool/cli/templates/skeleton/
|
|
72887
|
-
|
|
72888
|
-
|
|
72889
|
-
"
|
|
72897
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
|
|
72898
|
+
null,
|
|
72899
|
+
null,
|
|
72900
|
+
"js",
|
|
72890
72901
|
"qx"
|
|
72891
72902
|
],
|
|
72892
|
-
"qx/tool/cli/templates/skeleton/
|
|
72903
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
|
|
72904
|
+
null,
|
|
72905
|
+
null,
|
|
72906
|
+
"js",
|
|
72907
|
+
"qx"
|
|
72908
|
+
],
|
|
72909
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
72893
72910
|
32,
|
|
72894
72911
|
32,
|
|
72895
72912
|
"png",
|
|
72896
72913
|
"qx"
|
|
72897
72914
|
],
|
|
72898
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/
|
|
72915
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
72899
72916
|
null,
|
|
72900
72917
|
null,
|
|
72901
72918
|
"js",
|
|
72902
72919
|
"qx"
|
|
72903
72920
|
],
|
|
72904
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/
|
|
72921
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
|
|
72905
72922
|
null,
|
|
72906
72923
|
null,
|
|
72907
72924
|
"js",
|
|
72908
72925
|
"qx"
|
|
72909
72926
|
],
|
|
72910
|
-
"qx/tool/cli/templates/skeleton/
|
|
72927
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
|
|
72911
72928
|
null,
|
|
72912
72929
|
null,
|
|
72913
72930
|
"js",
|
|
72914
72931
|
"qx"
|
|
72915
72932
|
],
|
|
72916
|
-
"qx/tool/cli/templates/skeleton/
|
|
72933
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
|
|
72917
72934
|
null,
|
|
72918
72935
|
null,
|
|
72919
72936
|
"js",
|
|
72920
72937
|
"qx"
|
|
72921
72938
|
],
|
|
72922
|
-
"qx/tool/cli/templates/skeleton/
|
|
72939
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
|
|
72923
72940
|
null,
|
|
72924
72941
|
null,
|
|
72925
72942
|
"js",
|
|
72926
72943
|
"qx"
|
|
72927
72944
|
],
|
|
72928
|
-
"qx/tool/cli/templates/skeleton/
|
|
72945
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
|
|
72929
72946
|
null,
|
|
72930
72947
|
null,
|
|
72931
72948
|
"js",
|
|
72932
72949
|
"qx"
|
|
72933
72950
|
],
|
|
72934
|
-
"qx/tool/cli/templates/skeleton/
|
|
72951
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
72935
72952
|
null,
|
|
72936
72953
|
null,
|
|
72937
72954
|
"js",
|
|
72938
72955
|
"qx"
|
|
72939
72956
|
],
|
|
72940
|
-
"qx/tool/cli/templates/skeleton/
|
|
72957
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
72941
72958
|
null,
|
|
72942
72959
|
null,
|
|
72943
72960
|
"js",
|
|
72944
72961
|
"qx"
|
|
72945
72962
|
],
|
|
72946
|
-
"qx/tool/cli/templates/skeleton/
|
|
72963
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
72947
72964
|
null,
|
|
72948
72965
|
null,
|
|
72949
72966
|
"js",
|
|
72950
72967
|
"qx"
|
|
72951
72968
|
],
|
|
72952
|
-
"qx/tool/cli/templates/skeleton/mobile/source/
|
|
72969
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
|
|
72953
72970
|
null,
|
|
72954
72971
|
null,
|
|
72955
|
-
"
|
|
72972
|
+
"tmpl",
|
|
72956
72973
|
"qx"
|
|
72957
72974
|
],
|
|
72958
|
-
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/
|
|
72975
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
|
|
72959
72976
|
null,
|
|
72960
72977
|
null,
|
|
72961
72978
|
"scss",
|
|
72962
72979
|
"qx"
|
|
72963
72980
|
],
|
|
72964
|
-
"qx/tool/cli/templates/skeleton/
|
|
72965
|
-
null,
|
|
72966
|
-
null,
|
|
72967
|
-
"js",
|
|
72968
|
-
"qx"
|
|
72969
|
-
],
|
|
72970
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
72981
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
|
|
72971
72982
|
null,
|
|
72972
72983
|
null,
|
|
72973
|
-
"
|
|
72984
|
+
"scss",
|
|
72974
72985
|
"qx"
|
|
72975
72986
|
],
|
|
72976
|
-
"qx/tool/cli/templates/skeleton/
|
|
72987
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
72977
72988
|
null,
|
|
72978
72989
|
null,
|
|
72979
72990
|
"js",
|
|
72980
72991
|
"qx"
|
|
72981
72992
|
],
|
|
72982
|
-
"qx/tool/cli/templates/skeleton/
|
|
72993
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
72983
72994
|
null,
|
|
72984
72995
|
null,
|
|
72985
72996
|
"js",
|
|
72986
72997
|
"qx"
|
|
72987
72998
|
],
|
|
72988
|
-
"qx/tool/cli/templates/skeleton/
|
|
72989
|
-
null,
|
|
72990
|
-
null,
|
|
72991
|
-
"tmpl",
|
|
72992
|
-
"qx"
|
|
72993
|
-
],
|
|
72994
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
|
|
72999
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
|
|
72995
73000
|
null,
|
|
72996
73001
|
null,
|
|
72997
73002
|
"js",
|
|
72998
73003
|
"qx"
|
|
72999
73004
|
],
|
|
73000
|
-
"qx/tool/cli/templates/skeleton/
|
|
73005
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
|
|
73001
73006
|
null,
|
|
73002
73007
|
null,
|
|
73003
73008
|
"js",
|
|
73004
73009
|
"qx"
|
|
73005
73010
|
],
|
|
73006
|
-
"qx/tool/cli/templates/skeleton/
|
|
73011
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
|
|
73007
73012
|
null,
|
|
73008
73013
|
null,
|
|
73009
73014
|
"js",
|
|
73010
73015
|
"qx"
|
|
73011
73016
|
],
|
|
73012
|
-
"qx/tool/cli/templates/skeleton/
|
|
73017
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
|
|
73013
73018
|
null,
|
|
73014
73019
|
null,
|
|
73015
73020
|
"js",
|
|
73016
73021
|
"qx"
|
|
73017
73022
|
],
|
|
73018
|
-
"qx/tool/cli/templates/skeleton/
|
|
73023
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
|
|
73019
73024
|
null,
|
|
73020
73025
|
null,
|
|
73021
73026
|
"js",
|
|
73022
73027
|
"qx"
|
|
73023
73028
|
],
|
|
73024
|
-
"qx/tool/cli/templates/skeleton/
|
|
73029
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
|
|
73025
73030
|
null,
|
|
73026
73031
|
null,
|
|
73027
73032
|
"js",
|