2018-01-23 12:12:53 +00:00
|
|
|
<%#
|
|
|
|
Copyright 2014 Aedan Renner <chipdankly@gmail.com>
|
|
|
|
Copyright 2018 Florian Eckert <fe@dev.tdt.de>
|
|
|
|
Licensed to the public under the GNU General Public License v2.
|
|
|
|
-%>
|
|
|
|
|
2017-02-17 10:22:01 +00:00
|
|
|
<script type="text/javascript">//<![CDATA[
|
2018-01-12 15:12:02 +00:00
|
|
|
XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "status", "mwan", "interface_status")%>', null,
|
|
|
|
function(x, status)
|
2017-02-17 10:22:01 +00:00
|
|
|
{
|
2018-01-12 15:12:02 +00:00
|
|
|
var statusDiv = document.getElementById('mwan_status_text');
|
|
|
|
if (status.interfaces)
|
2017-02-17 10:22:01 +00:00
|
|
|
{
|
2018-01-12 15:12:02 +00:00
|
|
|
var statusview = '';
|
|
|
|
for ( var iface in status.interfaces)
|
2017-02-17 10:22:01 +00:00
|
|
|
{
|
2018-01-12 15:12:02 +00:00
|
|
|
var state = '';
|
|
|
|
switch (status.interfaces[iface].status)
|
2017-02-17 10:22:01 +00:00
|
|
|
{
|
|
|
|
case 'online':
|
2018-01-12 15:12:02 +00:00
|
|
|
state = '<%:Online (tracking active)%>';
|
2017-02-17 10:22:01 +00:00
|
|
|
break;
|
|
|
|
case 'offline':
|
2018-01-12 15:12:02 +00:00
|
|
|
state = '<%:Offline%>';
|
2017-02-17 10:22:01 +00:00
|
|
|
break;
|
2018-01-12 15:12:02 +00:00
|
|
|
default:
|
|
|
|
state = '<%:Disabled%>';
|
2017-02-17 10:22:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-01-12 15:12:02 +00:00
|
|
|
statusview += String.format(
|
2018-03-01 09:36:03 +00:00
|
|
|
'<div><strong>Interface: </strong>%s</div>',
|
|
|
|
iface
|
|
|
|
);
|
|
|
|
statusview += String.format(
|
|
|
|
'<div><strong>Status: </strong>%s</div></br></br>',
|
2018-01-12 15:12:02 +00:00
|
|
|
state
|
2017-02-17 10:22:01 +00:00
|
|
|
);
|
|
|
|
}
|
2018-01-12 15:12:02 +00:00
|
|
|
statusDiv.innerHTML = statusview;
|
2017-02-17 10:22:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-01-12 15:12:02 +00:00
|
|
|
statusDiv.innerHTML = '<strong><%:No MWAN interfaces found%></strong>';
|
2017-02-17 10:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
//]]></script>
|
|
|
|
|
|
|
|
<fieldset id="interface_field" class="cbi-section">
|
2018-03-01 07:58:36 +00:00
|
|
|
<legend><%:MWAN Interfaces%></legend>
|
2018-03-01 07:53:17 +00:00
|
|
|
<div id="mwan_status_text">
|
|
|
|
<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /><%:Collecting data...%>
|
|
|
|
</div>
|
2017-02-17 10:22:01 +00:00
|
|
|
</fieldset>
|