Revert "Revert "Adapt tunnels web view to new bmx6 syntax and options""
authorAxel Neumann <neumann@cgws.de>
Sat, 17 Aug 2013 11:57:44 +0000 (13:57 +0200)
committerAxel Neumann <neumann@cgws.de>
Sat, 17 Aug 2013 11:57:44 +0000 (13:57 +0200)
This reverts commit 6360d4c977b6b8fb6b0c80e0fcd29f43e0cc1cba.

luci-app-bmx6/files/usr/lib/lua/luci/view/bmx6/tunnels_j.htm

index 1b7ce42365ca87bb665446dc9e49503bd754878e..d4cc38b680620360131534c7bb4398721a2017a7 100644 (file)
@@ -71,7 +71,8 @@
                        <th class="cbi-section-table-cell"><%:IP metric%></th>
                        <th class="cbi-section-table-cell"><%:Tun metric%></th>
                        <th class="cbi-section-table-cell"><%:Bonus%></th>
-                       <th class="cbi-section-table-cell"><%:search id%></th>
+                       <th class="cbi-section-table-cell"><%:Src%></th>
+                       <th class="cbi-section-table-cell"><%:Search id%></th>
                </tr>
                <tr class="cbi-section-table-row">
                        <td colspan="10"><em><br /><%:Collecting data...%></em></td>
                  var res = Array();
                   for ( var k in st.tunnels ){
                         var tunnel = st.tunnels[k];
-                        var nodename = tunnel.remoteId.replace(/\..+$/,'');
+                        var nodename = tunnel.remoteName.replace(/\..+$/,'');
                        var advnet = tunnel.advNet;
                        var status = '<img src="'+tunicon_dis+'"/>';
                        
                        if ( tunnel.tunName != "---" ) status = '<img src="'+tunicon+'"/>';
                        if ( advnet == "0.0.0.0/0" ) advnet = "<b>Internet</b>";
 
-                       res.push([status, tunnel.name, nodename, advnet, tunnel.advBw, tunnel.searchNet, tunnel.advType,
-                               tunnel.pathMtc, tunnel.ipMtc, tunnel.tunMtc, tunnel.bonus, tunnel.searchId]);
+                       res.push([status, tunnel.name, nodename, advnet, tunnel.advBw, tunnel.net, tunnel.advType,
+                               tunnel.pathMtc, tunnel.ipMtc, tunnel.tunMtc, tunnel.bonus, tunnel.srcIngress, tunnel.id]);
                  }
                  return res;
                });