luci/modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js
Jo-Philipp Wich 3c4bc228a1 treewide: import utility classes explicitly
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2020-04-03 10:00:06 +02:00

36 lines
787 B
JavaScript

'use strict';
'require view';
'require fs';
'require ui';
return view.extend({
load: function() {
return fs.exec_direct('/bin/dmesg', [ '-r' ]).catch(function(err) {
ui.addNotification(null, E('p', {}, _('Unable to load log data: ' + err.message)));
return '';
});
},
render: function(logdata) {
var loglines = logdata.trim().split(/\n/).map(function(line) {
return line.replace(/^<\d+>/, '');
});
return E([], [
E('h2', {}, [ _('Kernel Log') ]),
E('div', { 'id': 'content_syslog' }, [
E('textarea', {
'id': 'syslog',
'style': 'font-size:12px',
'readonly': 'readonly',
'wrap': 'off',
'rows': loglines.length + 1
}, [ loglines.join('\n') ])
])
]);
},
handleSaveApply: null,
handleSave: null,
handleReset: null
});