summaryrefslogtreecommitdiffstats
path: root/modules-edit-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-10-30 15:42:33 +0000
committerTed Trask <ttrask01@yahoo.com>2008-10-30 15:42:33 +0000
commit579d59adef6ffdacb911419e0e63c599cd393530 (patch)
tree2da48a381f55b732fe65774bf1c785849fa5badb /modules-edit-html.lsp
parent6a39723b4bad30de3eaf7069653987f5344a5c8a (diff)
downloadacf-alpine-baselayout-579d59adef6ffdacb911419e0e63c599cd393530.tar.bz2
acf-alpine-baselayout-579d59adef6ffdacb911419e0e63c599cd393530.tar.xz
Added modules controller.
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1570 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'modules-edit-html.lsp')
-rw-r--r--modules-edit-html.lsp43
1 files changed, 43 insertions, 0 deletions
diff --git a/modules-edit-html.lsp b/modules-edit-html.lsp
new file mode 100644
index 0000000..75c360f
--- /dev/null
+++ b/modules-edit-html.lsp
@@ -0,0 +1,43 @@
+<% local form, viewlibrary, page_info, session = ... %>
+<% require("viewfunctions") %>
+
+<% displaycommandresults({"reload"}, session) %>
+
+<% if form.type == "form" then %>
+<H1>Configuration</H1>
+<H2>Expert Configuration</H2>
+<% else %>
+<H1>View File</H1>
+<% end %>
+<H3>File Details</H3>
+<DL>
+<%
+displayitem(form.value.filename)
+displayitem(form.value.filesize)
+displayitem(form.value.mtime)
+%>
+</DL>
+
+<H3>File Content</H3>
+<% if form.type == "form" then %>
+<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
+<% displayformstart(form) %>
+<input type="hidden" name="filename" value="<%= form.value.filename.value %>">
+<% end %>
+<textarea name="filecontent">
+<%= html.html_escape(form.value.filecontent.value) %>
+</textarea>
+<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(form.value.filecontent.errtxt, "\n", "<BR>") %></P><% end %>
+<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(form.value.filecontent.descr, "\n", "<BR>") %></P><% end %>
+
+<% if form.type == "form" then %>
+<H3>Save</H3>
+<% displayformend(form) %>
+<% end %>
+</form>
+
+<H1>Reload Modules</H1>
+<DL>
+<DT>Reload Modules</DT>
+<DD><form action="<%= page_info.script .. page_info.prefix .. page_info.controller .. "/reload" %>"><input class="submit" type="submit" value="Reload"></form></DD>
+</DL>