diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2019-11-16 11:29:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-16 11:29:50 +0200 |
commit | 2663c3384c24e6006919984a58c7153d01c05813 (patch) | |
tree | 8fef4b383a6606d0d2bcd7950e1ad103ecccc1a1 /applications/luci-app-nextdns/luasrc/view/nextdns | |
parent | 8b3325f8e757e1db50f3aef803a010da6f68da3a (diff) | |
parent | 4d702a1cf2277288e87ca02ca976a9a437585501 (diff) |
Merge pull request #3291 from rs/feature_nextdns
luci-app-nextdns: add luci integration for nextdns package
Diffstat (limited to 'applications/luci-app-nextdns/luasrc/view/nextdns')
-rw-r--r-- | applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm b/applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm new file mode 100644 index 0000000000..0a98b2704f --- /dev/null +++ b/applications/luci-app-nextdns/luasrc/view/nextdns/logread.htm @@ -0,0 +1,46 @@ +<%+header%> + +<style type="text/css"> + select[readonly], + textarea[readonly] + { + width: 100% !important; + height: 450px !important; + border: 1px solid #cccccc; + padding: 5px; + font-size: 12px; + font-family: monospace; + resize: none; + pointer-events: auto; + cursor: auto; + } +</style> + +<script type="text/javascript"> +//<![CDATA[ + function log_update() + { + XHR.poll(-1, '<%=luci.dispatcher.build_url("admin", "services", "nextdns", "logread")%>', null, + function(x) + { + if (!x) + { + return; + } + var view = document.getElementById("view_id"); + view.value = x.responseText; + view.scrollTop = view.scrollHeight; + }); + } + window.onload = log_update(); +//]]> +</script> + +<div class="cbi-map"> + <div class="cbi-section"> + <div class="cbi-section-descr"><%:The syslog output, pre-filtered for nextdns related messages only.%></div> + <textarea id="view_id" readonly="readonly" wrap="off" value=""></textarea> + </div> +</div> + +<%+footer%> |