-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (59 loc) · 2.3 KB
/
index.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta property="og:title" content="BCDice-API バージョン一覧">
<meta property="og:type" content="website">
<meta property="og:url" content="https://api-status.bcdice.org">
<title>BCDice-API バージョン一覧</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="https://bcdice.org/image/bcdice-logo.png">
</head>
<body>
<article class="container">
<h1>BCDice-API バージョン一覧</h1>
<p>
BCDice-API が動作しているサーバから、WebAPI (BCDice-API) と ダイスボット (BCDice 本体) のバージョンを取得します。
</p>
<p>
使いたい「サーバ名」をクリックすると、API のエンドポイントをクリップボードに格納(コピー)します。
</p>
<p id="header">
サーバの一覧は<a href="https://github.com/bcdice/bcdice-api-servers">BCDice-API の公開サーバー一覧</a>から取得しています。<br>
</p>
<p>
<span id="status-title">状態: </span>
<span id="status">JavaScript が無効になっているか、サポートされていないブラウザです。</span>
</p>
<table class="main-table" id="main-table">
<thead>
<tr>
<th class="server-name">サーバ名(エンドポイント)</th>
<th class="api-version">API</th>
<th class="lib-version">BCDice</th>
<th class="response-time">応答時間</th>
<th class="admin" colspan="3">管理者情報</th>
</tr>
<tr id="latest-release">
<td class="server-name">最新のリリース</td>
<td class="api-version target"></td>
<td class="lib-version target"></td>
<td class="none">-</td>
<td class="none" colspan="3">-</td>
</tr>
</thead>
<tbody id="versions">
</tbody>
</table>
<p>
使いたい「サーバ名」をクリックすると、API のエンドポイントをクリップボードに格納(コピー)します。
</p>
<footer>
<p>© 2020 BCDice Project</p>
</footer>
</article>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/3.7.0/js-yaml.min.js"></script>
<script type="text/javascript" src="api-status.js"></script>
</body>
</html>