summaryrefslogtreecommitdiffstats
path: root/dansguardian-plain-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'dansguardian-plain-html.lsp')
-rw-r--r--dansguardian-plain-html.lsp38
1 files changed, 19 insertions, 19 deletions
diff --git a/dansguardian-plain-html.lsp b/dansguardian-plain-html.lsp
index 7ef2847..5ad57b9 100644
--- a/dansguardian-plain-html.lsp
+++ b/dansguardian-plain-html.lsp
@@ -1,4 +1,4 @@
-<?
+<%
require("viewfunctions")
local form = ...
local data = form.option
@@ -18,23 +18,23 @@ require("viewfunctions")
end
end
-?>
+%>
-<?
+<%
--[[ DEBUG INFORMATION
io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
io.write(html.cfe_unpack(form))
io.write("</span>")
--]]
-?>
+%>
<H1>SYSTEM INFO</H1>
<DL>
-<?
+<%
local myform = form.info
local tags = { "status", "version", "autostart", }
displayinfo(myform,tags,"viewonly")
-?>
+%>
</DL>
<h1>Content Filter (Plain Config File)</h1>
@@ -48,22 +48,22 @@ You must be familiar with the configuration file before proceeding.</DD>
<form action="" method="POST">
<h2>Configuration</h2>
-<textarea name="config"><? io.write( service.config ) ?></textarea>
+<textarea name="config"><% io.write( service.config ) %></textarea>
<h2>Save changes</h2>
<dl>
-<?
+<%
local myform = form.service
local tags = { "cmdsave", }
displayinfo(myform,tags)
-?>
-<? if (service) and (service.error) and (#service.error > 0) then ?>
-<DT>Config status</DT><DD class="error"><? io.write(service.error ) ?></DD>
-<? end ?>
-<? if (service) and (service.cfgerr) and (#service.cfgerr > 0) then ?>
-<DT>Config status</DT><DD class="error"><? io.write(service.cfgerr ) ?></DD>
-<? end ?>
+%>
+<% if (service) and (service.error) and (#service.error > 0) then %>
+<DT>Config status</DT><DD class="error"><% io.write(service.error ) %></DD>
+<% end %>
+<% if (service) and (service.cfgerr) and (#service.cfgerr > 0) then %>
+<DT>Config status</DT><DD class="error"><% io.write(service.cfgerr ) %></DD>
+<% end %>
<DT>Process information</DT><DD>This process runs as a service. When you make and save changes, the configuration
files for the service are changed. However, the changes will not be <i>applied</i>
@@ -75,9 +75,9 @@ until you restart the service.</DD>
<h1>MANAGEMENT</h1>
<form action="" method="POST">
<dl>
-<DT>Daemon control</DT><dd><input class="submit" type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?>>
-<input class="submit" type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?>>
-<input class="submit" type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?>>
-<? if (service.message) and (service.message.descr) and (#service.message.descr > 0) then ?><pre><? io.write( service.message.descr ) ?></pre><? end ?></dd>
+<DT>Daemon control</DT><dd><input class="submit" type="submit" name="srvcmd" value="start" <% io.write( srv1fill ) %>>
+<input class="submit" type="submit" name="srvcmd" value="stop" <% io.write( srv2fill ) %>>
+<input class="submit" type="submit" name="srvcmd" value="restart" <% io.write( srv2fill ) %>>
+<% if (service.message) and (service.message.descr) and (#service.message.descr > 0) then %><pre><% io.write( service.message.descr ) %></pre><% end %></dd>
</dl>
</form>