summaryrefslogtreecommitdiffstats
path: root/interfaces-editintfile-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces-editintfile-html.lsp')
-rw-r--r--interfaces-editintfile-html.lsp27
1 files changed, 0 insertions, 27 deletions
diff --git a/interfaces-editintfile-html.lsp b/interfaces-editintfile-html.lsp
deleted file mode 100644
index 4b1f80b..0000000
--- a/interfaces-editintfile-html.lsp
+++ /dev/null
@@ -1,27 +0,0 @@
-<? 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>