2010-12-15 22:51:19 +03:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title>_(Deletion confirmation - qBittorrent)</title>
|
|
|
|
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
|
|
|
<script type="text/javascript" src="scripts/mootools-1.2-core-yc.js" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript" src="scripts/mootools-1.2-more.js" charset="utf-8"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
function $get(key,url){
|
|
|
|
if(arguments.length < 2) url =location.href;
|
|
|
|
if(arguments.length > 0 && key != ""){
|
|
|
|
if(key == "#"){
|
|
|
|
var regex = new RegExp("[#]([^$]*)");
|
|
|
|
} else if(key == "?"){
|
|
|
|
var regex = new RegExp("[?]([^#$]*)");
|
|
|
|
} else {
|
|
|
|
var regex = new RegExp("[?&]"+key+"=([^&#]*)");
|
|
|
|
}
|
|
|
|
var results = regex.exec(url);
|
|
|
|
return (results == null )? "" : results[1].replace(/%22/g, "'");
|
|
|
|
} else {
|
|
|
|
url = url.split("?");
|
|
|
|
var results = {};
|
|
|
|
if(url.length > 1){
|
|
|
|
url = url[1].split("#");
|
|
|
|
if(url.length > 1) results["hash"] = url[1];
|
|
|
|
url[0].split("&").each(function(item,index){
|
|
|
|
item = item.split("=");
|
|
|
|
results[item[0]] = item[1].replace(/%22/g, "'");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var hashes = JSON.decode($get('hashes'));
|
|
|
|
|
|
|
|
window.addEvent('domready', function(){
|
|
|
|
$('cancelBtn').focus();
|
|
|
|
$('cancelBtn').addEvent('click', function(e){
|
|
|
|
new Event(e).stop();
|
|
|
|
window.parent.document.getElementById('confirmDeletionPage').parentNode.removeChild(window.parent.document.getElementById('confirmDeletionPage'));
|
|
|
|
});
|
|
|
|
$('confirmBtn').addEvent('click', function(e){
|
|
|
|
new Event(e).stop();
|
|
|
|
var cmd = '/command/delete';
|
|
|
|
if($('deleteFromDiskCB').get('checked'))
|
|
|
|
cmd = '/command/deletePerm';
|
2011-01-06 12:16:02 +03:00
|
|
|
new Request({url: cmd,
|
|
|
|
method: 'post',
|
|
|
|
data: {hashes: hashes.join('|')},
|
|
|
|
onComplete: function() {
|
|
|
|
window.parent.document.getElementById('confirmDeletionPage').parentNode.removeChild(window.parent.document.getElementById('confirmDeletionPage'));
|
|
|
|
}
|
|
|
|
}).send();
|
|
|
|
|
2010-12-15 22:51:19 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<p>_(Are you sure you want to delete the selected torrents from the transfer list?)</p>
|
|
|
|
<input type="checkbox" id="deleteFromDiskCB"/> <i>_(Also delete the files on the hard disk)</i><br/><br/>
|
|
|
|
<div style="text-align: right;">
|
2011-01-14 21:57:15 +03:00
|
|
|
<input type="button" id="cancelBtn" value="_(No)" /> <input type="button" id="confirmBtn" value="_(Yes)"/>
|
2010-12-15 22:51:19 +03:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|