* Minor bugfixes

This commit is contained in:
Steven Barth 2008-04-22 20:37:30 +00:00
parent 32274f49f0
commit 0ea68c4f74
4 changed files with 37 additions and 21 deletions

View file

@ -13,7 +13,7 @@ TOC:
3. Run ./scripts/feeds update 3. Run ./scripts/feeds update
4. Run ./scripts/feeds install luci-lua ffluci 4. Run ./scripts/feeds install ffluci
5. Type make menuconfig and you will find ffluci in the menu "Administration" 5. Type make menuconfig and you will find ffluci in the menu "Administration"

View file

@ -34,24 +34,7 @@
<th><%:signal Signal%></th> <th><%:signal Signal%></th>
<th><%:noise Rausch%></th> <th><%:noise Rausch%></th>
</tr> </tr>
<%for k, v in pairs(wifi) do%> <%=ffluci.sys.httpget("http://127.0.0.1" .. controller .. "/sudo/status/iwconfig")%>
<tr>
<td rowspan="2"><%=k%></td>
<td><%=v[1]%></td>
<td><%=v.Frequency%></td>
<td><%=v["Tx-Power"]%></td>
<td><%=v["Bit Rate"]%></td>
<td><%=v["RTS thr"]%></td>
<td><%=v["Fragment thr"]%></td>
<td><%=v["Link Quality"]%></td>
<td><%=v["Signal level"]%></td>
<td><%=v["Noise level"]%></td>
</tr>
<tr>
<td colspan="4"><strong><%:essid ESSID%>: </strong><%=v.ESSID%></td>
<td colspan="5"><strong><%:bssid BSSID%>: </strong><%=(v.Cell or v["Access Point"])%></td>
</tr>
<%end%>
</table> </table>
<br /> <br />
<br /> <br />
@ -64,7 +47,15 @@
<th><%:iface Schnittstelle%></th> <th><%:iface Schnittstelle%></th>
</tr> </tr>
<% <%
local be = (routes[1] and routes[1].Mask:sub(-2) == "00")
-- UGLY hack is UGLY
if routes[1] and routes[1].Gateway:sub(-2) == "00" then
local be = true
else
local be = false
end
for i, rt in pairs(routes) do for i, rt in pairs(routes) do
%> %>
<tr> <tr>

View file

@ -14,7 +14,11 @@
local routes = ffluci.sys.net.routes() local routes = ffluci.sys.net.routes()
-- UGLY hack is UGLY -- UGLY hack is UGLY
local be = (routes[1] and routes[1].Mask:sub(-2) == "00") if routes[1] and routes[1].Gateway:sub(-2) == "00" then
local be = true
else
local be = false
end
for i, r in pairs(routes) do for i, r in pairs(routes) do
%> %>

View file

@ -0,0 +1,21 @@
<%
ffluci.http.textheader()
for k, v in pairs(ffluci.sys.wifi.getiwconfig()) do
%>
<tr>
<td rowspan="2"><%=k%></td>
<td><%=v[1]%></td>
<td><%=v.Frequency%></td>
<td><%=v["Tx-Power"]%></td>
<td><%=v["Bit Rate"]%></td>
<td><%=v["RTS thr"]%></td>
<td><%=v["Fragment thr"]%></td>
<td><%=v["Link Quality"]%></td>
<td><%=v["Signal level"]%></td>
<td><%=v["Noise level"]%></td>
</tr>
<tr>
<td colspan="4"><strong>ESSID: </strong><%=v.ESSID%></td>
<td colspan="5"><strong>BSSID: </strong><%=(v.Cell or v["Access Point"])%></td>
</tr>
<%end%>