diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-02-23 14:49:39 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-02-23 14:49:39 +0000 |
commit | 9291a3452b2d86403a1f4be559736df58571c3f2 (patch) | |
tree | 9505f542ba5fc4fab1ded8e6a17c7ee24599d0fb /syslog-config-html.lsp | |
parent | 6d638ac9d28eac2c144d229359b64c0edaee2b4d (diff) | |
download | acf-alpine-baselayout-9291a3452b2d86403a1f4be559736df58571c3f2.tar.bz2 acf-alpine-baselayout-9291a3452b2d86403a1f4be559736df58571c3f2.tar.xz |
Updates to reflect changes in acf-core-0.15 - viewfunctions becomes htmlviewfunctions
Diffstat (limited to 'syslog-config-html.lsp')
-rw-r--r-- | syslog-config-html.lsp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/syslog-config-html.lsp b/syslog-config-html.lsp index 911b0d1..ef93b3f 100644 --- a/syslog-config-html.lsp +++ b/syslog-config-html.lsp @@ -1,5 +1,5 @@ <% local form, viewlibrary, page_info, session = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") @@ -8,30 +8,30 @@ end %> <H1>Configuration</H1> <H2>Advanced Configuration</H2> <% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %> -<% displayformstart(form) %> +<% htmlviewfunctions.displayformstart(form) %> </DL> <H3>General</H3> <DL> <% - displayformitem(form.value.logfile, "logfile") - displayformitem(form.value.loglevel, "loglevel") - displayformitem(form.value.smallerlogs, "smallerlogs") + htmlviewfunctions.displayformitem(form.value.logfile, "logfile") + htmlviewfunctions.displayformitem(form.value.loglevel, "loglevel") + htmlviewfunctions.displayformitem(form.value.smallerlogs, "smallerlogs") %> </DL> <H3>Log Rotate</H3> <DL> <% - displayformitem(form.value.maxsize, "maxsize") - displayformitem(form.value.numrotate, "numrotate") + htmlviewfunctions.displayformitem(form.value.maxsize, "maxsize") + htmlviewfunctions.displayformitem(form.value.numrotate, "numrotate") %> </DL> <H3>Remote Logging</H3> <DL> <% - displayformitem(form.value.localandnetworklog, "localandnetworklog") - displayformitem(form.value.remotelogging, "remotelogging") + htmlviewfunctions.displayformitem(form.value.localandnetworklog, "localandnetworklog") + htmlviewfunctions.displayformitem(form.value.remotelogging, "remotelogging") %> </DL> <H2>Save and Apply Above Settings</H2> <DL> -<% displayformend(form) %> +<% htmlviewfunctions.displayformend(form) %> |