-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathviewThreads.cfm
More file actions
55 lines (46 loc) · 1.37 KB
/
viewThreads.cfm
File metadata and controls
55 lines (46 loc) · 1.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<title>ColdThumbs v2</title>
</head>
<body>
<div class="row">
<div class="col-12">
<cfoutput>
<h3>Threads</h3>
<hr />
<div class="card">
<div class="card-header">
Running
</div>
<ul class="list-group list-group-flush">
<cfloop collection="#Application.com.ColdThumbs.getRunningThreads()#" item="ThisRunningThread">
<li class="list-group-item">#ThisRunningThread#</li>
</cfloop>
</ul>
</div>
<hr />
<div class="card">
<div class="card-header">
Queued
</div>
<ul class="list-group list-group-flush">
<cfloop collection="#Application.com.ColdThumbs.getQueuedThreads()#" item="ThisQueuedThread">
<li class="list-group-item">#ThisQueuedThread#</li>
</cfloop>
</ul>
</div>
</cfoutput>
</div>
</div>
<script type="text/javascript">
setTimeout(function () {
location.reload();
}, 2 * 1000);
</script>
</body>
</html>