summaryrefslogtreecommitdiffstats
path: root/syslog-config-html.lsp
blob: dd9ad02ffd0f2c0043bed90d8c9f429d095512fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<% local form, viewlibrary, page_info, session = ... %>
<% require("viewfunctions") %>
<%
--[[ DEBUG INFORMATION
io.write("<H1>Debugging</H1><span style='color:red'><H2>Debug Info:</H2>")
io.write(html.cfe_unpack(form))
io.write("</span>")
--]]
%>

<% displaycommandresults({"startstop"}, session) %>

<% if viewlibrary and viewlibrary.dispatch_component then
	viewlibrary.dispatch_component("status")
end %>

<H1>Configuration</H1>
<H2>Advanced Configuration</H2>
<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
<% displayformstart(form) %>
</DL>
<H3>General</H3>
<DL>
<% 
	displayformitem(form.value.logfile, "logfile")
	displayformitem(form.value.loglevel, "loglevel")
	displayformitem(form.value.smallerlogs, "smallerlogs")
%>
</DL>
<H3>Log Rotate</H3>
<DL>
<%
	displayformitem(form.value.maxsize, "maxsize")
	displayformitem(form.value.numrotate, "numrotate")
%>
</DL>
<H3>Remote Logging</H3>
<DL>
<% 
	displayformitem(form.value.localandnetworklog, "localandnetworklog")
	displayformitem(form.value.remotelogging, "remotelogging")
%>
</DL>
<H2>Save and Apply Above Settings</H2>
<DL>
<% displayformend(form) %>

<% if viewlibrary and viewlibrary.dispatch_component then
	viewlibrary.dispatch_component("startstop")
end
%>