blob: c4a76cd7d8c589295c3fa2f540bc5f27cb4b1a76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 ?>
|