@xcpcio/board-app 0.1.18
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/LICENSE +21 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.html +113 -0
- package/dist/umi.05aa07bc.js +1 -0
- package/dist/umi.bd64c248.css +1 -0
- package/package.json +63 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 XCPCIO
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/favicon.ico
ADDED
|
Binary file
|
package/dist/index.html
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<script>
|
|
6
|
+
function normalizePath(path) {
|
|
7
|
+
while (path.endsWith("/")) path = path.slice(0, -1);
|
|
8
|
+
return path + "/";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
var dataHost;
|
|
12
|
+
try {
|
|
13
|
+
dataHost = __DATA_HOST__;
|
|
14
|
+
} catch (e) {
|
|
15
|
+
dataHost = "/data/";
|
|
16
|
+
}
|
|
17
|
+
dataHost = normalizePath(dataHost);
|
|
18
|
+
window.dataHost = dataHost;
|
|
19
|
+
|
|
20
|
+
var title;
|
|
21
|
+
try {
|
|
22
|
+
title = __DEFAULT_TITLE__;
|
|
23
|
+
} catch (e) {
|
|
24
|
+
title = "Board - XCPCIO";
|
|
25
|
+
}
|
|
26
|
+
window.title = title;
|
|
27
|
+
document.title = title;
|
|
28
|
+
</script>
|
|
29
|
+
<meta name="keywords" content="icpc, ccpc, board, rank, standings" />
|
|
30
|
+
<meta
|
|
31
|
+
name="description"
|
|
32
|
+
content="XCPCIO-Board 主要收录 *CPC 系列竞赛的榜单。"
|
|
33
|
+
/>
|
|
34
|
+
<link
|
|
35
|
+
rel="shortcut icon"
|
|
36
|
+
type="image/x-icon"
|
|
37
|
+
href="__PUBLIC_PATH__/favicon.ico"
|
|
38
|
+
/>
|
|
39
|
+
<link rel="stylesheet" href="__PUBLIC_PATH__/umi.bd64c248.css" />
|
|
40
|
+
<script>
|
|
41
|
+
window.routerBase = "/";
|
|
42
|
+
</script>
|
|
43
|
+
<script>
|
|
44
|
+
window.publicPath = window.resourceBaseUrl || "__PUBLIC_PATH__/";
|
|
45
|
+
</script>
|
|
46
|
+
<script>
|
|
47
|
+
//! umi version: 3.5.41
|
|
48
|
+
</script>
|
|
49
|
+
</head>
|
|
50
|
+
|
|
51
|
+
<body>
|
|
52
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
53
|
+
<script>
|
|
54
|
+
try {
|
|
55
|
+
var baiduAnalyticsId = __BAIDU_ANALYTICS_ID__;
|
|
56
|
+
var _hmt = _hmt || [];
|
|
57
|
+
(function () {
|
|
58
|
+
var hm = document.createElement("script");
|
|
59
|
+
hm.src = `https://hm.baidu.com/hm.js?${baiduAnalyticsId}`;
|
|
60
|
+
var s = document.getElementsByTagName("script")[0];
|
|
61
|
+
s.parentNode.insertBefore(hm, s);
|
|
62
|
+
})();
|
|
63
|
+
} catch (e) {}
|
|
64
|
+
|
|
65
|
+
try {
|
|
66
|
+
var plausibleJSUrl = __PLAUSIBLE_JS_URL__;
|
|
67
|
+
var plausibleDataDomain = __PLAUSIBLE_DATA_DOMAIN__;
|
|
68
|
+
(function () {
|
|
69
|
+
var script = document.createElement("script");
|
|
70
|
+
script.src = plausibleJSUrl;
|
|
71
|
+
script.defer = true;
|
|
72
|
+
script.setAttribute("data-domain", plausibleDataDomain);
|
|
73
|
+
var s = document.getElementsByTagName("script")[0];
|
|
74
|
+
s.parentNode.insertBefore(script, s);
|
|
75
|
+
})();
|
|
76
|
+
} catch (e) {}
|
|
77
|
+
|
|
78
|
+
try {
|
|
79
|
+
var googleAnalyticsId = __GOOGLE_ANALYTICS_ID__;
|
|
80
|
+
(function () {
|
|
81
|
+
if (!location.port) {
|
|
82
|
+
(function (i, s, o, g, r, a, m) {
|
|
83
|
+
i["GoogleAnalyticsObject"] = r;
|
|
84
|
+
(i[r] =
|
|
85
|
+
i[r] ||
|
|
86
|
+
function () {
|
|
87
|
+
(i[r].q = i[r].q || []).push(arguments);
|
|
88
|
+
}),
|
|
89
|
+
(i[r].l = 1 * new Date());
|
|
90
|
+
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
|
|
91
|
+
a.async = 1;
|
|
92
|
+
a.src = g;
|
|
93
|
+
m.parentNode.insertBefore(a, m);
|
|
94
|
+
})(
|
|
95
|
+
window,
|
|
96
|
+
document,
|
|
97
|
+
"script",
|
|
98
|
+
"//www.google-analytics.com/analytics.js",
|
|
99
|
+
"ga"
|
|
100
|
+
);
|
|
101
|
+
ga("create", `${googleAnalyticsId}`, "auto");
|
|
102
|
+
ga("send", "pageview");
|
|
103
|
+
}
|
|
104
|
+
})();
|
|
105
|
+
} catch (e) {}
|
|
106
|
+
</script>
|
|
107
|
+
<center>
|
|
108
|
+
<div id="root"></div>
|
|
109
|
+
</center>
|
|
110
|
+
|
|
111
|
+
<script src="__PUBLIC_PATH__/umi.05aa07bc.js"></script>
|
|
112
|
+
</body>
|
|
113
|
+
</html>
|