2011-10-16 23:08:44 +04:00
|
|
|
$(document).ready(function(){
|
|
|
|
$('#loglevel').change(function(){
|
2012-04-16 14:27:21 +04:00
|
|
|
$.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() },function(){
|
|
|
|
OC.Log.reload();
|
|
|
|
} );
|
2012-08-09 12:41:10 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
$('#backgroundjobs input').change(function(){
|
|
|
|
if($(this).attr('checked')){
|
2012-08-27 06:05:34 +04:00
|
|
|
var mode = $(this).val();
|
2013-04-17 17:32:03 +04:00
|
|
|
if (mode === 'ajax' || mode === 'webcron' || mode === 'cron') {
|
2012-08-27 06:05:34 +04:00
|
|
|
OC.AppConfig.setValue('core', 'backgroundjobs_mode', mode);
|
|
|
|
}
|
2012-08-09 12:41:10 +04:00
|
|
|
}
|
|
|
|
});
|
2012-08-28 04:36:34 +04:00
|
|
|
|
|
|
|
$('#shareAPIEnabled').change(function() {
|
|
|
|
$('.shareAPI td:not(#enable)').toggle();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#shareAPI input').change(function() {
|
2013-04-17 17:32:03 +04:00
|
|
|
if ($(this).attr('type') === 'checkbox') {
|
2012-08-28 04:45:36 +04:00
|
|
|
if (this.checked) {
|
|
|
|
var value = 'yes';
|
|
|
|
} else {
|
|
|
|
var value = 'no';
|
|
|
|
}
|
|
|
|
} else {
|
2012-09-06 00:17:33 +04:00
|
|
|
var value = $(this).val();
|
2012-08-28 04:36:34 +04:00
|
|
|
}
|
2012-08-28 04:45:36 +04:00
|
|
|
OC.AppConfig.setValue('core', $(this).attr('name'), value);
|
2012-08-28 04:36:34 +04:00
|
|
|
});
|
2013-01-11 17:18:51 +04:00
|
|
|
|
|
|
|
$('#security').change(function(){
|
2013-10-23 17:20:31 +04:00
|
|
|
$.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} );
|
2013-01-11 17:18:51 +04:00
|
|
|
});
|
2012-09-06 00:17:33 +04:00
|
|
|
});
|