mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-01 05:08:05 -06:00
Started code reorganizing (Moved libtorrent specific files and webui files to subfolders)
This commit is contained in:
105
src/webui/html/prop-general.html
Normal file
105
src/webui/html/prop-general.html
Normal file
@@ -0,0 +1,105 @@
|
||||
<fieldset>
|
||||
<legend><b>_(Transfer)</b></legend>
|
||||
<table>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Uploaded:)</td><td style="padding-right: 20px;" id="total_uploaded">0 Kb</td><td style="text-align:right; padding: 4px;">_(UP limit:)</td><td style="padding-right: 20px;" id="up_limit">xx</td><td style="text-align:right; padding: 4px;">_(Share ratio:)</td><td id="share_ratio">xx</td></tr>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Downloaded:)</td><td style="padding-right: 20px;" id="total_downloaded">0 Kb</td><td style="text-align:right; padding: 4px;">_(DL limit:)</td><td style="padding-right: 20px;" id="dl_limit">xx</td><td style="text-align:right; padding: 4px;">_(Connections:)</td><td id="nb_connections">xx</td></tr>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Wasted:)</td><td style="padding-right: 20px;" id="total_wasted">0 Kb</td><td style="text-align:right; padding: 4px;">_(Time elapsed:)</td><td style="padding-right: 20px;" id="time_elapsed">xx</td><td></td></tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend><b>_(Information)</b></legend>
|
||||
<table>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Save path:)</td><td id="save_path">xxx</td></tr>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Created on:)</td><td id="creation_date">xxx</td></tr>
|
||||
<tr><td style="text-align:right; padding: 4px;">_(Torrent hash:)</td><td id="torrent_hash">xxx</td></tr>
|
||||
<tr><td style="vertical-align: top; padding: 4px; text-align:right;">
|
||||
<br/>
|
||||
_(Comment:)
|
||||
</td><td>
|
||||
<textarea name="comment" id="comment" rows="15" cols="80">
|
||||
xxx
|
||||
</textarea>
|
||||
</td></tr>
|
||||
</table>
|
||||
<br/>
|
||||
</fieldset>
|
||||
|
||||
<!--
|
||||
static information: save_path, creation_date, torrent_hash, comment
|
||||
|
||||
dynamic information: total_downloaded, total_uploaded, total_wasted, up_limit, dl_limit, time_elapsed, share_ratio, nb_connections
|
||||
|
||||
-->
|
||||
|
||||
<script type="text/javascript">
|
||||
var waiting=false;
|
||||
|
||||
var clearData = function() {
|
||||
$('torrent_hash').set('html', '');
|
||||
$('save_path').set('html', '');
|
||||
$('creation_date').set('html', '');
|
||||
$('comment').set('html', '');
|
||||
$('total_uploaded').set('html', '');
|
||||
$('total_downloaded').set('html', '');
|
||||
$('total_wasted').set('html', '');
|
||||
$('up_limit').set('html', '');
|
||||
$('dl_limit').set('html', '');
|
||||
$('time_elapsed').set('html', '');
|
||||
$('nb_connections').set('html', '');
|
||||
$('share_ratio').set('html', '');
|
||||
}
|
||||
|
||||
var loadData = function() {
|
||||
if(!$defined($('torrent_hash'))) {
|
||||
// Tab changed
|
||||
return;
|
||||
}
|
||||
var current_hash = myTable.getCurrentTorrentHash();
|
||||
if(current_hash == "") {
|
||||
clearData();
|
||||
loadData.delay(1500);
|
||||
return;
|
||||
}
|
||||
// Display hash
|
||||
$('torrent_hash').set('html', current_hash);
|
||||
var url = 'json/propertiesGeneral/'+current_hash;
|
||||
if (!waiting) {
|
||||
waiting=true;
|
||||
var request = new Request.JSON({
|
||||
url: url,
|
||||
noCache: true,
|
||||
method: 'get',
|
||||
onFailure: function() {
|
||||
$('error_div').set('html', 'qBittorrent client is not reachable');
|
||||
waiting=false;
|
||||
loadData.delay(2000);
|
||||
},
|
||||
onSuccess: function(data) {
|
||||
$('error_div').set('html', '');
|
||||
if(data){
|
||||
// Update Torrent data
|
||||
$('save_path').set('html', data.save_path);
|
||||
$('creation_date').set('html', data.creation_date);
|
||||
$('comment').set('html', data.comment);
|
||||
$('total_uploaded').set('html', data.total_uploaded);
|
||||
$('total_downloaded').set('html', data.total_downloaded);
|
||||
$('total_wasted').set('html', data.total_wasted);
|
||||
$('up_limit').set('html', data.up_limit);
|
||||
$('dl_limit').set('html', data.dl_limit);
|
||||
$('time_elapsed').set('html', data.time_elapsed);
|
||||
$('nb_connections').set('html', data.nb_connections);
|
||||
$('share_ratio').set('html', data.share_ratio);
|
||||
} else {
|
||||
clearData();
|
||||
}
|
||||
waiting=false;
|
||||
loadData.delay(1500);
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
|
||||
}
|
||||
// Initial loading
|
||||
loadData();
|
||||
</script>
|
||||
Reference in New Issue
Block a user