summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-mwan3/luasrc/view/mwan/openwrt_overview_status.htm
diff options
context:
space:
mode:
authorFlorian Eckert <fe@dev.tdt.de>2018-01-12 10:49:45 +0100
committerFlorian Eckert <fe@dev.tdt.de>2018-01-18 15:09:04 +0100
commit0b4942c396b44e1597c6c1592aef86d0a345a006 (patch)
tree2915a2b6e43059d4824f2360c408c6265b4b8bb8 /applications/luci-app-mwan3/luasrc/view/mwan/openwrt_overview_status.htm
parent811685c269762780a1a88a15c7f0dd96e5727d9c (diff)
luci-app-mwan3: rename mwan3 status overview plugin
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'applications/luci-app-mwan3/luasrc/view/mwan/openwrt_overview_status.htm')
-rw-r--r--applications/luci-app-mwan3/luasrc/view/mwan/openwrt_overview_status.htm80
1 files changed, 0 insertions, 80 deletions
diff --git a/applications/luci-app-mwan3/luasrc/view/mwan/openwrt_overview_status.htm b/applications/luci-app-mwan3/luasrc/view/mwan/openwrt_overview_status.htm
deleted file mode 100644
index 335c95c8fd..0000000000
--- a/applications/luci-app-mwan3/luasrc/view/mwan/openwrt_overview_status.htm
+++ /dev/null
@@ -1,80 +0,0 @@
-<script type="text/javascript">//<![CDATA[
- XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "status", "mwan", "interface_status")%>', null,
- function(x, mArray)
- {
- var status = document.getElementById('mwan_status_text');
- if (mArray.wans)
- {
- var temp = '';
- for ( var i = 0; i < mArray.wans.length; i++ )
- {
- var stat = '';
- var cssc = '';
- switch (mArray.wans[i].status)
- {
- case 'online':
- stat = '<%:Online (tracking active)%>';
- cssc = 'wanon';
- break;
- case 'notMonitored':
- stat = '<%:Online (tracking off)%>';
- cssc = 'wanon';
- break;
- case 'offline':
- stat = '<%:Offline%>';
- cssc = 'wanoff';
- break;
- case 'notEnabled':
- stat = '<%:Disabled%>';
- cssc = 'wanoff';
- break;
- }
- temp += String.format(
- '<span class="%s"><strong>%s (<a href="%q">%s</a>)</strong><br />%s</span>',
- cssc, mArray.wans[i].name, mArray.wans[i].link, mArray.wans[i].ifname, stat
- );
- }
- status.innerHTML = temp;
- }
- else
- {
- status.innerHTML = '<strong><%:No MWAN interfaces found%></strong>';
- }
- }
- );
-//]]></script>
-
-<fieldset id="interface_field" class="cbi-section">
- <legend><%:MWAN Interface Live Status%></legend>
- <div id="mwan_status_text"><img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /><%:Collecting data...%></div>
-</fieldset>
-
-<style type="text/css">
- .container { /* container for entire page. fixes bootstrap theme's ridiculously small page width */
- max-width: 1044px;
- }
- #mwan_status_text {
- display: table;
- font-size: 14px;
- margin: auto;
- max-width: 1044px;
- min-width: 246px;
- width: 100%;
- }
- .wanon {
- background-color: rgb(144, 240, 144);
- }
- .wanoff {
- background-color: rgb(240, 144, 144);
- }
- .wanon, .wanoff {
- border-radius: 60px;
- box-shadow: 0px 2px 5px -3px;
- float: left;
- margin: 8px 3px 0px 3px;
- min-height: 30px;
- min-width: 235px;
- padding: 5px 10px 8px 10px;
- text-align: center;
- }
-</style>