Browse Source

[Web UI] Clean up JavaScript code

adaptive-webui-19844
ngosang 9 years ago
parent
commit
e922275c72
  1. 13
      src/webui/www/public/addtrackers.html
  2. 52
      src/webui/www/public/confirmdeletion.html
  3. 9
      src/webui/www/public/scripts/mocha-init.js
  4. 3
      src/webui/www/public/transferlist.html

13
src/webui/www/public/addtrackers.html

@ -6,20 +6,23 @@ @@ -6,20 +6,23 @@
<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">
<script type="text/javascript">
window.addEvent('domready', function(){
$('trackersUrls').focus();
$('addTrackersButton').addEvent('click', function(e){
new Event(e).stop();
var hash = new URI().getData('hash');
new Request({url: 'command/addTrackers', method: 'post', data: {hash: hash, urls: $('trackersUrls').value},
new Request({
url: 'command/addTrackers',
method: 'post',
data: {hash: hash, urls: $('trackersUrls').value},
onComplete: function() {
window.parent.document.getElementById('trackersPage').parentNode.removeChild(window.parent.document.getElementById('trackersPage'));
window.parent.closeWindows();
}
}).send();
});
});
</script>
});
</script>
</head>
<body>
<center>

52
src/webui/www/public/confirmdeletion.html

@ -6,60 +6,32 @@ @@ -6,60 +6,32 @@
<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 = $get('hashes').split(',');
window.addEvent('domready', function(){
<script type="text/javascript">
var hashes = new URI().getData('hashes').split('|');
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'));
window.parent.closeWindows();
});
$('confirmBtn').addEvent('click', function(e){
new Event(e).stop();
var cmd = 'command/delete';
if($('deleteFromDiskCB').get('checked'))
cmd = 'command/deletePerm';
new Request({url: cmd,
new Request({
url: cmd,
method: 'post',
data: {hashes: hashes.join('|')},
data: {
'hashes': hashes.join('|')
},
onComplete: function() {
window.parent.document.getElementById('confirmDeletionPage').parentNode.removeChild(window.parent.document.getElementById('confirmDeletionPage'));
window.parent.closeWindows();
}
}).send();
});
});
</script>
});
</script>
</head>
<body>
<br/>

9
src/webui/www/public/scripts/mocha-init.js

@ -234,17 +234,12 @@ initializeWindows = function() { @@ -234,17 +234,12 @@ initializeWindows = function() {
deleteFN = function() {
var h = myTable.selectedIds();
/*if(h.length && confirm('QBT_TR(Are you sure you want to delete the selected torrents from the transfer list?)QBT_TR')) {
h.each(function(item, index){
new Request({url: 'command/delete', method: 'post', data: {hash: item}}).send();
});
}*/
if (h.length) {
new MochaUI.Window({
id: 'confirmDeletionPage',
title: "QBT_TR(Deletion confirmation - qBittorrent)QBT_TR",
title: "QBT_TR(Deletion confirmation)QBT_TR",
loadMethod: 'iframe',
contentURL: 'confirmdeletion.html?hashes=' + h.join(','),
contentURL: 'confirmdeletion.html?hashes=' + h.join("|"),
scrollbars: false,
resizable: false,
maximizable: false,

3
src/webui/www/public/transferlist.html

@ -16,9 +16,6 @@ @@ -16,9 +16,6 @@
Delete : function (element, ref) {
deleteFN();
},
DeleteHD : function (element, ref) {
deleteHDFN();
},
Start : function (element, ref) {
startFN();
},

Loading…
Cancel
Save