forked from andaok/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.tmp
More file actions
169 lines (137 loc) · 5.24 KB
/
index.html.tmp
File metadata and controls
169 lines (137 loc) · 5.24 KB
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Bootstrap Demo</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/CacheFlush.js"></script>
<script>
$(document).ready(function(){
//$("#xiha").hide();
})
</script>
<style type="text/css">
h1, h2, h3, .masthead p, .subhead p, .marketing h2, .lead {font-family: "Helvetica Neue",Helvetica,Arial,"Microsoft Yahei UI","Microsoft YaHei",SimHei,"宋体",simsun,sans-serif;font-weight: normal;}
.leftdiv{
background-color: #FFFFFF;
width: 20%;
float: left;
height: 600px;
border-radius: 3px 3px 3px 3px;
}
.rightdiv{
margin-left: 2.5%;
width: 44.5%;
float: left;
background-color: #FFFFFF;
height: 600px;
border-radius: 3px 3px 3px 3px;
}
.testdiv{
margin-left: 0;
width: 33.5%;
float: left;
background-color: #FFFFFF;
height: 600px;
border-radius: 3px 3px 3px 3px;
}
div.panel{
margin:0px;
padding:0px;
text-align:left;
height:auto;
width:auto;
}
div#ShowSquid,div#CacheFlushingDiv
{
display:none;
}
</style>
</head>
<body style="margin:20px 20px 20px 20px;">
<div class="container-fluid">
<div class="row-fluid">
<div class="span2 leftdiv">
<!--Sidebar content-->
<div style="max-width: 340px; padding: 8px 0pt;" class="well">
<ul class="nav nav-list">
<li class="nav-header">Cache Flush</li>
<li class="divider"></li>
<li><a id="CacheFlushNav" href="#">Cache Flush</a></li>
<li><a id="CacheFlushingNav" href="#">Cache Flushing</a></li>
<li><a href="#">Wait Flush</a></li>
<li class="divider"></li>
<li class="nav-header">Interval Flush Switch</li>
<button id="IntChkOn" type="button" class="btn btn-primary btn-small">ON</button>
<button id="IntChkOff" type="button" class="btn btn-primary btn-small" disabled>OFF</button>
<li class="divider"></li>
<li><a href="#">Help</a></li>
</ul>
</div>
</div>
<div id="xiha" class="span4 -offset2 rightdiv">
<!--Body content-->
<div style="max-width: 600px; padding: 8px 0pt;" class="well">
<!-- Cache Flush Div -->
<div id="CacheFlushDiv">
<div>
<!-- radio inline -->
<form>
<div class="form-inline">
<div class="controls-row">
<label class="radio inline">
<input type="radio" name="urlstype" value=0 checked/>File
</label>
<label class="radio inline">
<input type="radio" name="urlstype" value=1 />Dir
</label>
</div>
</div>
</form>
<textarea id="urls" rows="10" class="input-block-level" style="margin:0;padding:0;"></textarea> <br/>
<button id="FlushSquid" type="button" class="btn btn-primary btn-small">FlushSquid</button>
<button id="FlushCDN" type="button" class="btn btn-primary btn-small" >FlushCDN</button>
</div>
<!-- Squid Output Show -->
<div id="ShowSquid" class="panel">
<pre></pre>
</div>
</div>
<!-- Cache Flush Div End -->
<!-- Cache Flushing Div -->
<div id="CacheFlushingDiv" class="panel">
<table class="table table-condensed table-bordered">
<thead>
<tr>
<td>ID</td>
<td>URL</td>
<td>STATUS</td>
<td>ACTION</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div>
<!-- Cache Flushing Div End -->
<!-- Wait Flush Div -->
<div id="WaitFlushDiv" class="panel">
</div>
<!-- Wait Flush Div End -->
</div>
</div>
</div>
</div>
<!-- test -->
<div class="span4 testdiv">
<div style="max-width: 600px; padding: 8px 0pt;" class="well">
<pre>12345zxcxzccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc</pre>
<textarea id="urls" rows="10" class="input-block-level" style="margin:0;padding:0;"></textarea> <br/>
</div>
</div>
<!-- test -->
</body>
</html>