summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-12-05 16:42:36 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-12-05 16:42:36 +0000
commitb49c904552d26352f188816bfcf404b1301371b2 (patch)
tree723514b65663c7678be4e3254d0dfa33e1507552 /applications
parent8a37f5600685b44848116e9670d14a7c255564e4 (diff)
applications/luci-polipo: add a simple status frame
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-polipo/luasrc/controller/polipo.lua14
-rw-r--r--applications/luci-polipo/luasrc/view/polipo_status.htm18
2 files changed, 25 insertions, 7 deletions
diff --git a/applications/luci-polipo/luasrc/controller/polipo.lua b/applications/luci-polipo/luasrc/controller/polipo.lua
index aa8c9bf8a..1ee67e238 100644
--- a/applications/luci-polipo/luasrc/controller/polipo.lua
+++ b/applications/luci-polipo/luasrc/controller/polipo.lua
@@ -17,12 +17,12 @@ function index()
if not nixio.fs.access("/etc/config/polipo") then
return
end
-
- require("luci.i18n")
- luci.i18n.loadc("polipo")
+
+ require("luci.i18n").loadc("polipo")
local i18n = luci.i18n.translate
-
- local p = entry({"admin", "services", "polipo"}, cbi("polipo"), i18n("Polipo"))
- p.dependent = true
- p.i18n = "polipo"
+
+ entry({"admin", "services", "polipo"}, alias("admin", "services", "polipo", "config"), "Polipo").i18n = "polipo"
+ entry({"admin", "services", "polipo", "status"}, template("polipo_status"), i18n("Status"))
+ entry({"admin", "services", "polipo", "config"}, cbi("polipo"), i18n("Configuration"))
end
+
diff --git a/applications/luci-polipo/luasrc/view/polipo_status.htm b/applications/luci-polipo/luasrc/view/polipo_status.htm
new file mode 100644
index 000000000..c2695ca82
--- /dev/null
+++ b/applications/luci-polipo/luasrc/view/polipo_status.htm
@@ -0,0 +1,18 @@
+<%
+
+local uci = require "luci.model.uci".cursor()
+local addr = "127.0.0.1"
+local port = uci:get("polipo", "general", "proxyPort") or "8123"
+
+-%>
+
+<%+header%>
+
+<div class="cbi-map">
+ <h2><a id="content" name="content"><%:Polipo Status%></a></h2>
+ <div class="cbi-section">
+ <iframe id="sf" src="http://<%=luci.http.getenv('SERVER_NAME')%>:<%=port%>/polipo/" style="width:100%; height:350px; border:none"></iframe>
+ </div>
+</div>
+
+<%+footer%>