summaryrefslogtreecommitdiffstats
path: root/interfaces-editintfile-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-05-30 18:37:19 +0000
committerTed Trask <ttrask01@yahoo.com>2008-05-30 18:37:19 +0000
commita280c3b1faa2847b6d4f850a55d0cd4ea8453283 (patch)
tree762cd65291ba792b83e462f746e41b7381bb9d66 /interfaces-editintfile-html.lsp
parent6c63347a6ae2f25de2bf8cf9aea93ea31a786418 (diff)
downloadacf-alpine-baselayout-a280c3b1faa2847b6d4f850a55d0cd4ea8453283.tar.bz2
acf-alpine-baselayout-a280c3b1faa2847b6d4f850a55d0cd4ea8453283.tar.xz
Updated interfaces to use new cfe model, add more iface families, add more flexibility to editing, show ip status, bring up/down interfaces, and general cleanup.
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1191 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'interfaces-editintfile-html.lsp')
-rw-r--r--interfaces-editintfile-html.lsp27
1 files changed, 27 insertions, 0 deletions
diff --git a/interfaces-editintfile-html.lsp b/interfaces-editintfile-html.lsp
new file mode 100644
index 0000000..4b1f80b
--- /dev/null
+++ b/interfaces-editintfile-html.lsp
@@ -0,0 +1,27 @@
+<? local form = ...
+require("viewfunctions")
+?>
+<?
+--[[ DEBUG INFORMATION
+io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
+io.write(html.cfe_unpack(form))
+io.write("</span>")
+--]]
+?>
+
+<h1>File Details</h1>
+<DL>
+<? displayitem(form.value.filename) ?>
+<? displayitem(form.value.filesize) ?>
+<? displayitem(form.value.mtime) ?>
+</DL>
+
+<h1><?= form.label ?></h1>
+<? if form.descr then ?><P CLASS='descr'><?= string.gsub(form.descr, "\n", "<BR>") ?></P><? end ?>
+<? if form.errtxt then ?><P CLASS='error'><?= string.gsub(form.errtxt, "\n", "<BR>") ?></P><? end ?>
+<form action="" method="POST">
+<textarea name="filecontent">
+<?= form.value.filecontent.value ?>
+</textarea>
+<DL><DT><input class="submit" type="submit" name="<?= form.option ?>" value="Save"></DT></DL>
+</form>