summaryrefslogtreecommitdiffstats
path: root/app/expert-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'app/expert-html.lsp')
-rw-r--r--app/expert-html.lsp15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/expert-html.lsp b/app/expert-html.lsp
new file mode 100644
index 0000000..c4a76cd
--- /dev/null
+++ b/app/expert-html.lsp
@@ -0,0 +1,15 @@
+<? local form, viewlibrary, page_info, session = ... ?>
+<? require("viewfunctions") ?>
+
+<? if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("status")
+end ?>
+
+<?
+local func = haserl.loadfile(page_info.viewfile:gsub(page_info.prefix..page_info.controller..".*$", "/") .. "filedetails-html.lsp")
+func(form, viewlibrary, page_info, session)
+?>
+
+<? if viewlibrary and viewlibrary.dispatch_component then
+ viewlibrary.dispatch_component("startstop")
+end ?>