summaryrefslogtreecommitdiffstats
path: root/app/expert-html.lsp
blob: 3639f11ff8bcb5f2a412fc93bac5b9860ce56bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<? local form, viewlibrary, page_info, session = ... ?>
<? require("viewfunctions") ?>

<? 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 then
	viewlibrary.dispatch_component("startstop")
end ?>