summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-status/luasrc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-mod-status/luasrc')
-rw-r--r--modules/luci-mod-status/luasrc/controller/admin/status.lua50
-rw-r--r--modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm12
-rw-r--r--modules/luci-mod-status/luasrc/view/admin_status/iptables.htm73
-rw-r--r--modules/luci-mod-status/luasrc/view/admin_status/syslog.htm12
4 files changed, 0 insertions, 147 deletions
diff --git a/modules/luci-mod-status/luasrc/controller/admin/status.lua b/modules/luci-mod-status/luasrc/controller/admin/status.lua
deleted file mode 100644
index 2684bdf715..0000000000
--- a/modules/luci-mod-status/luasrc/controller/admin/status.lua
+++ /dev/null
@@ -1,50 +0,0 @@
--- Copyright 2008 Steven Barth <steven@midlink.org>
--- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
--- Licensed to the public under the Apache License 2.0.
-
-module("luci.controller.admin.status", package.seeall)
-
-function action_syslog()
- local syslog = luci.sys.syslog()
- luci.template.render("admin_status/syslog", {syslog=syslog})
-end
-
-function action_dmesg()
- local dmesg = luci.sys.dmesg()
- luci.template.render("admin_status/dmesg", {dmesg=dmesg})
-end
-
-function dump_iptables(family, table)
- local prefix = (family == "6") and "ip6" or "ip"
- local ok, lines = pcall(io.lines, "/proc/net/%s_tables_names" % prefix)
- if ok and lines then
- local s
- for s in lines do
- if s == table then
- luci.http.prepare_content("text/plain")
- luci.sys.process.exec({
- "/usr/sbin/%stables" % prefix, "-w", "-t", table,
- "--line-numbers", "-nxvL"
- }, luci.http.write)
- return
- end
- end
- end
-
- luci.http.status(404, "No such table")
- luci.http.prepare_content("text/plain")
-end
-
-function action_iptables()
- if luci.http.formvalue("zero") then
- if luci.http.formvalue("family") == "6" then
- luci.util.exec("/usr/sbin/ip6tables -Z")
- else
- luci.util.exec("/usr/sbin/iptables -Z")
- end
- elseif luci.http.formvalue("restart") then
- luci.util.exec("/etc/init.d/firewall restart")
- end
-
- luci.http.redirect(luci.dispatcher.build_url("admin/status/iptables"))
-end
diff --git a/modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm b/modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm
deleted file mode 100644
index 1a8770ef88..0000000000
--- a/modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm
+++ /dev/null
@@ -1,12 +0,0 @@
-<%#
- Copyright 2008 Steven Barth <steven@midlink.org>
- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
- Licensed to the public under the Apache License 2.0.
--%>
-
-<%+header%>
-<h2 name="content"><%:Kernel Log%></h2>
-<div id="content_syslog">
-<textarea style="font-size: 12px;" readonly="readonly" wrap="off" rows="<%=dmesg:cmatch("\n")+2%>" id="syslog"><%=dmesg:pcdata()%></textarea>
-</div>
-<%+footer%>
diff --git a/modules/luci-mod-status/luasrc/view/admin_status/iptables.htm b/modules/luci-mod-status/luasrc/view/admin_status/iptables.htm
deleted file mode 100644
index 89f229f3ba..0000000000
--- a/modules/luci-mod-status/luasrc/view/admin_status/iptables.htm
+++ /dev/null
@@ -1,73 +0,0 @@
-<%#
- Copyright 2008-2009 Steven Barth <steven@midlink.org>
- Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io>
- Licensed to the public under the Apache License 2.0.
--%>
-
-<%-
- local fs = require "nixio.fs"
- local has_ip6tables = fs.access("/usr/sbin/ip6tables")
- local mode = 4
-
- if has_ip6tables then
- mode = luci.dispatcher.context.requestpath
- mode = tonumber(mode[#mode] ~= "iptables" and mode[#mode]) or 4
- end
--%>
-
-<%+header%>
-
-<style type="text/css">
- span.jump, .cbi-tooltip-container {
- border-bottom: 1px dotted blue;
- cursor: pointer;
- }
-
- ul {
- list-style: none;
- }
-
- .references {
- position: relative;
- }
-
- .references .cbi-tooltip {
- left: 0 !important;
- top: 1.5em !important;
- }
-
- h4 > span {
- font-size: 90%;
- }
-</style>
-
-<h2 name="content"><%:Firewall Status%></h2>
-
-<% if has_ip6tables then %>
-<ul class="cbi-tabmenu">
- <li data-mode="4" class="cbi-tab<%= mode ~= 4 and "-disabled" %>">
- <a href="<%=url("admin/status/iptables/4")%>"><%:IPv4 Firewall%></a>
- </li>
- <li data-mode="6" class="cbi-tab<%= mode ~= 6 and "-disabled" %>">
- <a href="<%=url("admin/status/iptables/6")%>"><%:IPv6 Firewall%></a>
- </li>
-</ul>
-<% end %>
-
-<div style="position: relative">
- <form method="post" action="<%=url("admin/status/iptables_action")%>" style="position: absolute; right: 0">
- <input type="hidden" name="token" value="<%=token%>" />
- <input type="hidden" name="family" value="<%=mode%>" />
- <input type="button" class="cbi-button" data-hide-empty="false" value="<%:Hide empty chains%>" onclick="hide_empty(this)" />
- <input type="submit" class="cbi-button" name="zero" value="<%:Reset Counters%>" />
- <input type="submit" class="cbi-button" name="restart" value="<%:Restart Firewall%>" />
- </form>
-</div>
-
-<div id="iptables">
- <p><em class="spinning"><%:Collecting data...%></em></p>
-</div>
-
-<script type="text/javascript" src="<%=resource%>/view/status/iptables.js"></script>
-
-<%+footer%>
diff --git a/modules/luci-mod-status/luasrc/view/admin_status/syslog.htm b/modules/luci-mod-status/luasrc/view/admin_status/syslog.htm
deleted file mode 100644
index fb734a76d9..0000000000
--- a/modules/luci-mod-status/luasrc/view/admin_status/syslog.htm
+++ /dev/null
@@ -1,12 +0,0 @@
-<%#
- Copyright 2008 Steven Barth <steven@midlink.org>
- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
- Licensed to the public under the Apache License 2.0.
--%>
-
-<%+header%>
-<h2 name="content"><%:System Log%></h2>
-<div id="content_syslog">
-<textarea style="font-size: 12px;" readonly="readonly" wrap="off" rows="<%=syslog:cmatch("\n")+2%>" id="syslog"><%=syslog:pcdata()%></textarea>
-</div>
-<%+footer%>