summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/debug-html.lsp11
-rw-r--r--app/filedetails-html.lsp37
-rw-r--r--app/form-html.lsp2
3 files changed, 27 insertions, 23 deletions
diff --git a/app/debug-html.lsp b/app/debug-html.lsp
index ee49434..b768057 100644
--- a/app/debug-html.lsp
+++ b/app/debug-html.lsp
@@ -1,9 +1,12 @@
<% local data, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
-<H1>Debugging</H1>
-<H2>View Data:</H2>
+
+<h1>Debugging</h1>
+<h2>View Data:</h2>
<%= htmlviewfunctions.cfe_unpack(data) %>
-<H2>Session:</H2>
+
+<h2>Session:</h2>
<%= htmlviewfunctions.cfe_unpack(session) %>
-<H2>Page Info:</H2>
+
+<h2>Page Info:</h2>
<%= htmlviewfunctions.cfe_unpack(page_info) %>
diff --git a/app/filedetails-html.lsp b/app/filedetails-html.lsp
index 101861d..dff6eee 100644
--- a/app/filedetails-html.lsp
+++ b/app/filedetails-html.lsp
@@ -2,36 +2,37 @@
<% require("htmlviewfunctions") %>
<% if form.type == "form" then %>
-<H1>Configuration</H1>
-<H2>Expert Configuration</H2>
+ <h1>Configuration</h1>
+ <h2>Expert Configuration</h2>
<% else %>
-<H1>View File</H1>
+ <h1>View File</h1>
<% end %>
-<H3>File Details</H3>
-<DL>
+
+<h3>File Details</h3>
<%
htmlviewfunctions.displayitem(form.value.filename)
htmlviewfunctions.displayitem(form.value.filesize)
htmlviewfunctions.displayitem(form.value.mtime)
%>
-</DL>
-<H3>File Content</H3>
+<h3>File Content</h3>
<% if form.type == "form" then %>
-<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
-<% htmlviewfunctions.displayformstart(form) %>
-<input type="hidden" name="filename" value="<%= html.html_escape(form.value.filename.value) %>">
-<% else %>
-<DL>
+ <% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
+ <% htmlviewfunctions.displayformstart(form) %>
+ <input type="hidden" name="filename" value="<%= html.html_escape(form.value.filename.value) %>">
<% end %>
+
<textarea name="filecontent">
-<%= html.html_escape(form.value.filecontent.value) %>
+ <%= 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><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<br/>") %></p>
+<% end %>
<% if form.type == "form" then %>
-<% htmlviewfunctions.displayformend(form) %>
-<% else %>
-</DL>
+ <% htmlviewfunctions.displayformend(form) %>
<% end %>
diff --git a/app/form-html.lsp b/app/form-html.lsp
index 26389b9..5d1b85d 100644
--- a/app/form-html.lsp
+++ b/app/form-html.lsp
@@ -2,7 +2,7 @@
require("htmlviewfunctions")
%>
-<H1><%= html.html_escape(form.label) %></H1>
+<h1><%= html.html_escape(form.label) %></h1>
<%
htmlviewfunctions.displayform(form, nil, nil, page_info, 2)
%>