This repository was archived by the owner on Feb 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpot.js.compiler.html
84 lines (80 loc) · 2.14 KB
/
pot.js.compiler.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pot.js + PotLite.js - Compiler - JavaScript Library</title>
<script src="pot.js"></script>
<script>
Pot.attach(window, 'load', function() {
var BUILD_URL = 'build.php';
var MINIFY_URL = 'minify.php';
var log = function(msg) {
var status = document.getElementById('status');
status.textContent += msg + '\n';
};
var script = {
full : '',
lite : '',
minify : {
full : '',
lite : ''
}
};
log('----------------------------');
log('[Begin] Compiling.');
log('----------------------------');
Pot.begin(function() {
log('Request: ' + BUILD_URL + ': full');
return Pot.request(BUILD_URL, {
queryString : {
debug : false,
type : 'full'
}
}).then(function(res) {
script.full = res.responseText;
log(Pot.sprintf('full: %d bytes.', Pot.utf8ByteOf(script.full)));
});
}).wait(5).speed('slow').then(function() {
log('Request: ' + BUILD_URL + ': lite');
return Pot.request(BUILD_URL, {
queryString : {
debug : false,
type : 'lite'
}
}).then(function(res) {
script.lite = res.responseText;
log(Pot.sprintf('lite: %d bytes.', Pot.utf8ByteOf(script.lite)));
});
}).wait(5).then(function() {
log('Request: ' + MINIFY_URL + ': full');
return Pot.request(MINIFY_URL, {
queryString : {
type : 'full'
}
}).then(function(res) {
script.minify.full = res.responseText;
log(Pot.sprintf('[minify] full: %s', script.minify.full));
});
}).wait(3.5).then(function() {
log('Request: ' + MINIFY_URL + ': lite');
return Pot.request(MINIFY_URL, {
queryString : {
type : 'lite'
}
}).then(function(res) {
script.minify.lite = res.responseText;
log(Pot.sprintf('[minify] lite: %s', script.minify.lite));
});
}).wait(1).then(function() {
log('----------------------------');
log('[End] Complete compiling.');
log('----------------------------');
}).end();
});
</script>
</head>
<body>
<h1>Pot.js - Compiler - JavaScript Library</h1>
<pre id="status"></pre>
</body>
</html>