forked from hummypkg/webif
c095cc7913
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1632 2a923420-c742-0410-a762-8d5b09965624
127 lines
3.2 KiB
JavaScript
127 lines
3.2 KiB
JavaScript
|
|
$(function() {
|
|
|
|
$('button').button();
|
|
|
|
$('#rundiag').click(function() {
|
|
var val = $('#diagsel').val();
|
|
if (val == '0')
|
|
val = $('#seq').val();
|
|
$('#results')
|
|
.slideDown()
|
|
.html('<br><br><img src=/img/loading.gif> ' +
|
|
'Running diagnostic, please wait...')
|
|
.load('rundiag.jim?diag=' + encodeURIComponent(val), function() {
|
|
$('#results').wrapInner('<pre>');
|
|
});
|
|
});
|
|
|
|
$('#runfopkg').click(function() {
|
|
$('#results')
|
|
.slideDown()
|
|
.text('\n\nForcibly re-installing package, please wait...\n\n')
|
|
.load('/cgi-bin/opkg.jim?cmd=install+--force-reinstall+' +
|
|
encodeURIComponent($('#fopkg').val()), function() {
|
|
$('#results').wrapInner('<pre>');
|
|
$('#fopkg').val('');
|
|
});
|
|
});
|
|
|
|
$('a.log').click(function(e) {
|
|
e.preventDefault();
|
|
$('#results')
|
|
.slideDown()
|
|
.text('\n\nLoading log, please wait...\n\n')
|
|
.load('/cgi-bin/cat.jim?file=' +
|
|
encodeURIComponent($(this).attr('file')), function() {
|
|
$('#results').wrapInner('<pre>');
|
|
});
|
|
});
|
|
|
|
$('a.logclear').click(function(e) {
|
|
var t = $(this);
|
|
e.preventDefault();
|
|
if (!confirm('Delete ' + $(this).attr('file') + '?'))
|
|
return;
|
|
$('#results')
|
|
.slideDown()
|
|
.text('\n\nClearing log, please wait...\n\n')
|
|
.load('clearlog.jim?file=' +
|
|
encodeURIComponent($(this).attr('file')), function() {
|
|
$('#results').wrapInner('<pre>');
|
|
$(t).prev('span.lsize').html('0 bytes');
|
|
});
|
|
});
|
|
|
|
$('#runedit').click(function(e) {
|
|
e.preventDefault();
|
|
window.location = '/edit/edit.jim';
|
|
});
|
|
|
|
$('#dbinfo').click(function(e) {
|
|
e.preventDefault();
|
|
window.location = '/cgi-bin/db.jim';
|
|
});
|
|
|
|
$('#channelinfo').click(function(e) {
|
|
e.preventDefault();
|
|
window.location = '/cgi-bin/channel.jim';
|
|
});
|
|
|
|
$('#diskdiag').click(function(e) {
|
|
e.preventDefault();
|
|
window.location = 'disk.jim';
|
|
});
|
|
|
|
$('#dlna').click(function(e) {
|
|
e.preventDefault();
|
|
window.location = '/dlna/dlna.jim';
|
|
});
|
|
|
|
$('#dspace').click(function(e) {
|
|
e.preventDefault();
|
|
window.location = 'dspace/index.jim';
|
|
});
|
|
|
|
$('#reboot').click(function(e) {
|
|
e.preventDefault();
|
|
if (confirm('Are you sure you wish to perform a reboot now?'))
|
|
if (confirm('Really sure?\n\nThere is a small chance the ' +
|
|
' Humax may not restart\n' +
|
|
'without physical intervention.\n\n' +
|
|
'i.e. pressing the standby button or using the remote control'))
|
|
window.location = '/cgi-bin/restart.jim';
|
|
});
|
|
|
|
$('#runreset').click(function(e) {
|
|
e.preventDefault();
|
|
if (!confirm('Are you sure? This will completely remove all packages and settings.'))
|
|
return;
|
|
if (!confirm('Are you really sure?'))
|
|
return;
|
|
if (!confirm('One last time, are you sure?'))
|
|
return;
|
|
$.get('/cgi-bin/cfwreset.cgi', function() {
|
|
$('button').disable();
|
|
$('#resetdone').slideDown();
|
|
});
|
|
});
|
|
|
|
$('#runrma').click(function(e) {
|
|
e.preventDefault();
|
|
if (!confirm('Are you sure? This will completely remove all packages and settings and return the unit to state where you can re-install official firmware ready to return a faulty box to Humax for repair.'))
|
|
return;
|
|
if (!confirm('Are you really sure?'))
|
|
return;
|
|
if (!confirm('One last time, are you sure?'))
|
|
return;
|
|
$.get('/cgi-bin/cfwreset.cgi?rma=1', function() {
|
|
$('button').disable();
|
|
$('#resetdone').slideDown();
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
|