|
|
@ -1,88 +1,81 @@ |
|
|
|
/** @namespace $.SickGear.Root */ |
|
|
|
|
|
|
|
$(document).ready(function() { |
|
|
|
|
|
|
|
$('#submitMassEdit').click(function() { |
|
|
|
var editArr = new Array() |
|
|
|
var editArr = []; |
|
|
|
|
|
|
|
$('.editCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
editArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
if (editArr.length == 0) |
|
|
|
return |
|
|
|
if (0 == editArr.length) |
|
|
|
return !1; |
|
|
|
|
|
|
|
url = 'massEdit?toEdit='+editArr.join('|') |
|
|
|
window.location.href = url |
|
|
|
window.location.href = $.SickGear.Root + 'massEdit?toEdit=' + editArr.join('|'); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
$('#submitMassUpdate').click(function() { |
|
|
|
|
|
|
|
var updateArr = new Array() |
|
|
|
var refreshArr = new Array() |
|
|
|
var renameArr = new Array() |
|
|
|
var subtitleArr = new Array() |
|
|
|
var deleteArr = new Array() |
|
|
|
var removeArr = new Array() |
|
|
|
var metadataArr = new Array() |
|
|
|
var updateArr = [], refreshArr = [], renameArr = [], subtitleArr = [], |
|
|
|
deleteArr = [], removeArr = [], metadataArr = []; |
|
|
|
|
|
|
|
$('.updateCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
updateArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
$('.refreshCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
refreshArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
$('.renameCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
renameArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
$('.subtitleCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
subtitleArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
$('.deleteCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
deleteArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
$('.removeCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
removeArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
/* |
|
|
|
$('.metadataCheck').each(function() { |
|
|
|
if (this.checked == true) { |
|
|
|
if (true == this.checked) { |
|
|
|
metadataArr.push($(this).attr('id').split('-')[1]) |
|
|
|
} |
|
|
|
}); |
|
|
|
*/ |
|
|
|
if (updateArr.length+refreshArr.length+renameArr.length+subtitleArr.length+deleteArr.length+removeArr.length+metadataArr.length == 0) |
|
|
|
return false |
|
|
|
|
|
|
|
url = 'massUpdate?toUpdate='+updateArr.join('|')+'&toRefresh='+refreshArr.join('|')+'&toRename='+renameArr.join('|')+'&toSubtitle='+subtitleArr.join('|')+'&toDelete='+deleteArr.join('|')+'&toRemove='+removeArr.join('|')+'&toMetadata='+metadataArr.join('|') |
|
|
|
if (0 == updateArr.length + refreshArr.length + renameArr.length + subtitleArr.length + deleteArr.length + removeArr.length + metadataArr.length) |
|
|
|
return !1; |
|
|
|
|
|
|
|
window.location.href = url |
|
|
|
window.location.href = $.SickGear.Root + 'massUpdate?toUpdate=' + updateArr.join('|') + '&toRefresh=' + refreshArr.join('|') + '&toRename=' + renameArr.join('|') + '&toSubtitle=' + subtitleArr.join('|') + '&toDelete=' + deleteArr.join('|') + '&toRemove=' + removeArr.join('|') + '&toMetadata=' + metadataArr.join('|'); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
$('.bulkCheck').click(function() { |
|
|
|
|
|
|
|
var bulkCheck = this; |
|
|
|
var whichBulkCheck = $(bulkCheck).attr('id'); |
|
|
|
var bulkCheck = this, whichBulkCheck = $(bulkCheck).attr('id'); |
|
|
|
|
|
|
|
$('.' + whichBulkCheck).each(function() { |
|
|
|
if (!this.disabled) |
|
|
@ -100,12 +93,12 @@ $(document).ready(function(){ |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
var check = this; |
|
|
|
var found = 0; |
|
|
|
var check = this, found = 0; |
|
|
|
|
|
|
|
$(name).each(function() { |
|
|
|
switch (found) { |
|
|
|
case 2: return false; |
|
|
|
case 2: |
|
|
|
return !1; |
|
|
|
case 1: |
|
|
|
if (!this.disabled) |
|
|
|
this.checked = lastCheck.checked; |
|
|
@ -114,10 +107,7 @@ $(document).ready(function(){ |
|
|
|
if (this == check || this == lastCheck) |
|
|
|
found++; |
|
|
|
}); |
|
|
|
|
|
|
|
lastClick = this; |
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|