applications/luci-polipo: add a simple status frame
authorJo-Philipp Wich <jow@openwrt.org>
Sun, 5 Dec 2010 16:42:36 +0000 (16:42 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sun, 5 Dec 2010 16:42:36 +0000 (16:42 +0000)
applications/luci-polipo/luasrc/controller/polipo.lua
applications/luci-polipo/luasrc/view/polipo_status.htm [new file with mode: 0644]

index aa8c9bf..1ee67e2 100644 (file)
@@ -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 (file)
index 0000000..c2695ca
--- /dev/null
@@ -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%>