2010-11-18 01:32:30 +00:00
|
|
|
<script type="text/javascript">//<![CDATA[
|
2010-11-07 19:30:55 +00:00
|
|
|
function upnp_delete_fwd(idx) {
|
|
|
|
var dlxhr = new XHR();
|
|
|
|
|
|
|
|
dlxhr.get('<%=luci.dispatcher.build_url("admin", "services", "upnp", "delete")%>/' + idx, null,
|
|
|
|
function(x)
|
|
|
|
{
|
|
|
|
var tb = document.getElementById('upnp_status_table');
|
|
|
|
if (tb && (idx < tb.rows.length))
|
|
|
|
tb.rows[0].parentNode.removeChild(tb.rows[idx]);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
var stxhr = new XHR();
|
2011-09-25 20:54:24 +00:00
|
|
|
(function() {
|
|
|
|
var func = arguments.callee;
|
|
|
|
|
2010-11-07 19:30:55 +00:00
|
|
|
stxhr.get('<%=luci.dispatcher.build_url("admin", "services", "upnp", "status")%>', null,
|
2010-11-15 22:07:03 +00:00
|
|
|
function(x, st)
|
2010-11-07 19:30:55 +00:00
|
|
|
{
|
|
|
|
var tb = document.getElementById('upnp_status_table');
|
|
|
|
if (st && tb)
|
|
|
|
{
|
|
|
|
/* clear all rows */
|
|
|
|
while( tb.rows.length > 1 )
|
2010-11-18 01:32:30 +00:00
|
|
|
tb.deleteRow(1);
|
2010-11-07 19:30:55 +00:00
|
|
|
|
|
|
|
for( var i = 0; i < st.length; i++ )
|
|
|
|
{
|
2010-11-18 01:32:30 +00:00
|
|
|
var tr = tb.insertRow(-1);
|
2010-11-07 19:30:55 +00:00
|
|
|
tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1);
|
|
|
|
|
2010-11-18 01:32:30 +00:00
|
|
|
tr.insertCell(-1).innerHTML = st[i].proto;
|
|
|
|
tr.insertCell(-1).innerHTML = st[i].extport;
|
|
|
|
tr.insertCell(-1).innerHTML = st[i].intaddr;
|
|
|
|
tr.insertCell(-1).innerHTML = st[i].intport;
|
|
|
|
|
|
|
|
tr.insertCell(-1).innerHTML = String.format(
|
2011-09-22 13:25:48 +00:00
|
|
|
'<input class="cbi-button cbi-input-remove" type="button" value="<%:Delete Redirect%>" onclick="upnp_delete_fwd(%d)" />',
|
2010-11-07 19:30:55 +00:00
|
|
|
st[i].num
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if( tb.rows.length == 1 )
|
|
|
|
{
|
2010-11-18 01:32:30 +00:00
|
|
|
var tr = tb.insertRow(-1);
|
2010-11-07 19:30:55 +00:00
|
|
|
tr.className = 'cbi-section-table-row';
|
|
|
|
|
2010-11-18 01:32:30 +00:00
|
|
|
var td = tr.insertCell(-1);
|
|
|
|
td.colSpan = 5;
|
|
|
|
td.innerHTML = '<em><br /><%:There are no active redirects.%></em>';
|
2010-11-07 19:30:55 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-17 15:24:13 +00:00
|
|
|
|
2011-09-25 20:54:24 +00:00
|
|
|
window.setTimeout(func, 5000);
|
2010-11-07 19:30:55 +00:00
|
|
|
}
|
|
|
|
)
|
2011-09-25 20:54:24 +00:00
|
|
|
})();
|
2010-11-18 01:32:30 +00:00
|
|
|
//]]></script>
|
2010-11-07 19:30:55 +00:00
|
|
|
|
|
|
|
<fieldset class="cbi-section">
|
|
|
|
<legend><%:Active UPnP Redirects%></legend>
|
|
|
|
<table class="cbi-section-table" id="upnp_status_table">
|
|
|
|
<tr class="cbi-section-table-titles">
|
|
|
|
<th class="cbi-section-table-cell"><%:Protocol%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:External Port%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Client Address%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Client Port%></th>
|
2011-05-03 03:20:15 +00:00
|
|
|
<th class="cbi-section-table-cell"> </th>
|
2010-11-07 19:30:55 +00:00
|
|
|
</tr>
|
|
|
|
<tr class="cbi-section-table-row">
|
|
|
|
<td colspan="5"><em><br /><%:Collecting data...%></em></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|