summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rrdtool-expert-html.lsp25
1 files changed, 25 insertions, 0 deletions
diff --git a/rrdtool-expert-html.lsp b/rrdtool-expert-html.lsp
new file mode 100644
index 0000000..6cbb910
--- /dev/null
+++ b/rrdtool-expert-html.lsp
@@ -0,0 +1,25 @@
+<% local form, viewlibrary, page_info, session = ... %>
+<% require("viewfunctions") %>
+
+<%
+--[[ Temporary comment to speed things up
+%>
+<% displaycommandresults({"startstop"}, session) %>
+
+<% if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("status")
+end %>
+
+<%
+--]]
+%>
+
+<%
+local pattern = string.gsub(page_info.prefix..page_info.controller, "[%(%)%.%%%+%-%*%?%[%]%^%$]", "%%%1")
+local func = haserl.loadfile(page_info.viewfile:gsub(pattern..".*$", "/") .. "filedetails-html.lsp")
+func(form, viewlibrary, page_info, session)
+%>
+
+<% if viewlibrary and viewlibrary.dispatch_component and session.permissions[page_info.controller].startstop then
+ viewlibrary.dispatch_component("startstop")
+end %>