summaryrefslogtreecommitdiffstats
path: root/logfiles-tail-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-03-08 23:49:47 +0000
committerTed Trask <ttrask01@yahoo.com>2014-03-08 23:49:47 +0000
commit4c0e9b17d5bbcfb7e7a704c6a57af2cfe327c308 (patch)
treee7cc751f7ec4e48c12d2d3aa2c7beb062f9b66cd /logfiles-tail-html.lsp
parentcecb1d586d237c74cd9ef6d05e305726a3072ad0 (diff)
downloadacf-alpine-baselayout-4c0e9b17d5bbcfb7e7a704c6a57af2cfe327c308.tar.bz2
acf-alpine-baselayout-4c0e9b17d5bbcfb7e7a704c6a57af2cfe327c308.tar.xz
Modified HTML views to use new htmlviewfunctions functions and replace links with forms created by displayitem
Use htmlviewfunctions.displayheader .incrementheader .displayitemstart/middle/end
Diffstat (limited to 'logfiles-tail-html.lsp')
-rw-r--r--logfiles-tail-html.lsp7
1 files changed, 4 insertions, 3 deletions
diff --git a/logfiles-tail-html.lsp b/logfiles-tail-html.lsp
index 8666d27..b14a02e 100644
--- a/logfiles-tail-html.lsp
+++ b/logfiles-tail-html.lsp
@@ -73,8 +73,9 @@ end
<textarea id="filecontent">
</textarea>
<p class="error" id="errtxt"></p>
-<div class='item'><p class='left'>Start / Stop tailing file</p>
-<div class='right'>
+<% htmlviewfunctions.displayitemstart() %>
+Start / Stop tailing file
+<% htmlviewfunctions.displayitemmiddle() %>
<input type="button" id="Start" value="Start" onClick='$("#errtxt").empty(); Update(); $("#Start").attr("disabled","disabled");$("#Stop").removeAttr("disabled");'>
<input type="button" id="Stop" value="Stop" onClick='window.clearTimeout(ID); $("#Stop").attr("disabled","disabled");$("#Start").removeAttr("disabled");'>
-</div></div><!-- end .item -->
+<% htmlviewfunctions.displayitemend() %>