applications/luci-polipo: add a simple status frame
This commit is contained in:
parent
8a37f56006
commit
b49c904552
2 changed files with 25 additions and 7 deletions
|
@ -17,12 +17,12 @@ function index()
|
||||||
if not nixio.fs.access("/etc/config/polipo") then
|
if not nixio.fs.access("/etc/config/polipo") then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
require("luci.i18n")
|
require("luci.i18n").loadc("polipo")
|
||||||
luci.i18n.loadc("polipo")
|
|
||||||
local i18n = luci.i18n.translate
|
local i18n = luci.i18n.translate
|
||||||
|
|
||||||
local p = entry({"admin", "services", "polipo"}, cbi("polipo"), i18n("Polipo"))
|
entry({"admin", "services", "polipo"}, alias("admin", "services", "polipo", "config"), "Polipo").i18n = "polipo"
|
||||||
p.dependent = true
|
entry({"admin", "services", "polipo", "status"}, template("polipo_status"), i18n("Status"))
|
||||||
p.i18n = "polipo"
|
entry({"admin", "services", "polipo", "config"}, cbi("polipo"), i18n("Configuration"))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
18
applications/luci-polipo/luasrc/view/polipo_status.htm
Normal file
18
applications/luci-polipo/luasrc/view/polipo_status.htm
Normal file
|
@ -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%>
|
Loading…
Reference in a new issue