diff options
author | Steven Barth <steven@midlink.org> | 2008-04-23 16:59:21 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-23 16:59:21 +0000 |
commit | 224c2566416e84b7c359a31ead46ece00c120b9c (patch) | |
tree | 8c399495f21087d56c3a8335ae9092d4a8bdd0ed | |
parent | 0ea68c4f748860f625eb4163ed3e91f80a593350 (diff) |
* Removed ffluci.view.public_status.internet: Too dirty
-rw-r--r-- | module/public-core/src/model/menu/00public.lua | 1 | ||||
-rw-r--r-- | module/public-core/src/view/public_status/internet.htm | 32 |
2 files changed, 0 insertions, 33 deletions
diff --git a/module/public-core/src/model/menu/00public.lua b/module/public-core/src/model/menu/00public.lua index 3339dd0ff..644aa44f7 100644 --- a/module/public-core/src/model/menu/00public.lua +++ b/module/public-core/src/model/menu/00public.lua @@ -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 index afa8fbf23..000000000 --- a/module/public-core/src/view/public_status/internet.htm +++ /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 |