* Removed ffluci.view.public_status.internet: Too dirty
authorSteven Barth <steven@midlink.org>
Wed, 23 Apr 2008 16:59:21 +0000 (16:59 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 23 Apr 2008 16:59:21 +0000 (16:59 +0000)
module/public-core/src/model/menu/00public.lua
module/public-core/src/view/public_status/internet.htm [deleted file]

index 3339dd0..644aa44 100644 (file)
@@ -3,7 +3,6 @@ act("contact", "Kontakt")
 
 add("public", "status", "Status", 20)
 act("routes", "Routingtabelle")
-act("internet", "Internetzugang")
 act("iwscan", "WLAN-Scan")
 
 add("public", "olsr", "OLSR", 30)
diff --git a/module/public-core/src/view/public_status/internet.htm b/module/public-core/src/view/public_status/internet.htm
deleted file mode 100644 (file)
index afa8fbf..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<%+header%>
-<h1><%:inetaccess Internetzugangstest%></h1>
-<br />
-
-<table cellspacing="0" cellpadding="6" class="smalltext">
-<tr>
-<th><%:target Ziel%></th>
-<th><%:host Host%></th>
-<th><%:result Ergebnis%></th>
-</tr>
-<%
-local tests = {}
-tests[1] = {descr = "Chaos Computer Club Deutschland", target = "213.73.91.29"}
-tests[2] = {descr = "Kernel.org - Mirror Niederlande", target = "199.6.1.164"}
-tests[3] = {descr = "Debian.org - Mirror Deutschland", target = "www.de.debian.org"}
-tests[4] = {descr = "Wikimedia Deutschland", target = "www.wikimedia.de"}
-
-for i, t in ipairs(tests) do 
-%>
-<tr>
-<td><%=t.descr%></td>
-<td><%=t.target%></td>
-<% if ffluci.sys.net.pingtest(t.target) == 0 then %>
-<td class="ok"><%:ok OK%></td>
-<% else %>
-<td class="error"><%:failed fehlgeschlagen%></td>
-<% end %>
-</tr>
-<% end %>
-</table>
-<br />
-<%+footer%>
\ No newline at end of file