summaryrefslogtreecommitdiffstats
path: root/rrdtool-newgraphcfg-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-02-03 21:50:26 +0000
committerTed Trask <ttrask01@yahoo.com>2014-02-03 21:50:26 +0000
commit45ceb4770df9774a37346f7e0d1ef4f8acec46a9 (patch)
tree53e30ab2afc39b9a5751c0a7635a46b43504ebbe /rrdtool-newgraphcfg-html.lsp
parentb1092115af620b794a1ccc851374974d33e3cf6e (diff)
downloadacf-rrdtool-45ceb4770df9774a37346f7e0d1ef4f8acec46a9.tar.bz2
acf-rrdtool-45ceb4770df9774a37346f7e0d1ef4f8acec46a9.tar.xz
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'rrdtool-newgraphcfg-html.lsp')
-rwxr-xr-xrrdtool-newgraphcfg-html.lsp24
1 files changed, 11 insertions, 13 deletions
diff --git a/rrdtool-newgraphcfg-html.lsp b/rrdtool-newgraphcfg-html.lsp
index 5371cf8..9da49b3 100755
--- a/rrdtool-newgraphcfg-html.lsp
+++ b/rrdtool-newgraphcfg-html.lsp
@@ -2,30 +2,28 @@
<% htmlviewfunctions = require("htmlviewfunctions") %>
<% html = require("acf.html") %>
-<H1>Create new rrdtool-graph file</H1>
+<h1>Create new rrdtool-graph file</h1>
<% if form.type == "form" then %>
<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
<% htmlviewfunctions.displayformstart(form) %>
-<H3>File Details</H3>
-<DL>
-<DT><% io.write(form.value.filename.label) %></DT>
-<DD>
+<h3>File Details</h3>
+<div class='item'><p class='left'><% io.write(form.value.filename.label) %></p>
+<div class='right'>
<input class="text" type="text" name="filename" value="<%= html.html_escape(form.value.filename.value) %>">
-<% if form.value.filename.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filename.errtxt), "\n", "<BR>") %></P><% end %>
-<% if form.value.filename.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filename.descr), "\n", "<BR>") %></P><% end %>
-</DD>
-</DL>
+<% if form.value.filename.errtxt then %><p class='error'><%= string.gsub(html.html_escape(form.value.filename.errtxt), "\n", "<br/>") %></p><% end %>
+<% if form.value.filename.descr then %><p class='descr'><%= string.gsub(html.html_escape(form.value.filename.descr), "\n", "<br/>") %></p><% end %>
+</div></div><!-- end .item -->
<% end %>
-<H3>File Content</H3>
+<h3>File Content</h3>
<textarea name="filecontent">
<%= html.html_escape(form.value.filecontent.value) %>
</textarea>
-<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<BR>") %></P><% end %>
-<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<BR>") %></P><% end %>
+<% if form.value.filecontent.errtxt then %><p class='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<br/>") %></p><% end %>
+<% if form.value.filecontent.descr then %><p class='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<br/>") %></p><% end %>
<% if form.type == "form" then %>
-<H3>Save</H3>
+<h3>Save</h3>
<% htmlviewfunctions.displayformend(form) %>
<% end %>
</form>