forked from Novik/ruTorrent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
260 lines (260 loc) · 13.7 KB
/
index.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!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>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<meta http-equiv="cache-control" content="no-cache" />
<link href="./images/favicon.ico" rel="SHORTCUT ICON" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="./images/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="./images/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="./images/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="./images/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="./images/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="./images/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="./images/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="./images/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="./images/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="./images/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="./images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./images/favicon-16x16.png" sizes="16x16" />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="./images/mstile-144x144.png" />
<link href="./css/stable.css" rel="stylesheet" type="text/css" />
<style type="text/css">
@import "./css/style.css";
</style>
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./lang/langs.js"></script>
<script type="text/javascript" src="./js/common.js"></script>
<script type="text/javascript" src="./js/objects.js"></script>
<script type="text/javascript" src="./js/content.js"></script>
<script type="text/javascript" src="./js/stable.js"></script>
<!--[if lt IE 9]><script type="text/javascript" src="./js/excanvas.js"></script><![endif]-->
<script type="text/javascript" src="./js/jquery.flot.js"></script>
<script type="text/javascript" src="./js/graph.js"></script>
<script type="text/javascript" src="./js/plugins.js"></script>
<script type="text/javascript" src="./js/webui.js"></script>
<script type="text/javascript" src="./js/rtorrent.js"></script>
</head>
<body>
<div id="preload"></div>
<div id="cover">
<div id="msg"><span id="loadimg"> </span><script type="text/javascript"> document.write(theUILang.Loading); </script></div>
</div>
<div id="modalbg"></div>
<div id="dragmask"></div>
<div id="rs"></div>
<div id="sel"></div>
<div id="sc"></div>
<div id="t"><a id="mnu_add" href="javascript://void();" onclick="theWebUI.showAdd(); return(false);" onfocus="this.blur()" title="Add Torrent...">
<div id="add"></div>
</a>
<div class="TB_Separator"></div>
<a id="mnu_remove" href="javascript://void();" onclick="theWebUI.remove(); return(false);" onfocus="this.blur()" title="Remove">
<div id="remove"></div>
</a>
<div class="TB_Separator"></div>
<a id="mnu_start" href="javascript://void();" onclick="theWebUI.start(); return(false);" onfocus="this.blur()" title="Start">
<div id="start"></div>
</a><a id="mnu_pause" href="javascript://void();" onclick="theWebUI.pause(); return(false);" onfocus="this.blur()" title="Pause">
<div id="pause"></div>
</a><a id="mnu_stop" href="javascript://void();" onclick="theWebUI.stop(); return(false);" onfocus="this.blur()" title="Stop">
<div id="stop"></div>
</a>
<div class="TB_Separator"></div>
<a id="mnu_settings" href="javascript://void();" onclick="theWebUI.showSettings(); return(false);" onfocus="this.blur()" title="Settings">
<div id="setting"></div>
</a>
<div class="TB_Separator"></div>
<a id="mnu_help" href="javascript://void();" onclick="theDialogManager.toggle('dlgHelp'); return(false);" onfocus="this.blur()" title="Help">
<div id="help"></div>
</a>
<table id='rc' cellpadding="0" cellspacing="0"><tr id='rrow'>
<td>
<a id="mnu_search" class="top-menu-item" href="javascript://void();" onclick="theSearchEngines.show(); return(false);" onfocus="this.blur()" title="Search">
<div id="search" class="top-menu-item"></div>
</a>
</td>
<td>
<input type="text" class="TextboxMid" id="query" onfocus="$('#sc').hide();"/>
</td>
<td>
<a id="mnu_go" href="javascript://void();" onclick="theSearchEngines.run(); return(false);" onfocus="this.blur()" title="Go">
<div id="go"></div>
</a>
</td>
<td>
<div id="ind"></div>
</td>
</tr></table>
</div>
<table id="maincont" cellpadding="0" cellspacing="0" summary="layout table">
<tr>
<td class="uicell" rowspan="3">
<div id="CatList">
<div class="catpanel" id="pstate" onclick="theWebUI.togglePanel(this); return(false);"><script type="text/javascript"> document.write(theUILang.pnlState); </script></div>
<ul id="pstate_cont" class="catpanel_cont">
<li id="-_-_-all-_-_-" class="sel cat">
<script type="text/javascript"> document.write(theUILang.All); </script> (<span id="-_-_-all-_-_-c">0</span>)</li>
<li id="-_-_-dls-_-_-" class="cat">
<script type="text/javascript"> document.write(theUILang.Downloading); </script> (<span id="-_-_-dls-_-_-c">0</span>)</li>
<li id="-_-_-com-_-_-" class="cat">
<script type="text/javascript"> document.write(theUILang.Finished); </script> (<span id="-_-_-com-_-_-c">0</span>)</li>
<li id="-_-_-act-_-_-" class="cat">
<script type="text/javascript"> document.write(theUILang.Active); </script> (<span id="-_-_-act-_-_-c">0</span>)</li>
<li id="-_-_-iac-_-_-" class="cat">
<script type="text/javascript"> document.write(theUILang.Inactive); </script> (<span id="-_-_-iac-_-_-c">0</span>)</li>
<li id="-_-_-err-_-_-" class="cat">
<script type="text/javascript"> document.write(theUILang.Error); </script> (<span id="-_-_-err-_-_-c">0</span>)</li>
</ul>
<div class="catpanel" id="plabel" onclick="theWebUI.togglePanel(this); return(false);"><script type="text/javascript"> document.write(theUILang.Labels); </script></div>
<div class="catpanel_cont" id="plabel_cont">
<ul>
<li id="-_-_-nlb-_-_-" class="cat">
<script type="text/javascript"> document.write(theUILang.No_label); </script> (<span id="-_-_-nlb-_-_-c">0</span>)</li>
</ul>
<ul id="lbll">
</ul>
</div>
<div class="catpanel" id="flabel" onclick="theWebUI.togglePanel(this); return(false);"><script type="text/javascript"> document.write(theUILang.mnu_search); </script></div>
<div class="catpanel_cont" id="flabel_cont">
<ul id="lblf">
</ul>
</div>
</div>
</td>
<td class="uicell" rowspan="3">
<div id="HDivider"></div><div id="dividerDrag"></div>
</td>
<td class="uicell">
<div id="List" class="table_tab"></div>
</td>
</tr>
<tr>
<td class="uicell">
<div id="VDivider"></div>
</td>
</tr>
<tr>
<td class="uicell">
<div id="tdetails">
<ul id="tabbar" class="tabbar">
</ul>
<div id="tdcont">
<div id="gcont" class="tab">
<table cellpadding="5" cellspacing="2" width="100%" summary="layout table" id="mainlayout">
<tr>
<td colspan="6" class="Header">
<script type="text/javascript"> document.write(theUILang.Transfer); </script></td>
</tr>
<tr>
<td width="6%" nowrap><script type="text/javascript"> document.write(theUILang.Time_el); </script>:</td><td width="11%" nowrap><span id="et" class="det"></span></td>
<td width="6%" nowrap><script type="text/javascript"> document.write(theUILang.Remaining); </script>:</td><td width="11%" nowrap><span id="rm" class="det"></span></td>
<td width="6%" nowrap><script type="text/javascript"> document.write(theUILang.Share_ratio); </script>:</td><td width="11%" nowrap><span id="ra" class="det"></span></td>
</tr>
<tr>
<td width="6%" nowrap><script type="text/javascript"> document.write(theUILang.Downloaded); </script>:</td><td width="11%" nowrap><span id="dl" class="det"></span></td>
<td width="6%" nowrap><script type="text/javascript"> document.write(theUILang.Down_speed); </script>:</td><td width="11%" nowrap><span id="ds" class="det"></span></td>
<td width="6%" nowrap><script type="text/javascript"> document.write(theUILang.Wasted); </script>:</td><td width="11%" nowrap><span id="wa" class="det"></span></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Uploaded); </script>:</td><td nowrap><span id="ul" class="det"></span></td>
<td nowrap><script type="text/javascript"> document.write(theUILang.Ul_speed); </script>:</td><td nowrap><span id="us" class="det"></span></td>
<td nowrap> </td><td nowrap> </td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Seeds); </script>:</td><td nowrap><span id="se" class="det"></span></td>
<td nowrap><script type="text/javascript"> document.write(theUILang.Peers); </script>:</td><td nowrap><span id="pe" class="det"></span></td>
<td nowrap> </td><td> </td>
</tr>
<tr>
<td colspan="6" class="Header">
<script type="text/javascript"> document.write(theUILang.Tracker); </script></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Track_URL); </script>:</td>
<td colspan="5" nowrap><span id="tu" class="det"></span></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Track_status); </script>:</td>
<td colspan="5" nowrap><span id="ts" class="det"></span></td>
</tr>
<tr>
<td colspan="6" class="Header">
<script type="text/javascript"> document.write(theUILang.General); </script></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Save_as); </script>:</td>
<td colspan="5" nowrap><span id="bf" class="det"></span></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Free_Disk_Space); </script>:</td>
<td colspan="5" nowrap><span id="dsk" class="det"></span></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Created_on); </script>:</td>
<td colspan="5" nowrap><span id="co" class="det"></span></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Hash); </script>:</td>
<td colspan="5" nowrap><span id="hs" class="det"></span></td>
</tr>
<tr>
<td nowrap><script type="text/javascript"> document.write(theUILang.Comment); </script>:</td>
<td colspan="5"><span id="cmt" class="det"></span></td>
</tr>
</table>
</div>
<div id="FileList" class="table_tab"></div>
<div id="TrackerList" class="table_tab"></div>
<div id="PeerList" class="table_tab"></div>
<div id="Speed" class="graph_tab"></div>
<div id="PluginList" class="table_tab"></div>
<div id="lcont" class="tab"></div>
</div>
</div>
</td>
</tr>
<tr>
<td class="uicell" colspan=3>
<div id="StatusBar">
<table cellpadding="0" cellspacing="0">
<tr id="firstStatusRow">
<td>
<table id="st_up" class="statuscell" cellpadding="0" cellspacing="0">
<tr>
<td><div class="sthdr"><script type="text/javascript"> document.write(theUILang.Speed); </script>:</div></td><td><div class="stval" id="stup_speed"></div></td>
<td><div class="sthdr"><script type="text/javascript"> document.write(theUILang.limit); </script>:</div></td><td><div class="stval" id="stup_limit"></div></td>
<td><div class="sthdr"><script type="text/javascript"> document.write(theUILang.Total); </script>:</div></td><td><div class="stval" id="stup_total"></div></td>
</tr>
</table>
</td>
<td>
<table id="st_down" class="statuscell" cellpadding="0" cellspacing="0">
<tr>
<td><div class="sthdr"><script type="text/javascript"> document.write(theUILang.Speed); </script>:</div></td><td><div class="stval" id="stdown_speed"></div></td>
<td><div class="sthdr"><script type="text/javascript"> document.write(theUILang.limit); </script>:</div></td><td><div class="stval" id="stdown_limit"></div></td>
<td><div class="sthdr"><script type="text/javascript"> document.write(theUILang.Total); </script>:</div></td><td><div class="stval" id="stdown_total"></div></td>
</tr>
</table>
</td>
<td>
<table id="st_system" class="statuscell" cellpadding="0" cellspacing="0">
<tr>
<td><div class="sthdr">rTorrent:</div></td><td><div class="stval" id="rtorrentv"></div></td>
</tr>
</table>
</td>
<td class="statuscell">
<div class="stval" id="servertime"></div>
</td>
<td width=100%></td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>