diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-06-10 16:47:00 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-06-10 16:47:00 +0000 |
commit | 2dd1080cd670da260a36dbcc1d83ecedc8d9a332 (patch) | |
tree | 48fb866a761ffdedc8367859a99ba2a61e07dfee /applications/luci-ahcp/luasrc/view/ahcp_status.htm | |
parent | 1d2f948280aeff5071ab890e4ac50fa2caf436f9 (diff) |
applications: add luci-ahcp, support for the AHCP server package
Diffstat (limited to 'applications/luci-ahcp/luasrc/view/ahcp_status.htm')
-rw-r--r-- | applications/luci-ahcp/luasrc/view/ahcp_status.htm | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/applications/luci-ahcp/luasrc/view/ahcp_status.htm b/applications/luci-ahcp/luasrc/view/ahcp_status.htm new file mode 100644 index 000000000..bc595ce6c --- /dev/null +++ b/applications/luci-ahcp/luasrc/view/ahcp_status.htm @@ -0,0 +1,60 @@ +<script type="text/javascript">//<![CDATA[ + var stxhr = new XHR(); + var update_status = function() { + stxhr.get('<%=luci.dispatcher.build_url("admin", "network", "ahcpd", "status")%>', null, + function(x, st) + { + var tb = document.getElementById('ahcpd_status_table'); + var tx = document.getElementById('ahcpd_status_text'); + if (st && tb && tx) + { + /* clear all rows */ + while( tb.rows.length > 1 ) + tb.deleteRow(1); + + for( var i = 0; i < st.leases.length; i++ ) + { + var tr = tb.insertRow(-1); + tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1); + + tr.insertCell(-1).innerHTML = st.leases[i].addr; + tr.insertCell(-1).innerHTML = String.format('%t', st.leases[i].age); + } + + if( tb.rows.length == 1 ) + { + var tr = tb.insertRow(-1); + tr.className = 'cbi-section-table-row'; + + var td = tr.insertCell(-1); + td.colSpan = 2; + td.innerHTML = '<em><br /><%:There are no active leases.%></em>'; + } + + if( st.uid == '00:00:00:00:00:00:00:00' ) + tx.innerHTML = 'The AHCP Service is not running.'; + else + tx.innerHTML = String.format('The AHCP Service is running with ID %s.', st.uid); + } + + window.setTimeout(update_status, 5000); + } + ) + }; + + update_status(); +//]]></script> + +<fieldset class="cbi-section"> + <legend><%:Active AHCP Leases%></legend> + <p id="ahcpd_status_text"></p> + <table class="cbi-section-table" id="ahcpd_status_table"> + <tr class="cbi-section-table-titles"> + <th class="cbi-section-table-cell"><%:Address%></th> + <th class="cbi-section-table-cell"><%:Age%></th> + </tr> + <tr class="cbi-section-table-row"> + <td colspan="5"><em><br /><%:Collecting data...%></em></td> + </tr> + </table> +</fieldset> |