2013-04-03 23:50:25 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
|
|
|
if {[file exists /mod/tmp/notify.log]} {
|
|
|
|
|
|
|
|
source /mod/webif/lib/setup
|
|
|
|
require cat
|
|
|
|
|
|
|
|
puts "
|
2014-02-03 23:06:38 +00:00
|
|
|
<div id=sysnotify class=warningbox style=\"width: 90%\"><center>
|
2013-04-03 23:50:25 +00:00
|
|
|
!! WARNING !!
|
|
|
|
<br><br>
|
|
|
|
You have pending system notifications:
|
|
|
|
<br><br>
|
2014-02-03 23:06:38 +00:00
|
|
|
</center>
|
2013-04-03 23:50:25 +00:00
|
|
|
<pre>
|
|
|
|
"
|
|
|
|
cat /mod/tmp/notify.log
|
|
|
|
puts {
|
|
|
|
</pre>
|
2014-02-03 23:06:38 +00:00
|
|
|
<center>
|
2013-04-03 23:50:25 +00:00
|
|
|
<button id=sysnotify_ack>Acknowledge</button>
|
|
|
|
</center></div>
|
|
|
|
<script type=text/javascript>
|
|
|
|
$('#sysnotify_ack').button().on('click', function() {
|
|
|
|
$('#sysnotify').slideUp('slow');
|
|
|
|
$.get('/diag/clearlog.jim?file=/mod/tmp/notify.log&unlink=1');
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|