First commit
This commit is contained in:
248073
assets/bundle.js
Normal file
248073
assets/bundle.js
Normal file
File diff suppressed because one or more lines are too long
1
assets/bundleName.json
Normal file
1
assets/bundleName.json
Normal file
@@ -0,0 +1 @@
|
||||
{"uniqueName":6342459970}
|
||||
1
assets/cache/cache.js
vendored
Normal file
1
assets/cache/cache.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export default `{}`;
|
||||
1
assets/cache/cache.json
vendored
Normal file
1
assets/cache/cache.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
assets/configs/config.js
Normal file
1
assets/configs/config.js
Normal file
@@ -0,0 +1 @@
|
||||
{"mode":"production","serverAddress":"localhost","ssl":false,"socketPort":3400,"port":3000,"maxClusters":1}
|
||||
1
assets/configs/config.json
Normal file
1
assets/configs/config.json
Normal file
@@ -0,0 +1 @@
|
||||
{"mode":"development","serverAddress":"localhost","ssl":false,"socketPort":5000,"port":3000,"maxClusters":1,"os":"Windows","device":"Pc","tint":"Dark","syncClientID":0,"loadThemes":true}
|
||||
18
assets/css/dist/loading-bar.css
vendored
Normal file
18
assets/css/dist/loading-bar.css
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
.ldBar {
|
||||
position: relative;
|
||||
}
|
||||
.ldBar.label-center > .ldBar-label {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
text-shadow: 0 0 3px #fff;
|
||||
}
|
||||
.ldBar-label:after {
|
||||
content: "%";
|
||||
display: inline;
|
||||
}
|
||||
.ldBar.no-percent .ldBar-label:after {
|
||||
content: "";
|
||||
}
|
||||
811
assets/css/dist/loading-bar.js
vendored
Normal file
811
assets/css/dist/loading-bar.js
vendored
Normal file
@@ -0,0 +1,811 @@
|
||||
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
|
||||
// Generated by LiveScript 1.3.1
|
||||
var presets, simpleStr, wrap, slice$ = [].slice, toString$ = {}.toString;
|
||||
presets = require('./presets').presets;
|
||||
simpleStr = function(arr){
|
||||
return arr.join('');
|
||||
};
|
||||
wrap = function(content){
|
||||
return "data:image/svg+xml;base64," + btoa(content);
|
||||
};
|
||||
(function(){
|
||||
var make, handler, ldBar;
|
||||
make = {
|
||||
head: function(viewBox){
|
||||
return "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"" + viewBox + "\">";
|
||||
},
|
||||
gradient: function(dir, dur){
|
||||
var colors, ret, len, gx, gy, x, y, i$, i, idx;
|
||||
dir == null && (dir = 45);
|
||||
dur == null && (dur = 1);
|
||||
colors = slice$.call(arguments, 2);
|
||||
ret = [this.head("0 0 100 100")];
|
||||
len = colors.length * 4 + 1;
|
||||
dir = dir * Math.PI / 180;
|
||||
gx = Math.pow(Math.cos(dir), 2);
|
||||
gy = Math.sqrt(gx - Math.pow(gx, 2));
|
||||
if (dir > Math.PI * 0.25) {
|
||||
gy = Math.pow(Math.sin(dir), 2);
|
||||
gx = Math.sqrt(gy - Math.pow(gy, 2));
|
||||
}
|
||||
x = gx * 100;
|
||||
y = gy * 100;
|
||||
ret.push("<defs><linearGradient id=\"gradient\" x1=\"0\" x2=\"" + gx + "\" y1=\"0\" y2=\"" + gy + "\">");
|
||||
for (i$ = 0; i$ < len; ++i$) {
|
||||
i = i$;
|
||||
idx = i * 100 / (len - 1);
|
||||
ret.push("<stop offset=\"" + idx + "%\" stop-color=\"" + colors[i % colors.length] + "\"/>");
|
||||
}
|
||||
ret.push("</linearGradient></defs>\n<rect x=\"0\" y=\"0\" width=\"400\" height=\"400\" fill=\"url(#gradient)\">\n<animateTransform attributeName=\"transform\" type=\"translate\" from=\"-" + x + ",-" + y + "\"\nto=\"0,0\" dur=\"" + dur + "s\" repeatCount=\"indefinite\"/></rect></svg>");
|
||||
return wrap(ret.join(""));
|
||||
},
|
||||
stripe: function(c1, c2, dur){
|
||||
var ret, i;
|
||||
c1 == null && (c1 = '#b4b4b4');
|
||||
c2 == null && (c2 = '#e6e6e6');
|
||||
dur == null && (dur = 1);
|
||||
ret = [this.head("0 0 100 100")];
|
||||
ret = ret.concat([
|
||||
"<rect fill=\"" + c2 + "\" width=\"100\" height=\"100\"/>", "<g><g>", (function(){
|
||||
var i$, results$ = [];
|
||||
for (i$ = 0; i$ < 13; ++i$) {
|
||||
i = i$;
|
||||
results$.push(("<polygon fill=\"" + c1 + "\" ") + ("points=\"" + (-90 + i * 20) + ",100 " + (-100 + i * 20) + ",") + ("100 " + (-60 + i * 20) + ",0 " + (-50 + i * 20) + ",0 \"/>"));
|
||||
}
|
||||
return results$;
|
||||
}()).join(""), "</g><animateTransform attributeName=\"transform\" type=\"translate\" ", "from=\"0,0\" to=\"20,0\" dur=\"" + dur + "s\" repeatCount=\"indefinite\"/></g></svg>"
|
||||
].join(""));
|
||||
return wrap(ret);
|
||||
},
|
||||
bubble: function(c1, c2, count, dur, size, sw){
|
||||
var ret, i$, i, idx, x, r, d;
|
||||
c1 == null && (c1 = '#39d');
|
||||
c2 == null && (c2 = '#9cf');
|
||||
count == null && (count = 15);
|
||||
dur == null && (dur = 1);
|
||||
size == null && (size = 6);
|
||||
sw == null && (sw = 1);
|
||||
ret = [this.head("0 0 200 200"), "<rect x=\"0\" y=\"0\" width=\"200\" height=\"200\" fill=\"" + c1 + "\"/>"];
|
||||
for (i$ = 0; i$ < count; ++i$) {
|
||||
i = i$;
|
||||
idx = -(i / count) * dur;
|
||||
x = Math.random() * 184 + 8;
|
||||
r = (Math.random() * 0.7 + 0.3) * size;
|
||||
d = dur * (1 + Math.random() * 0.5);
|
||||
ret.push(["<circle cx=\"" + x + "\" cy=\"0\" r=\"" + r + "\" fill=\"none\" stroke=\"" + c2 + "\" stroke-width=\"" + sw + "\">", "<animate attributeName=\"cy\" values=\"190;-10\" times=\"0;1\" ", "dur=\"" + d + "s\" begin=\"" + idx + "s\" repeatCount=\"indefinite\"/>", "</circle>", "<circle cx=\"" + x + "\" cy=\"0\" r=\"" + r + "\" fill=\"none\" stroke=\"" + c2 + "\" stroke-width=\"" + sw + "\">", "<animate attributeName=\"cy\" values=\"390;190\" times=\"0;1\" ", "dur=\"" + d + "s\" begin=\"" + idx + "s\" repeatCount=\"indefinite\"/>", "</circle>"].join(""));
|
||||
}
|
||||
return wrap(ret.join("") + "</svg>");
|
||||
}
|
||||
};
|
||||
handler = {
|
||||
queue: {},
|
||||
running: false,
|
||||
main: function(timestamp){
|
||||
var keepon, removed, k, ref$, func, ret, this$ = this;
|
||||
keepon = false;
|
||||
removed = [];
|
||||
for (k in ref$ = this.queue) {
|
||||
func = ref$[k];
|
||||
ret = func(timestamp);
|
||||
if (!ret) {
|
||||
removed.push(func);
|
||||
}
|
||||
keepon = keepon || ret;
|
||||
}
|
||||
for (k in ref$ = this.queue) {
|
||||
func = ref$[k];
|
||||
if (removed.indexOf(func) >= 0) {
|
||||
delete this.queue[k];
|
||||
}
|
||||
}
|
||||
if (keepon) {
|
||||
return requestAnimationFrame(function(it){
|
||||
return this$.main(it);
|
||||
});
|
||||
} else {
|
||||
return this.running = false;
|
||||
}
|
||||
},
|
||||
add: function(key, f){
|
||||
var this$ = this;
|
||||
if (!this.queue[key]) {
|
||||
this.queue[key] = f;
|
||||
}
|
||||
if (!this.running) {
|
||||
this.running = true;
|
||||
return requestAnimationFrame(function(it){
|
||||
return this$.main(it);
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
window.ldBar = ldBar = function(selector, option){
|
||||
var xmlns, root, cls, idPrefix, id, domTree, newNode, x$, config, attr, that, isStroke, parseRes, dom, svg, text, group, length, path0, path1, patimg, img, ret, size, this$ = this;
|
||||
option == null && (option = {});
|
||||
xmlns = {
|
||||
xlink: "http://www.w3.org/1999/xlink"
|
||||
};
|
||||
root = toString$.call(selector).slice(8, -1) === 'String' ? document.querySelector(selector) : selector;
|
||||
if (!root.ldBar) {
|
||||
root.ldBar = this;
|
||||
} else {
|
||||
return root.ldBar;
|
||||
}
|
||||
cls = root.getAttribute('class') || '';
|
||||
if (!~cls.indexOf('ldBar')) {
|
||||
root.setAttribute('class', cls + " ldBar");
|
||||
}
|
||||
idPrefix = "ldBar-" + Math.random().toString(16).substring(2);
|
||||
id = {
|
||||
key: idPrefix,
|
||||
clip: idPrefix + "-clip",
|
||||
filter: idPrefix + "-filter",
|
||||
pattern: idPrefix + "-pattern",
|
||||
mask: idPrefix + "-mask",
|
||||
maskPath: idPrefix + "-mask-path"
|
||||
};
|
||||
domTree = function(n, o){
|
||||
var k, v;
|
||||
n = newNode(n);
|
||||
for (k in o) {
|
||||
v = o[k];
|
||||
if (k !== 'attr') {
|
||||
n.appendChild(domTree(k, v || {}));
|
||||
}
|
||||
}
|
||||
n.attrs(o.attr || {});
|
||||
return n;
|
||||
};
|
||||
newNode = function(n){
|
||||
return document.createElementNS("http://www.w3.org/2000/svg", n);
|
||||
};
|
||||
x$ = document.body.__proto__.__proto__.__proto__;
|
||||
x$.text = function(t){
|
||||
return this.appendChild(document.createTextNode(t));
|
||||
};
|
||||
x$.attrs = function(o){
|
||||
var k, v, ret, results$ = [];
|
||||
for (k in o) {
|
||||
v = o[k];
|
||||
ret = /([^:]+):([^:]+)/.exec(k);
|
||||
if (!ret || !xmlns[ret[1]]) {
|
||||
results$.push(this.setAttribute(k, v));
|
||||
} else {
|
||||
results$.push(this.setAttributeNS(xmlns[ret[1]], k, v));
|
||||
}
|
||||
}
|
||||
return results$;
|
||||
};
|
||||
x$.styles = function(o){
|
||||
var k, v, results$ = [];
|
||||
for (k in o) {
|
||||
v = o[k];
|
||||
results$.push(this.style[k] = v);
|
||||
}
|
||||
return results$;
|
||||
};
|
||||
x$.append = function(n){
|
||||
var r;
|
||||
return this.appendChild(r = document.createElementNS("http://www.w3.og/2000/svg", n));
|
||||
};
|
||||
x$.attr = function(n, v){
|
||||
if (v != null) {
|
||||
return this.setAttribute(n, v);
|
||||
} else {
|
||||
return this.getAttribute(n);
|
||||
}
|
||||
};
|
||||
config = {
|
||||
"type": 'stroke',
|
||||
"img": '',
|
||||
"path": 'M10 10L90 10M90 8M90 12',
|
||||
"fill-dir": 'btt',
|
||||
"fill": '#25b',
|
||||
"fill-background": '#ddd',
|
||||
"fill-background-extrude": 3,
|
||||
"pattern-size": null,
|
||||
"stroke-dir": 'normal',
|
||||
"stroke": '#25b',
|
||||
"stroke-width": '3',
|
||||
"stroke-trail": '#ddd',
|
||||
"stroke-trail-width": 0.5,
|
||||
"duration": 1,
|
||||
"easing": 'linear',
|
||||
"value": 0,
|
||||
"img-size": null,
|
||||
"bbox": null,
|
||||
"set-dim": true,
|
||||
"aspect-ratio": "xMidYMid",
|
||||
"transition-in": false,
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
"precision": 0,
|
||||
"padding": undefined
|
||||
};
|
||||
config["preset"] = root.attr("data-preset") || option["preset"];
|
||||
if (config.preset != null) {
|
||||
import$(config, presets[config.preset]);
|
||||
}
|
||||
for (attr in config) {
|
||||
if (that = that = root.attr("data-" + attr)) {
|
||||
config[attr] = that;
|
||||
}
|
||||
}
|
||||
import$(config, option);
|
||||
if (config.img) {
|
||||
config.path = null;
|
||||
}
|
||||
isStroke = config.type === 'stroke';
|
||||
parseRes = function(v){
|
||||
var parser, ret;
|
||||
parser = /data:ldbar\/res,([^()]+)\(([^)]+)\)/;
|
||||
ret = parser.exec(v);
|
||||
if (!ret) {
|
||||
return v;
|
||||
}
|
||||
return ret = make[ret[1]].apply(make, ret[2].split(','));
|
||||
};
|
||||
config.fill = parseRes(config.fill);
|
||||
config.stroke = parseRes(config.stroke);
|
||||
if (config["set-dim"] === 'false') {
|
||||
config["set-dim"] = false;
|
||||
}
|
||||
dom = {
|
||||
attr: {
|
||||
"xmlns:xlink": 'http://www.w3.org/1999/xlink',
|
||||
preserveAspectRatio: config["aspect-ratio"],
|
||||
width: "100%",
|
||||
height: "100%"
|
||||
},
|
||||
defs: {
|
||||
filter: {
|
||||
attr: {
|
||||
id: id.filter,
|
||||
x: -1,
|
||||
y: -1,
|
||||
width: 3,
|
||||
height: 3
|
||||
},
|
||||
feMorphology: {
|
||||
attr: {
|
||||
operator: +config["fill-background-extrude"] >= 0 ? 'dilate' : 'erode',
|
||||
radius: Math.abs(+config["fill-background-extrude"])
|
||||
}
|
||||
},
|
||||
feColorMatrix: {
|
||||
attr: {
|
||||
values: '0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0',
|
||||
result: "cm"
|
||||
}
|
||||
}
|
||||
},
|
||||
mask: {
|
||||
attr: {
|
||||
id: id.mask
|
||||
},
|
||||
image: {
|
||||
attr: {
|
||||
"xlink:href": config.img,
|
||||
filter: "url(#" + id.filter + ")",
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: 100,
|
||||
height: 100,
|
||||
preserveAspectRatio: config["aspect-ratio"]
|
||||
}
|
||||
}
|
||||
},
|
||||
g: {
|
||||
mask: {
|
||||
attr: {
|
||||
id: id.maskPath
|
||||
},
|
||||
path: {
|
||||
attr: {
|
||||
d: config.path || "",
|
||||
fill: '#fff',
|
||||
stroke: '#fff',
|
||||
filter: "url(#" + id.filter + ")"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
clipPath: {
|
||||
attr: {
|
||||
id: id.clip
|
||||
},
|
||||
rect: {
|
||||
attr: {
|
||||
'class': 'mask',
|
||||
fill: '#000'
|
||||
}
|
||||
}
|
||||
},
|
||||
pattern: {
|
||||
attr: {
|
||||
id: id.pattern,
|
||||
patternUnits: 'userSpaceOnUse',
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: 300,
|
||||
height: 300
|
||||
},
|
||||
image: {
|
||||
attr: {
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: 300,
|
||||
height: 300
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
svg = domTree('svg', dom);
|
||||
text = document.createElement('div');
|
||||
text.setAttribute('class', 'ldBar-label');
|
||||
root.appendChild(svg);
|
||||
root.appendChild(text);
|
||||
group = [0, 0];
|
||||
length = 0;
|
||||
this.fit = function(){
|
||||
var that, box, d, rect;
|
||||
if (that = config["bbox"]) {
|
||||
box = that.split(' ').map(function(it){
|
||||
return +it.trim();
|
||||
});
|
||||
box = {
|
||||
x: box[0],
|
||||
y: box[1],
|
||||
width: box[2],
|
||||
height: box[3]
|
||||
};
|
||||
} else {
|
||||
box = group[1].getBBox();
|
||||
}
|
||||
if (!box || box.width === 0 || box.height === 0) {
|
||||
box = {
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: 100,
|
||||
height: 100
|
||||
};
|
||||
}
|
||||
d = Math.max.apply(null, ['stroke-width', 'stroke-trail-width', 'fill-background-extrude'].map(function(it){
|
||||
return config[it];
|
||||
})) * 1.5;
|
||||
if (config["padding"] != null) {
|
||||
d = +config["padding"];
|
||||
}
|
||||
svg.attrs({
|
||||
viewBox: [box.x - d, box.y - d, box.width + d * 2, box.height + d * 2].join(" ")
|
||||
});
|
||||
if (config["set-dim"]) {
|
||||
['width', 'height'].map(function(it){
|
||||
if (!root.style[it] || this$.fit[it]) {
|
||||
root.style[it] = (box[it] + d * 2) + "px";
|
||||
return this$.fit[it] = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
rect = group[0].querySelector('rect');
|
||||
if (rect) {
|
||||
return rect.attrs({
|
||||
x: box.x - d,
|
||||
y: box.y - d,
|
||||
width: box.width + d * 2,
|
||||
height: box.height + d * 2
|
||||
});
|
||||
}
|
||||
};
|
||||
if (config.path) {
|
||||
if (isStroke) {
|
||||
group[0] = domTree('g', {
|
||||
path: {
|
||||
attr: {
|
||||
d: config.path,
|
||||
fill: 'none',
|
||||
'class': 'baseline'
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
group[0] = domTree('g', {
|
||||
rect: {
|
||||
attr: {
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: 100,
|
||||
height: 100,
|
||||
mask: "url(#" + id.maskPath + ")",
|
||||
fill: config["fill-background"],
|
||||
'class': 'frame'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
svg.appendChild(group[0]);
|
||||
group[1] = domTree('g', {
|
||||
path: {
|
||||
attr: {
|
||||
d: config.path,
|
||||
'class': isStroke ? 'mainline' : 'solid',
|
||||
"clip-path": config.type === 'fill' ? "url(#" + id.clip + ")" : ''
|
||||
}
|
||||
}
|
||||
});
|
||||
svg.appendChild(group[1]);
|
||||
path0 = group[0].querySelector(isStroke ? 'path' : 'rect');
|
||||
path1 = group[1].querySelector('path');
|
||||
if (isStroke) {
|
||||
path1.attrs({
|
||||
fill: 'none'
|
||||
});
|
||||
}
|
||||
patimg = svg.querySelector('pattern image');
|
||||
img = new Image();
|
||||
img.addEventListener('load', function(){
|
||||
var box, that;
|
||||
box = (that = config["pattern-size"])
|
||||
? {
|
||||
width: +that,
|
||||
height: +that
|
||||
}
|
||||
: img.width && img.height
|
||||
? {
|
||||
width: img.width,
|
||||
height: img.height
|
||||
}
|
||||
: {
|
||||
width: 300,
|
||||
height: 300
|
||||
};
|
||||
svg.querySelector('pattern').attrs({
|
||||
width: box.width,
|
||||
height: box.height
|
||||
});
|
||||
return patimg.attrs({
|
||||
width: box.width,
|
||||
height: box.height
|
||||
});
|
||||
});
|
||||
if (/.+\..+|^data:/.exec(!isStroke
|
||||
? config.fill
|
||||
: config.stroke)) {
|
||||
img.src = !isStroke
|
||||
? config.fill
|
||||
: config.stroke;
|
||||
patimg.attrs({
|
||||
"xlink:href": img.src
|
||||
});
|
||||
}
|
||||
if (isStroke) {
|
||||
path0.attrs({
|
||||
stroke: config["stroke-trail"],
|
||||
"stroke-width": config["stroke-trail-width"]
|
||||
});
|
||||
path1.attrs({
|
||||
"stroke-width": config["stroke-width"],
|
||||
stroke: /.+\..+|^data:/.exec(config.stroke)
|
||||
? "url(#" + id.pattern + ")"
|
||||
: config.stroke
|
||||
});
|
||||
}
|
||||
if (config.fill && !isStroke) {
|
||||
path1.attrs({
|
||||
fill: /.+\..+|^data:/.exec(config.fill)
|
||||
? "url(#" + id.pattern + ")"
|
||||
: config.fill
|
||||
});
|
||||
}
|
||||
length = path1.getTotalLength();
|
||||
this.fit();
|
||||
this.inited = true;
|
||||
} else if (config.img) {
|
||||
if (config["img-size"]) {
|
||||
ret = config["img-size"].split(',');
|
||||
size = {
|
||||
width: +ret[0],
|
||||
height: +ret[1]
|
||||
};
|
||||
} else {
|
||||
size = {
|
||||
width: 100,
|
||||
height: 100
|
||||
};
|
||||
}
|
||||
group[0] = domTree('g', {
|
||||
rect: {
|
||||
attr: {
|
||||
x: 0,
|
||||
y: 0,
|
||||
width: 100,
|
||||
height: 100,
|
||||
mask: "url(#" + id.mask + ")",
|
||||
fill: config["fill-background"]
|
||||
}
|
||||
}
|
||||
});
|
||||
svg.querySelector('mask image').attrs({
|
||||
width: size.width,
|
||||
height: size.height
|
||||
});
|
||||
group[1] = domTree('g', {
|
||||
image: {
|
||||
attr: {
|
||||
width: size.width,
|
||||
height: size.height,
|
||||
x: 0,
|
||||
y: 0,
|
||||
preserveAspectRatio: config["aspect-ratio"],
|
||||
"clip-path": config.type === 'fill' ? "url(#" + id.clip + ")" : '',
|
||||
"xlink:href": config.img,
|
||||
'class': 'solid'
|
||||
}
|
||||
}
|
||||
});
|
||||
img = new Image();
|
||||
img.addEventListener('load', function(){
|
||||
var ret, size, v;
|
||||
if (config["img-size"]) {
|
||||
ret = config["img-size"].split(',');
|
||||
size = {
|
||||
width: +ret[0],
|
||||
height: +ret[1]
|
||||
};
|
||||
} else if (img.width && img.height) {
|
||||
size = {
|
||||
width: img.width,
|
||||
height: img.height
|
||||
};
|
||||
} else {
|
||||
size = {
|
||||
width: 100,
|
||||
height: 100
|
||||
};
|
||||
}
|
||||
svg.querySelector('mask image').attrs({
|
||||
width: size.width,
|
||||
height: size.height
|
||||
});
|
||||
group[1].querySelector('image').attrs({
|
||||
width: size.width,
|
||||
height: size.height
|
||||
});
|
||||
this$.fit();
|
||||
v = this$.value;
|
||||
this$.value = undefined;
|
||||
this$.set(v, true);
|
||||
return this$.inited = true;
|
||||
});
|
||||
img.src = config.img;
|
||||
svg.appendChild(group[0]);
|
||||
svg.appendChild(group[1]);
|
||||
}
|
||||
svg.attrs({
|
||||
width: '100%',
|
||||
height: '100%'
|
||||
});
|
||||
this.transition = {
|
||||
value: {
|
||||
src: 0,
|
||||
des: 0
|
||||
},
|
||||
time: {},
|
||||
ease: function(t, b, c, d){
|
||||
t = t / (d * 0.5);
|
||||
if (t < 1) {
|
||||
return c * 0.5 * t * t + b;
|
||||
}
|
||||
t = t - 1;
|
||||
return -c * 0.5 * (t * (t - 2) - 1) + b;
|
||||
},
|
||||
handler: function(time, doTransition){
|
||||
var ref$, min, max, prec, dv, dt, dur, v, p, node, style, box, dir;
|
||||
doTransition == null && (doTransition = true);
|
||||
if (this.time.src == null) {
|
||||
this.time.src = time;
|
||||
}
|
||||
ref$ = [config["min"], config["max"], 1 / config["precision"]], min = ref$[0], max = ref$[1], prec = ref$[2];
|
||||
ref$ = [this.value.des - this.value.src, (time - this.time.src) * 0.001, +config["duration"] || 1], dv = ref$[0], dt = ref$[1], dur = ref$[2];
|
||||
v = doTransition
|
||||
? this.ease(dt, this.value.src, dv, dur)
|
||||
: this.value.des;
|
||||
if (config.precision) {
|
||||
v = Math.round(v * prec) / prec;
|
||||
} else if (doTransition) {
|
||||
v = Math.round(v);
|
||||
}
|
||||
v >= min || (v = min);
|
||||
v <= max || (v = max);
|
||||
text.textContent = v;
|
||||
p = 100.0 * (v - min) / (max - min);
|
||||
if (isStroke) {
|
||||
node = path1;
|
||||
style = {
|
||||
"stroke-dasharray": config["stroke-dir"] === 'reverse'
|
||||
? "0 " + length * (100 - p) * 0.01 + " " + length * p * 0.01 + " 0"
|
||||
: p * 0.01 * length + " " + ((100 - p) * 0.01 * length + 1)
|
||||
};
|
||||
} else {
|
||||
box = group[1].getBBox();
|
||||
dir = config["fill-dir"];
|
||||
style = dir === 'btt' || !dir
|
||||
? {
|
||||
y: box.y + box.height * (100 - p) * 0.01,
|
||||
height: box.height * p * 0.01,
|
||||
x: box.x,
|
||||
width: box.width
|
||||
}
|
||||
: dir === 'ttb'
|
||||
? {
|
||||
y: box.y,
|
||||
height: box.height * p * 0.01,
|
||||
x: box.x,
|
||||
width: box.width
|
||||
}
|
||||
: dir === 'ltr'
|
||||
? {
|
||||
y: box.y,
|
||||
height: box.height,
|
||||
x: box.x,
|
||||
width: box.width * p * 0.01
|
||||
}
|
||||
: dir === 'rtl' ? {
|
||||
y: box.y,
|
||||
height: box.height,
|
||||
x: box.x + box.width * (100 - p) * 0.01,
|
||||
width: box.width * p * 0.01
|
||||
} : void 8;
|
||||
node = svg.querySelector('rect');
|
||||
}
|
||||
node.attrs(style);
|
||||
if (dt >= dur) {
|
||||
delete this.time.src;
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
start: function(src, des, doTransition){
|
||||
var ref$, this$ = this;
|
||||
ref$ = this.value;
|
||||
ref$.src = src;
|
||||
ref$.des = des;
|
||||
!!(root.offsetWidth || root.offsetHeight || root.getClientRects().length);
|
||||
if (!doTransition || !(root.offsetWidth || root.offsetHeight || root.getClientRects().length)) {
|
||||
this.time.src = 0;
|
||||
this.handler(1000, false);
|
||||
return;
|
||||
}
|
||||
return handler.add(id.key, function(time){
|
||||
return this$.handler(time);
|
||||
});
|
||||
}
|
||||
};
|
||||
this.set = function(v, doTransition){
|
||||
var src, des;
|
||||
doTransition == null && (doTransition = true);
|
||||
src = this.value || 0;
|
||||
if (v != null) {
|
||||
this.value = v;
|
||||
} else {
|
||||
v = this.value;
|
||||
}
|
||||
des = this.value;
|
||||
return this.transition.start(src, des, doTransition);
|
||||
};
|
||||
this.set(+config.value || 0, config["transition-in"]) || false;
|
||||
return this;
|
||||
};
|
||||
return window.addEventListener('load', function(){
|
||||
var i$, ref$, len$, node, results$ = [];
|
||||
for (i$ = 0, len$ = (ref$ = document.querySelectorAll('.ldBar')).length; i$ < len$; ++i$) {
|
||||
node = ref$[i$];
|
||||
if (!node.ldBar) {
|
||||
results$.push(node.ldBar = new ldBar(node));
|
||||
}
|
||||
}
|
||||
return results$;
|
||||
}, false);
|
||||
})();
|
||||
module.exports = ldBar;
|
||||
function import$(obj, src){
|
||||
var own = {}.hasOwnProperty;
|
||||
for (var key in src) if (own.call(src, key)) obj[key] = src[key];
|
||||
return obj;
|
||||
}
|
||||
|
||||
},{"./presets":2}],2:[function(require,module,exports){
|
||||
// Generated by LiveScript 1.3.1
|
||||
var presets, out$ = typeof exports != 'undefined' && exports || this;
|
||||
out$.presets = presets = {
|
||||
rainbow: {
|
||||
"type": 'stroke',
|
||||
"path": 'M10 10L90 10',
|
||||
"stroke": 'data:ldbar/res,gradient(0,1,#a551df,#fd51ad,#ff7f82,#ffb874,#ffeb90)',
|
||||
"bbox": "10 10 80 10"
|
||||
},
|
||||
energy: {
|
||||
"type": 'fill',
|
||||
"path": 'M15 5L85 5A5 5 0 0 1 85 15L15 15A5 5 0 0 1 15 5',
|
||||
"stroke": '#f00',
|
||||
"fill": 'data:ldbar/res,gradient(45,2,#4e9,#8fb,#4e9)',
|
||||
"fill-dir": "ltr",
|
||||
"fill-background": '#444',
|
||||
"fill-background-extrude": 1,
|
||||
"bbox": "10 5 80 10"
|
||||
},
|
||||
stripe: {
|
||||
"type": 'fill',
|
||||
"path": 'M15 5L85 5A5 5 0 0 1 85 15L15 15A5 5 0 0 1 15 5',
|
||||
"stroke": '#f00',
|
||||
"fill": 'data:ldbar/res,stripe(#25b,#58e,1)',
|
||||
"fill-dir": "ltr",
|
||||
"fill-background": '#ddd',
|
||||
"fill-background-extrude": 1,
|
||||
"bbox": "10 5 80 10"
|
||||
},
|
||||
text: {
|
||||
"type": 'fill',
|
||||
"img": "data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"70\" height=\"20\" viewBox=\"0 0 70 20\"><text x=\"35\" y=\"10\" text-anchor=\"middle\" dominant-baseline=\"central\" font-family=\"arial\">LOADING</text></svg>",
|
||||
"fill-background-extrude": 1.3,
|
||||
"pattern-size": 100,
|
||||
"fill-dir": "ltr",
|
||||
"img-size": "70,20",
|
||||
"bbox": "0 0 70 20"
|
||||
},
|
||||
line: {
|
||||
"type": 'stroke',
|
||||
"path": 'M10 10L90 10',
|
||||
"stroke": '#25b',
|
||||
"stroke-width": 3,
|
||||
"stroke-trail": '#ddd',
|
||||
"stroke-trail-width": 1,
|
||||
"bbox": "10 10 80 10"
|
||||
},
|
||||
fan: {
|
||||
"type": 'stroke',
|
||||
"path": 'M10 90A40 40 0 0 1 90 90',
|
||||
"fill-dir": 'btt',
|
||||
"fill": '#25b',
|
||||
"fill-background": '#ddd',
|
||||
"fill-background-extrude": 3,
|
||||
"stroke-dir": 'normal',
|
||||
"stroke": '#25b',
|
||||
"stroke-width": '3',
|
||||
"stroke-trail": '#ddd',
|
||||
"stroke-trail-width": 0.5,
|
||||
"bbox": "10 50 80 40"
|
||||
},
|
||||
circle: {
|
||||
"type": 'stroke',
|
||||
"path": 'M50 10A40 40 0 0 1 50 90A40 40 0 0 1 50 10',
|
||||
"fill-dir": 'btt',
|
||||
"fill": '#25b',
|
||||
"fill-background": '#ddd',
|
||||
"fill-background-extrude": 3,
|
||||
"stroke-dir": 'normal',
|
||||
"stroke": '#25b',
|
||||
"stroke-width": '3',
|
||||
"stroke-trail": '#ddd',
|
||||
"stroke-trail-width": 0.5,
|
||||
"bbox": "10 10 80 80"
|
||||
},
|
||||
bubble: {
|
||||
"type": 'fill',
|
||||
"path": 'M50 10A40 40 0 0 1 50 90A40 40 0 0 1 50 10',
|
||||
"fill-dir": 'btt',
|
||||
"fill": 'data:ldbar/res,bubble(#39d,#cef)',
|
||||
"pattern-size": "150",
|
||||
"fill-background": '#ddd',
|
||||
"fill-background-extrude": 2,
|
||||
"stroke-dir": 'normal',
|
||||
"stroke": '#25b',
|
||||
"stroke-width": '3',
|
||||
"stroke-trail": '#ddd',
|
||||
"stroke-trail-width": 0.5,
|
||||
"bbox": "10 10 80 80"
|
||||
}
|
||||
};
|
||||
|
||||
},{}]},{},[1]);
|
||||
1
assets/css/dist/loading-bar.min.css
vendored
Normal file
1
assets/css/dist/loading-bar.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ldBar{position:relative}.ldBar.label-center>.ldBar-label{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-shadow:0 0 3px #fff}.ldBar-label:after{content:"%";display:inline}.ldBar.no-percent .ldBar-label:after{content:""}
|
||||
1
assets/css/dist/loading-bar.min.js
vendored
Normal file
1
assets/css/dist/loading-bar.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
assets/css/loading-bar.min.css
vendored
Normal file
1
assets/css/loading-bar.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ldBar{position:relative}.ldBar.label-center>.ldBar-label{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-shadow:0 0 3px #fff}.ldBar-label:after{content:"%";display:inline}.ldBar.no-percent .ldBar-label:after{content:""}
|
||||
136
assets/css/preloader.css
Normal file
136
assets/css/preloader.css
Normal file
@@ -0,0 +1,136 @@
|
||||
.loadingBarPanel{
|
||||
|
||||
transition: 1s;
|
||||
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-family: "proxima-nova-soft", sans-serif;
|
||||
-webkit-user-select: none;
|
||||
overflow: hidden;
|
||||
|
||||
|
||||
}
|
||||
body .vertical-centered-box {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
body .vertical-centered-box:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle;
|
||||
margin-right: -0.25em;
|
||||
}
|
||||
body .vertical-centered-box .content {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
text-align: left;
|
||||
font-size: 0;
|
||||
}
|
||||
* {
|
||||
transition: all 0.3s;
|
||||
}
|
||||
body {
|
||||
|
||||
}
|
||||
.loader-circle {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
|
||||
margin-left: -60px;
|
||||
margin-top: -60px;
|
||||
|
||||
}
|
||||
.loader-circle-dark {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
box-shadow: inset 0 0 0 1px #ffffff;
|
||||
margin-left: -60px;
|
||||
margin-top: -60px;
|
||||
|
||||
}
|
||||
|
||||
.loader-line-mask {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 60px;
|
||||
height: 120px;
|
||||
margin-left: -60px;
|
||||
margin-top: -60px;
|
||||
overflow: hidden;
|
||||
transform-origin: 60px 60px;
|
||||
-webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
|
||||
animation: rotate 1.2s infinite linear;
|
||||
}
|
||||
|
||||
.loader-line-mask-dark {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 60px;
|
||||
height: 120px;
|
||||
margin-left: -60px;
|
||||
margin-top: -60px;
|
||||
overflow: hidden;
|
||||
transform-origin: 60px 60px;
|
||||
-webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
|
||||
animation: rotate 1.2s infinite linear;
|
||||
}
|
||||
|
||||
|
||||
.loader-line {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.loader-line-dark {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
box-shadow: inset 0 0 0 1px rgb(38 91 226 / 82%);
|
||||
}
|
||||
|
||||
|
||||
@keyframes rotate {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@keyframes fade {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.25;
|
||||
}
|
||||
}
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
66
assets/css/preloader2.css
Normal file
66
assets/css/preloader2.css
Normal file
@@ -0,0 +1,66 @@
|
||||
|
||||
.circular {
|
||||
|
||||
-webkit-animation: rotate 2s linear infinite;
|
||||
animation: rotate 2s linear infinite;
|
||||
|
||||
}
|
||||
|
||||
.path {
|
||||
stroke-dasharray: 1, 200;
|
||||
stroke-dashoffset: 0;
|
||||
stroke: white;
|
||||
-webkit-animation: dash 1.5s ease-in-out infinite!important;
|
||||
animation: dash 1.5s ease-in-out infinite!important;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotate {
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes dash {
|
||||
0% {
|
||||
stroke-dasharray: 1, 200;
|
||||
stroke-dashoffset: 0;
|
||||
}
|
||||
50% {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: -35px;
|
||||
}
|
||||
100% {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: -124px;
|
||||
}
|
||||
}
|
||||
@keyframes dash {
|
||||
0% {
|
||||
stroke-dasharray: 1, 200;
|
||||
stroke-dashoffset: 0;
|
||||
}
|
||||
50% {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: -35px;
|
||||
}
|
||||
100% {
|
||||
stroke-dasharray: 89, 200;
|
||||
stroke-dashoffset: -124px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.showbox {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 5%;
|
||||
}
|
||||
1087
assets/css/unify.css
Normal file
1087
assets/css/unify.css
Normal file
File diff suppressed because one or more lines are too long
46
assets/development/index.html
Normal file
46
assets/development/index.html
Normal file
@@ -0,0 +1,46 @@
|
||||
<!doctype html>
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
|
||||
<title>Unify</title>
|
||||
|
||||
<meta name="Description" content="An UnifyJS Application." class="metaDescription" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no">
|
||||
|
||||
<base url="http://localhost:3000">
|
||||
|
||||
<script src="/framework/client/index.js" type="module"></script>
|
||||
|
||||
<link href="/assets/favicon.ico" rel="icon" type="image/x-icon">
|
||||
|
||||
<link href="/assets/css/unify.css" rel="stylesheet">
|
||||
|
||||
<link href="/assets/css/preloader.css" rel="stylesheet">
|
||||
|
||||
<link href="/assets/css/preloader2.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="loadingBarPanel vertical-centered-box">
|
||||
|
||||
<div class="loader-circle"></div>
|
||||
|
||||
<div class="loader-line-mask">
|
||||
|
||||
<div class="loader-line"></div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="application"></div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
BIN
assets/favicon.ico
Normal file
BIN
assets/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/fonts/NotoSansTC/NotoSans-Black.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-Black.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-BlackItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-Bold.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-Bold.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-BoldItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraBold.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraBoldItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraLight.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraLight.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraLightItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-ExtraLightItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-Italic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-Italic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-Light.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-Light.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-LightItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-LightItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-Medium.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-Medium.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-MediumItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-Regular.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-SemiBold.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-SemiBold.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-SemiBoldItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-SemiBoldItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-Thin.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-Thin.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/NotoSansTC/NotoSans-ThinItalic.ttf
Normal file
BIN
assets/fonts/NotoSansTC/NotoSans-ThinItalic.ttf
Normal file
Binary file not shown.
202
assets/fonts/android/LICENSE.txt
Normal file
202
assets/fonts/android/LICENSE.txt
Normal file
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
BIN
assets/fonts/android/Roboto-Black.ttf
Normal file
BIN
assets/fonts/android/Roboto-Black.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-BlackItalic.ttf
Normal file
BIN
assets/fonts/android/Roboto-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-Bold.ttf
Normal file
BIN
assets/fonts/android/Roboto-Bold.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-BoldItalic.ttf
Normal file
BIN
assets/fonts/android/Roboto-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-Italic.ttf
Normal file
BIN
assets/fonts/android/Roboto-Italic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-Light.ttf
Normal file
BIN
assets/fonts/android/Roboto-Light.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-LightItalic.ttf
Normal file
BIN
assets/fonts/android/Roboto-LightItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-Medium.ttf
Normal file
BIN
assets/fonts/android/Roboto-Medium.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-MediumItalic.ttf
Normal file
BIN
assets/fonts/android/Roboto-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-Regular.ttf
Normal file
BIN
assets/fonts/android/Roboto-Regular.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-Thin.ttf
Normal file
BIN
assets/fonts/android/Roboto-Thin.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/android/Roboto-ThinItalic.ttf
Normal file
BIN
assets/fonts/android/Roboto-ThinItalic.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Black.woff
Normal file
BIN
assets/fonts/macos/Inter-Black.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Black.woff2
Normal file
BIN
assets/fonts/macos/Inter-Black.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-BlackItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-BlackItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-BlackItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-BlackItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Bold.woff
Normal file
BIN
assets/fonts/macos/Inter-Bold.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Bold.woff2
Normal file
BIN
assets/fonts/macos/Inter-Bold.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-BoldItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-BoldItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-BoldItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraBold.woff
Normal file
BIN
assets/fonts/macos/Inter-ExtraBold.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraBold.woff2
Normal file
BIN
assets/fonts/macos/Inter-ExtraBold.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraBoldItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-ExtraBoldItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraBoldItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-ExtraBoldItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraLight.woff
Normal file
BIN
assets/fonts/macos/Inter-ExtraLight.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraLight.woff2
Normal file
BIN
assets/fonts/macos/Inter-ExtraLight.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraLightItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-ExtraLightItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ExtraLightItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-ExtraLightItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Italic.woff
Normal file
BIN
assets/fonts/macos/Inter-Italic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Italic.woff2
Normal file
BIN
assets/fonts/macos/Inter-Italic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Light.woff
Normal file
BIN
assets/fonts/macos/Inter-Light.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Light.woff2
Normal file
BIN
assets/fonts/macos/Inter-Light.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-LightItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-LightItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-LightItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-LightItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Medium.woff
Normal file
BIN
assets/fonts/macos/Inter-Medium.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Medium.woff2
Normal file
BIN
assets/fonts/macos/Inter-Medium.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-MediumItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-MediumItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-MediumItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-MediumItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Regular.woff
Normal file
BIN
assets/fonts/macos/Inter-Regular.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Regular.woff2
Normal file
BIN
assets/fonts/macos/Inter-Regular.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-SemiBold.woff
Normal file
BIN
assets/fonts/macos/Inter-SemiBold.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-SemiBold.woff2
Normal file
BIN
assets/fonts/macos/Inter-SemiBold.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-SemiBoldItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-SemiBoldItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-SemiBoldItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-SemiBoldItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Thin.woff
Normal file
BIN
assets/fonts/macos/Inter-Thin.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-Thin.woff2
Normal file
BIN
assets/fonts/macos/Inter-Thin.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ThinItalic.woff
Normal file
BIN
assets/fonts/macos/Inter-ThinItalic.woff
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-ThinItalic.woff2
Normal file
BIN
assets/fonts/macos/Inter-ThinItalic.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-italic.var.woff2
Normal file
BIN
assets/fonts/macos/Inter-italic.var.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter-roman.var.woff2
Normal file
BIN
assets/fonts/macos/Inter-roman.var.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/macos/Inter.var.woff2
Normal file
BIN
assets/fonts/macos/Inter.var.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/windows/selawik.regular.ttf
Normal file
BIN
assets/fonts/windows/selawik.regular.ttf
Normal file
Binary file not shown.
1
assets/frameworks/loading-bar.min.js
vendored
Normal file
1
assets/frameworks/loading-bar.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
5
assets/json/import.js
Normal file
5
assets/json/import.js
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
import mimeTypes from "./mimeTypes.json" assert { type: "json" };
|
||||
|
||||
|
||||
console.log(mimeTypes);
|
||||
74
assets/json/mimeTypes.json
Normal file
74
assets/json/mimeTypes.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
".aac":"audio/aac",
|
||||
".abw":"application/x-abiword",
|
||||
".arc":"application/x-freearc",
|
||||
".avif":"image/avif",
|
||||
".avi":"video/x-msvideo",
|
||||
".azw":"application/vnd.amazon.ebook",
|
||||
".bin":"application/octet-stream",
|
||||
".bmp":"image/bmp",
|
||||
".bz":"application/x-bzip",
|
||||
".bz2":"application/x-bzip2",
|
||||
".cda":"application/x-cdf",
|
||||
".csh":"application/x-csh",
|
||||
".css":"text/css",
|
||||
".csv":"text/csv",
|
||||
".doc":"application/msword",
|
||||
".docx":"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
||||
".eot":"application/vnd.ms-fontobject",
|
||||
".epub":"application/epub+zip",
|
||||
".gz":"application/gzip",
|
||||
".gif":"image/gif",
|
||||
".htm, .html":"text/html",
|
||||
".ico":"image/vnd.microsoft.icon",
|
||||
".ics":"text/calendar",
|
||||
".jar":"application/java-archive",
|
||||
".jpeg, .jpg":"image/jpeg",
|
||||
".js":"text/javascript",
|
||||
".json":"application/json",
|
||||
".jsonld":"application/ld+json",
|
||||
".mid, .midi":"audio/midi, audio/x-midi",
|
||||
".mjs":"text/javascript",
|
||||
".mp3":"audio/mpeg",
|
||||
".mp4":"video/mp4",
|
||||
".mpeg":"video/mpeg",
|
||||
".mpkg":"application/vnd.apple.installer+xml",
|
||||
".odp":"application/vnd.oasis.opendocument.presentation",
|
||||
".ods":"application/vnd.oasis.opendocument.spreadsheet",
|
||||
".odt":"application/vnd.oasis.opendocument.text",
|
||||
".oga":"audio/ogg",
|
||||
".ogv":"video/ogg",
|
||||
".ogx":"application/ogg",
|
||||
".opus":"audio/opus",
|
||||
".otf":"font/otf",
|
||||
".png":"image/png",
|
||||
".pdf":"application/pdf",
|
||||
".php":"application/x-httpd-php",
|
||||
".ppt":"application/vnd.ms-powerpoint",
|
||||
".pptx":"application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
||||
".rar":"application/vnd.rar",
|
||||
".rtf":"application/rtf",
|
||||
".sh":"application/x-sh",
|
||||
".svg":"image/svg+xml",
|
||||
".tar":"application/x-tar",
|
||||
".tif, .tiff":"image/tiff",
|
||||
".ts":"video/mp2t",
|
||||
".ttf":"font/ttf",
|
||||
".txt":"text/plain",
|
||||
".vsd":"application/vnd.visio",
|
||||
".wav":"audio/wav",
|
||||
".weba":"audio/webm",
|
||||
".webm":"video/webm",
|
||||
".webp":"image/webp",
|
||||
".woff":"font/woff",
|
||||
".woff2":"font/woff2",
|
||||
".xhtml":"application/xhtml+xml",
|
||||
".xls":"application/vnd.ms-excel",
|
||||
".xlsx":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
".xml":"application/xml",
|
||||
".xul":"application/vnd.mozilla.xul+xml",
|
||||
".zip":"application/zip",
|
||||
".3gp":"video/3gpp",
|
||||
".3g2":"video/3gpp2",
|
||||
".7z":"application/x-7z-compressed"
|
||||
}
|
||||
362
assets/json/mimeTypesFull.json
Normal file
362
assets/json/mimeTypesFull.json
Normal file
@@ -0,0 +1,362 @@
|
||||
[
|
||||
{
|
||||
"extension":".aac",
|
||||
"description":"AAC audio",
|
||||
"minetype":"audio/aac"
|
||||
},
|
||||
{
|
||||
"extension":".abw",
|
||||
"description":"AbiWord document",
|
||||
"minetype":"application/x-abiword"
|
||||
},
|
||||
{
|
||||
"extension":".arc",
|
||||
"description":"Archive document (multiple files embedded)",
|
||||
"minetype":"application/x-freearc"
|
||||
},
|
||||
{
|
||||
"extension":".avif",
|
||||
"description":"AVIF image",
|
||||
"minetype":"image/avif"
|
||||
},
|
||||
{
|
||||
"extension":".avi",
|
||||
"description":"AVI: Audio Video Interleave",
|
||||
"minetype":"video/x-msvideo"
|
||||
},
|
||||
{
|
||||
"extension":".azw",
|
||||
"description":"Amazon Kindle eBook format",
|
||||
"minetype":"application/vnd.amazon.ebook"
|
||||
},
|
||||
{
|
||||
"extension":".bin",
|
||||
"description":"Any kind of binary data",
|
||||
"minetype":"application/octet-stream"
|
||||
},
|
||||
{
|
||||
"extension":".bmp",
|
||||
"description":"Windows OS/2 Bitmap Graphics",
|
||||
"minetype":"image/bmp"
|
||||
},
|
||||
{
|
||||
"extension":".bz",
|
||||
"description":"BZip archive",
|
||||
"minetype":"application/x-bzip"
|
||||
},
|
||||
{
|
||||
"extension":".bz2",
|
||||
"description":"BZip2 archive",
|
||||
"minetype":"application/x-bzip2"
|
||||
},
|
||||
{
|
||||
"extension":".cda",
|
||||
"description":"CD audio",
|
||||
"minetype":"application/x-cdf"
|
||||
},
|
||||
{
|
||||
"extension":".csh",
|
||||
"description":"C-Shell script",
|
||||
"minetype":"application/x-csh"
|
||||
},
|
||||
{
|
||||
"extension":".css",
|
||||
"description":"Cascading Style Sheets (CSS)",
|
||||
"minetype":"text/css"
|
||||
},
|
||||
{
|
||||
"extension":".csv",
|
||||
"description":"Comma-separated values (CSV)",
|
||||
"minetype":"text/csv"
|
||||
},
|
||||
{
|
||||
"extension":".doc",
|
||||
"description":"Microsoft Word",
|
||||
"minetype":"application/msword"
|
||||
},
|
||||
{
|
||||
"extension":".docx",
|
||||
"description":"Microsoft Word (OpenXML)",
|
||||
"minetype":"application/vnd.openxmlformats-officedocument.wordprocessingml.document"
|
||||
},
|
||||
{
|
||||
"extension":".eot",
|
||||
"description":"MS Embedded OpenType fonts",
|
||||
"minetype":"application/vnd.ms-fontobject"
|
||||
},
|
||||
{
|
||||
"extension":".epub",
|
||||
"description":"Electronic publication (EPUB)",
|
||||
"minetype":"application/epub+zip"
|
||||
},
|
||||
{
|
||||
"extension":".gz",
|
||||
"description":"GZip Compressed Archive",
|
||||
"minetype":"application/gzip"
|
||||
},
|
||||
{
|
||||
"extension":".gif",
|
||||
"description":"Graphics Interchange Format (GIF)",
|
||||
"minetype":"image/gif"
|
||||
},
|
||||
{
|
||||
"extension":".htm, .html",
|
||||
"description":"HyperText Markup Language (HTML)",
|
||||
"minetype":"text/html"
|
||||
},
|
||||
{
|
||||
"extension":".ico",
|
||||
"description":"Icon format",
|
||||
"minetype":"image/vnd.microsoft.icon"
|
||||
},
|
||||
{
|
||||
"extension":".ics",
|
||||
"description":"iCalendar format",
|
||||
"minetype":"text/calendar"
|
||||
},
|
||||
{
|
||||
"extension":".jar",
|
||||
"description":"Java Archive (JAR)",
|
||||
"minetype":"application/java-archive"
|
||||
},
|
||||
{
|
||||
"extension":".jpeg, .jpg",
|
||||
"description":"JPEG images",
|
||||
"minetype":"image/jpeg"
|
||||
},
|
||||
{
|
||||
"extension":".js",
|
||||
"description":"JavaScript",
|
||||
"minetype":"text/javascript (Specifications: HTML and RFC 9239)"
|
||||
},
|
||||
{
|
||||
"extension":".json",
|
||||
"description":"JSON format",
|
||||
"minetype":"application/json"
|
||||
},
|
||||
{
|
||||
"extension":".jsonld",
|
||||
"description":"JSON-LD format",
|
||||
"minetype":"application/ld+json"
|
||||
},
|
||||
{
|
||||
"extension":".mid, .midi",
|
||||
"description":"Musical Instrument Digital Interface (MIDI)",
|
||||
"minetype":"audio/midi, audio/x-midi"
|
||||
},
|
||||
{
|
||||
"extension":".mjs",
|
||||
"description":"JavaScript module",
|
||||
"minetype":"text/javascript"
|
||||
},
|
||||
{
|
||||
"extension":".mp3",
|
||||
"description":"MP3 audio",
|
||||
"minetype":"audio/mpeg"
|
||||
},
|
||||
{
|
||||
"extension":".mp4",
|
||||
"description":"MP4 video",
|
||||
"minetype":"video/mp4"
|
||||
},
|
||||
{
|
||||
"extension":".mpeg",
|
||||
"description":"MPEG Video",
|
||||
"minetype":"video/mpeg"
|
||||
},
|
||||
{
|
||||
"extension":".mpkg",
|
||||
"description":"Apple Installer Package",
|
||||
"minetype":"application/vnd.apple.installer+xml"
|
||||
},
|
||||
{
|
||||
"extension":".odp",
|
||||
"description":"OpenDocument presentation document",
|
||||
"minetype":"application/vnd.oasis.opendocument.presentation"
|
||||
},
|
||||
{
|
||||
"extension":".ods",
|
||||
"description":"OpenDocument spreadsheet document",
|
||||
"minetype":"application/vnd.oasis.opendocument.spreadsheet"
|
||||
},
|
||||
{
|
||||
"extension":".odt",
|
||||
"description":"OpenDocument text document",
|
||||
"minetype":"application/vnd.oasis.opendocument.text"
|
||||
},
|
||||
{
|
||||
"extension":".oga",
|
||||
"description":"OGG audio",
|
||||
"minetype":"audio/ogg"
|
||||
},
|
||||
{
|
||||
"extension":".ogv",
|
||||
"description":"OGG video",
|
||||
"minetype":"video/ogg"
|
||||
},
|
||||
{
|
||||
"extension":".ogx",
|
||||
"description":"OGG",
|
||||
"minetype":"application/ogg"
|
||||
},
|
||||
{
|
||||
"extension":".opus",
|
||||
"description":"Opus audio",
|
||||
"minetype":"audio/opus"
|
||||
},
|
||||
{
|
||||
"extension":".otf",
|
||||
"description":"OpenType font",
|
||||
"minetype":"font/otf"
|
||||
},
|
||||
{
|
||||
"extension":".png",
|
||||
"description":"Portable Network Graphics",
|
||||
"minetype":"image/png"
|
||||
},
|
||||
{
|
||||
"extension":".pdf",
|
||||
"description":"Adobe Portable Document Format (PDF)",
|
||||
"minetype":"application/pdf"
|
||||
},
|
||||
{
|
||||
"extension":".php",
|
||||
"description":"Hypertext Preprocessor (Personal Home Page)",
|
||||
"minetype":"application/x-httpd-php"
|
||||
},
|
||||
{
|
||||
"extension":".ppt",
|
||||
"description":"Microsoft PowerPoint",
|
||||
"minetype":"application/vnd.ms-powerpoint"
|
||||
},
|
||||
{
|
||||
"extension":".pptx",
|
||||
"description":"Microsoft PowerPoint (OpenXML)",
|
||||
"minetype":"application/vnd.openxmlformats-officedocument.presentationml.presentation"
|
||||
},
|
||||
{
|
||||
"extension":".rar",
|
||||
"description":"RAR archive",
|
||||
"minetype":"application/vnd.rar"
|
||||
},
|
||||
{
|
||||
"extension":".rtf",
|
||||
"description":"Rich Text Format (RTF)",
|
||||
"minetype":"application/rtf"
|
||||
},
|
||||
{
|
||||
"extension":".sh",
|
||||
"description":"Bourne shell script",
|
||||
"minetype":"application/x-sh"
|
||||
},
|
||||
{
|
||||
"extension":".svg",
|
||||
"description":"Scalable Vector Graphics (SVG)",
|
||||
"minetype":"image/svg+xml"
|
||||
},
|
||||
{
|
||||
"extension":".tar",
|
||||
"description":"Tape Archive (TAR)",
|
||||
"minetype":"application/x-tar"
|
||||
},
|
||||
{
|
||||
"extension":".tif, .tiff",
|
||||
"description":"Tagged Image File Format (TIFF)",
|
||||
"minetype":"image/tiff"
|
||||
},
|
||||
{
|
||||
"extension":".ts",
|
||||
"description":"MPEG transport stream",
|
||||
"minetype":"video/mp2t"
|
||||
},
|
||||
{
|
||||
"extension":".ttf",
|
||||
"description":"TrueType Font",
|
||||
"minetype":"font/ttf"
|
||||
},
|
||||
{
|
||||
"extension":".txt",
|
||||
"description":"Text, (generally ASCII or ISO 8859-n)",
|
||||
"minetype":"text/plain"
|
||||
},
|
||||
{
|
||||
"extension":".vsd",
|
||||
"description":"Microsoft Visio",
|
||||
"minetype":"application/vnd.visio"
|
||||
},
|
||||
{
|
||||
"extension":".wav",
|
||||
"description":"Waveform Audio Format",
|
||||
"minetype":"audio/wav"
|
||||
},
|
||||
{
|
||||
"extension":".weba",
|
||||
"description":"WEBM audio",
|
||||
"minetype":"audio/webm"
|
||||
},
|
||||
{
|
||||
"extension":".webm",
|
||||
"description":"WEBM video",
|
||||
"minetype":"video/webm"
|
||||
},
|
||||
{
|
||||
"extension":".webp",
|
||||
"description":"WEBP image",
|
||||
"minetype":"image/webp"
|
||||
},
|
||||
{
|
||||
"extension":".woff",
|
||||
"description":"Web Open Font Format (WOFF)",
|
||||
"minetype":"font/woff"
|
||||
},
|
||||
{
|
||||
"extension":".woff2",
|
||||
"description":"Web Open Font Format (WOFF)",
|
||||
"minetype":"font/woff2"
|
||||
},
|
||||
{
|
||||
"extension":".xhtml",
|
||||
"description":"XHTML",
|
||||
"minetype":"application/xhtml+xml"
|
||||
},
|
||||
{
|
||||
"extension":".xls",
|
||||
"description":"Microsoft Excel",
|
||||
"minetype":"application/vnd.ms-excel"
|
||||
},
|
||||
{
|
||||
"extension":".xlsx",
|
||||
"description":"Microsoft Excel (OpenXML)",
|
||||
"minetype":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
|
||||
},
|
||||
{
|
||||
"extension":".xml",
|
||||
"description":"XML",
|
||||
"minetype":"application/xml is recommended as of RFC 7303 (section 4.1), but text/xml is still used sometimes. You can assign a specific MIME type to a file with .xml extension depending on how its contents are meant to be interpreted. For instance, an Atom feed is application/atom+xml, but application/xml serves as a valid default."
|
||||
},
|
||||
{
|
||||
"extension":".xul",
|
||||
"description":"XUL",
|
||||
"minetype":"application/vnd.mozilla.xul+xml"
|
||||
},
|
||||
{
|
||||
"extension":".zip",
|
||||
"description":"ZIP archive",
|
||||
"minetype":"application/zip"
|
||||
},
|
||||
{
|
||||
"extension":".3gp",
|
||||
"description":"3GPP audio/video container",
|
||||
"minetype":"video/3gpp; audio/3gpp if it doesn't contain video"
|
||||
},
|
||||
{
|
||||
"extension":".3g2",
|
||||
"description":"3GPP2 audio/video container",
|
||||
"minetype":"video/3gpp2; audio/3gpp2 if it doesn't contain video"
|
||||
},
|
||||
{
|
||||
"extension":".7z",
|
||||
"description":"7-zip archive",
|
||||
"minetype":"application/x-7z-compressed"
|
||||
}
|
||||
]
|
||||
40
assets/production/index.html
Normal file
40
assets/production/index.html
Normal file
@@ -0,0 +1,40 @@
|
||||
<!doctype html>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="Description" content="Unify is an Nodejs Framework, Designed to make advanced next generation interactive applications." class="metaDescription" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<script src="/assets/bundle.js" type="module"></script>
|
||||
<script src="/3rdparty/chroma.js" ></script>
|
||||
|
||||
<link href="/assets/css/unify.css" rel="stylesheet">
|
||||
<link href="/assets/favicon.ico" rel="icon" type="image/x-icon">
|
||||
<link href="/assets/css/unify.css" rel="stylesheet">
|
||||
<link href="/assets/css/unify.css" rel="stylesheet">
|
||||
<link href="/assets/css/preloader.css" rel="stylesheet">
|
||||
<link href="/assets/css/preloader2.css" rel="stylesheet">
|
||||
|
||||
|
||||
<title>Unify</title>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div class="loadingBarPanel vertical-centered-box">
|
||||
|
||||
<div class="loader-circle"></div>
|
||||
<div class="loader-line-mask">
|
||||
<div class="loader-line"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="application" >
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
BIN
assets/uploads/cb55c6cc-2a95-4234-885b-cc9ffca8f1e7.avif
Normal file
BIN
assets/uploads/cb55c6cc-2a95-4234-885b-cc9ffca8f1e7.avif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.0 KiB |
Reference in New Issue
Block a user