blob: 2f449d7b0bdc12d3bd5bbb03c6c59051f056bdc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<%
local uci = require "luci.model.uci".cursor()
local http_port = uci:get("radicale2", "server", "host")
local usessl = uci:get("radicale2", "server", "ssl")
if type(http_port) == "table" then
http_port = http_port[1]
end
if http_port then
http_port = http_port:match("(%d+)$")
end
if not http_port then
http_port = "5232"
end
%>
<script type="text/javascript">
<%
if usessl then
%>
var protocol = 'https'
<% else %>
var protocol = 'http'
<% end %>
document.write('<a href="' + protocol + '://' + window.location.hostname + ':' + <%=http_port%> + '/"><%=luci.i18n.translate("Go to Radicale 2.x Web UI")%></a>');
</script>
|