init
This commit is contained in:
commit
db400e4a38
2750 changed files with 440400 additions and 0 deletions
76
help_FR/scp/js/upgrader.js
Normal file
76
help_FR/scp/js/upgrader.js
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
jQuery(function($) {
|
||||
|
||||
$("#overlay").css({
|
||||
opacity : 0.3,
|
||||
top : 0,
|
||||
left : 0,
|
||||
width : $(window).width(),
|
||||
height : $(window).height()
|
||||
});
|
||||
|
||||
$("#upgrading").css({
|
||||
top : ($(window).height() / 3),
|
||||
left : ($(window).width() / 2 - 160)
|
||||
});
|
||||
|
||||
$('form#upgrade').submit(function(e) {
|
||||
var form = $(this);
|
||||
$('input[type=submit]', this).attr('disabled', 'disabled');
|
||||
$('#overlay, #upgrading').show();
|
||||
if($('input#mode', form).val() == 'manual') {
|
||||
return true;
|
||||
} else {
|
||||
e.preventDefault();
|
||||
autoUpgrade('upgrade.php',form.serialize());
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
function autoUpgrade(url, data) {
|
||||
|
||||
if (!$.isFunction('__')) {
|
||||
function __(s) {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
|
||||
function _lp(count) {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php/upgrader',
|
||||
async: true,
|
||||
cache: false,
|
||||
data: data,
|
||||
dataType: 'text',
|
||||
success: function(res) {
|
||||
$('#main #task').html(res);
|
||||
$('#upgrading #action').html(res);
|
||||
$('#upgrading #msg').html(__('Still busy... smile #')+count);
|
||||
},
|
||||
statusCode: {
|
||||
200: function() {
|
||||
setTimeout(function() { _lp(count+1); }, 200);
|
||||
},
|
||||
|
||||
201: function() {
|
||||
$('#upgrading #msg').html(__("Cleaning up!..."));
|
||||
setTimeout(function() { location.href =url+'?c='+count+'&r='+Math.floor((Math.random()*100)+1); }, 3000);
|
||||
}
|
||||
},
|
||||
error: function(jqXHR, textStatus, errorThrown) {
|
||||
$('#upgrading #action').html(__('Error occurred. Aborting...'));
|
||||
switch(jqXHR.status) {
|
||||
case 404:
|
||||
$('#upgrading #msg').html(__("Manual upgrade required (ajax failed)"));
|
||||
setTimeout(function() { location.href =url+'?m=manual&c='+count+'&r='+Math.floor((Math.random()*100)+1); }, 2000);
|
||||
break;
|
||||
default:
|
||||
$('#upgrading #msg').html(__("Something went wrong"));
|
||||
setTimeout(function() { location.href =url+'?c='+count+'&r='+Math.floor((Math.random()*100)+1); }, 2000);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
_lp(1);
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue