-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.html
49 lines (47 loc) · 1.66 KB
/
client.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
<html>
<head>
<title>Movie Search</title>
<link rel="stylesheet" type="text/css" href="client.css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="client.js"></script>
</head>
<body>
<div class="topbar">
<input type="text" id="search" />
<div id="filters"> </div>
<div id="controlButton">
<a href='#' id="toggleControls" class="floatLeft">Advanced</a>
<div id="indicator"> </div>
</div class="clear"> </div>
</div>
</div>
<div id="result">
results
</div>
<div id='controlMenu' class='hidden'>
<div>docs : <span id='docs'> </span></div>
<div>time : <span id='time'> </span></div>
<div>need resolve : <span id='needResolve'> </span></div>
<div>resolving : <span id='resolving'> </span></div>
<div id='imdb' class='hidden'>
<hr />
<div>done : <span id='resolveDone'> </span></div>
<div>waiting : <span id='resolveWaiting'> </span></div>
<div>queue : <span id='resolveQueue'> </span></div>
<div>errors : <span id='resolveErrors'> </span></div>
<div>httpHits : <span id='resolveHits'> </span></div>
<div>progress : <span id='resolveProgress'> </span></div>
<hr />
</div>
<div>scan folders: <a href='#' id='scan'>start</a></div>
<div>imdb resolve:
<a href='#' id='resolveStart'>start</a> /
<a href='#' id='resolveStop'>stop</a>
</div>
<div>update index: <a href='#' id='index'>start</a></div>
<div>write store: <a href='#' id='save'>start</a></div>
<div>player path: <a href='#' id='player'>update</a></div>
<div>movie path modifier: <a href='#' id='moviePathModifier'>update</a></div>
</div>
</body>
</html>