-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.html
114 lines (112 loc) · 4.4 KB
/
settings.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
<!DOCTYPE HTML>
<!--
Landed by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>MCBBS助手设置页面</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body>
<div id="page-wrapper">
<header id="header">
<h1 id="logo"><a href="index.html">MCBBS助手</a></h1>
<nav id="nav">
<ul>
<li><a href="settings.html">基础设置</a></li>
<li style="display: none;"><a href="elements.html">版主助手</a></li>
<li style="display: none;"><a href="#" class="button special">关于</a></li>
</ul>
</nav>
</header>
<div class="container">
<section>
<h3>推送设置</h3>
<div class="6u 12u$(medium)">
<input type="checkbox" id="cb_NoticePush" name="checkboxSetting">
<label for="cb_NoticePush">开启新提醒推送</label>
</div>
<div class="6u 12u$(medium)">
<input type="checkbox" id="cb_HotThreadPush" name="checkboxSetting">
<label for="cb_HotThreadPush">开启热门贴推送</label>
</div>
</section>
</div>
</div>
<div id="adminPage" class="container" style="display: none;">
<div class="6u 12u$(medium)">
<h3>版主版块监控</h3>
<div class="6u 12u$(medium)">
<input type="checkbox" id="cb_watchDog_theme" name="cb_watchDog_theme">
<label for="cb_watchDog_theme">开启版块新主题监控</label>
</div>
<div class="6u 12u$(medium)">
<input type="checkbox" id="cb_watchDog_reply" name="cb_watchDog_reply">
<label for="cb_watchDog_reply">开启版块新回复监控</label>
</div>
<ul class="actions">
<li>自动刷新时间:</li>
<li><input type="text" name="name" id="name" value="" style="width: 70px;height: 30px" /></li>
<li>分钟</li>
</ul>
<textarea name="message" id="message" placeholder="输入监控词(回车换行),触发监控词的帖子将会自动添加到可疑帖子列表中,支持正则" rows="6"></textarea>
</br>
<!-- 通过http://www.mcbbs.net/api/mobile/index.php?module=forumnav 获取版块列表 -->
<select name="category" id="category">
<option value="">-请选择你所管理的版块-</option>
</select>
</br>
<!-- 仅会保存最近100个帖子或回复,避免内存爆炸。可以通过开关来筛选显示全部最新帖子还是进入监控的可疑帖子 -->
<table>
<thead>
<tr>
<th>帖子tid</th>
<th>标题</th>
<th>时间</th>
<th>链接</th>
</tr>
</thead>
<tbody>
<tr>
<td>1024</td>
<td>啊!这是一个帖子标题哦!</td>
<td>2015年5月</td>
<td><a href="">链接</a></td>
</tr>
<tr>
<td>1024132</td>
<td>啊!这是另一个帖子标题哦!</td>
<td>2015年5月</td>
<td><a href="">链接</a></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>总共有1个可疑帖子</td>
</tr>
</tfoot>
</table>
</div>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
<script src="user.js"></script>
<script src="resource.js"></script>
<script src="core.js"></script>
<script src="settings.js"></script>
</body>
</html>