summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2009-10-07 11:27:37 +0200
committerMika Havela <mika.havela@gmail.com>2009-10-07 11:27:37 +0200
commitdc6318ad77ff0d137454e648ecfcb8a169789b74 (patch)
tree836dbbb65c5e7872e8b79ae56d8c5f933004d57a
parent6b153b0a50788c0c847306823e31a68214d36174 (diff)
downloadacf-core-dc6318ad77ff0d137454e648ecfcb8a169789b74.tar.bz2
acf-core-dc6318ad77ff0d137454e648ecfcb8a169789b74.tar.xz
Graphical fix. Adding <DL> to welcome screen.
Removing <H3> from file-edit form to present the [Save] button next to the textarea which the button controls.
-rw-r--r--app/filedetails-html.lsp1
-rw-r--r--app/welcome-html.lsp2
2 files changed, 1 insertions, 2 deletions
diff --git a/app/filedetails-html.lsp b/app/filedetails-html.lsp
index 59d0cdd..02b53d6 100644
--- a/app/filedetails-html.lsp
+++ b/app/filedetails-html.lsp
@@ -29,7 +29,6 @@ displayitem(form.value.mtime)
<% 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>
<% displayformend(form) %>
<% end %>
</form>
diff --git a/app/welcome-html.lsp b/app/welcome-html.lsp
index e4bd2be..88bc934 100644
--- a/app/welcome-html.lsp
+++ b/app/welcome-html.lsp
@@ -1,6 +1,6 @@
<% view = ... %>
<h1>Alpine Configuration Framework</h1>
-<p>Welcome.</p>
+<DL><p>Welcome.</p></DL>
<% --[[
io.write(html.cfe_unpack(view))