<% local form = ... require("viewfunctions") %> <% --[[ DEBUG INFORMATION io.write("

DEBUGGING

DEBUG INFO: CFE

") io.write(html.cfe_unpack(form)) io.write("
") --]] %>

INFO

<% local myform = form.info local tags = { "configfile","mtime","category", "name", "activestatus", } displayinfo(myform,tags,"viewonly") %>

CONFIGURE

General

<% local myform = form.info local tags = { "activate" } displayinfo(myform,tags) %>

Details

<% local myform = form.info io.write('') io.write(html.form[myform.filecontent.type](myform.filecontent)) %>

Save

<% local myform = form.info local tags = { "cmdsave" } displayinfo(myform,tags) %>

Delete

You can delete this object. This will result in erazing instead of deactivating it.

When deleting a object, you will not be able to get it back! If you are unsure, it's better to only deactivate this object instead of deleting it.

<% local myform = form.info local tags = { "cmddelete" } displayinfo(myform,tags) %>
<% --[[ %>

CONFIGURATION

Expert config

File details

<% local myform = form.file local tags = { "filename", "filesize", "mtime", "sumerrors", } displayinfo(myform,tags,"viewonly") %>

FILE CONTENT

<% local myform = form.file io.write('') io.write(html.form[myform.filecontent.type](myform.filecontent)) %>

SAVE AND APPLY ABOVE SETTINGS

<% local tags = { "cmddelete", "cmdsave", } displayinfo(myform,tags) %>
<% -- Management buttons local myform = form.management local tags = { "start", "stop", "restart" } if (myform) then io.write("

MANAGEMENT

\n
") displaymanagement(myform,tags) io.write("
") end %>
<% --]] %>