-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
142 lines (114 loc) · 3.7 KB
/
help.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!-- help.html -->
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help</title>
<link rel="icon" href="static/icon.png">
<link rel="stylesheet" href="css/help.css">
</head>
<body>
<h1>How to use the Commands?</h1>
<hr><br>
<table>
<tr>
<th>command</th>
<th>description</th>
<!-- <th>example</th> -->
</tr>
<tr><td class="sep" colspan="3"></td></tr>
<tr>
<td class="command">cube [cube]</td>
<td>change cube</td>
<td class="example">cube 3</td>
</tr>
<tr>
<td class="command">next</td>
<td>next scramble</td>
<td class="example">next</td>
</tr>
<tr>
<td class="command">punish [+2 / DNF]</td>
<td>set punish to current solve <br> leave empty for clear punish</td>
<td class="example">punish dnf</td>
</tr>
<tr><td class="sep" colspan="3"></td></tr>
<tr>
<td class="command">view [index]</td>
<td>view solve to no. [index]</td>
<td class="example">view 13</td>
</tr>
<tr>
<td class="command">edit punish [index] [+2 / DNF]</td>
<td>set punish to solve no. [index] <br> leave empty to clear punish</td>
<td class="example">edit punish 13 dnf</td>
</tr>
<tr>
<td class="command">remove [idx]</td>
<td>remove solve no. [idx] (support negative index)</td>
<td class="example">remove 13</td>
</tr>
<tr>
<td class="command">remove [idx1]~[idx2]</td>
<td>remove solve from [idx1] to [idx2]</td>
<td class="example">remove 7~13</td>
</tr>
<tr><td class="sep" colspan="3"></td></tr>
<tr>
<td class="command">copy { scramble / sc }</td>
<td>copy current scramble</td>
<td class="example">copy sc</td>
</tr>
<tr>
<td class="command">copy { time / tm }</td>
<td>copy current solve time</td>
<td class="example">copy time</td>
</tr>
<tr><td class="sep" colspan="3"></td></tr>
<tr>
<td class="command">session { change / = } [name]</td>
<td>switch between sessions</td>
<td class="example">session = default</td>
</tr>
<tr>
<td class="command">session { add / + } [name]</td>
<td>add new session</td>
</tr>
<tr>
<td class="command">session { remove / - } [name]</td>
<td>remove existed session</td>
</tr>
<tr><td class="sep" colspan="3"></td></tr>
<tr>
<td class="command">export</td>
<td>export sessions as a json file</td>
</tr>
<tr>
<td class="command">import</td>
<td>import sessions from a json file</td>
</tr>
<tr>
<td class="command">restore</td>
<td>restore sessions from the <bbr> auto backup last import</td>
</tr>
<tr><td class="sep" colspan="3"><br></td></tr>
<tr>
<td class="command">version</td>
<td>show version</td>
</tr>
<tr>
<td class="command">reload<hr>refresh</td>
<td>refresh page</td>
</tr>
<tr>
<td class="command">reset</td>
<td>reset page</td>
</tr>
<tr>
<td class="command">help</td>
<td>show this page</td>
</tr>
</table>
<br><br><br>
</body>
</html>