summaryrefslogtreecommitdiffstats
path: root/fetchmail-editentry-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-28 22:43:04 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-28 22:43:04 +0000
commit1cdca3b077976e255a0fe97a081e9d4f7f94d9e2 (patch)
tree2e2f72f4376a3126d9779c4eb8482282449ef4cf /fetchmail-editentry-html.lsp
parenta7007f76bf5fb96a2ee988e411a1207ed60239f5 (diff)
downloadacf-fetchmail-1cdca3b077976e255a0fe97a081e9d4f7f94d9e2.tar.bz2
acf-fetchmail-1cdca3b077976e255a0fe97a081e9d4f7f94d9e2.tar.xz
Removed unneeded views by updating CFE for autoview
Diffstat (limited to 'fetchmail-editentry-html.lsp')
-rw-r--r--fetchmail-editentry-html.lsp18
1 files changed, 0 insertions, 18 deletions
diff --git a/fetchmail-editentry-html.lsp b/fetchmail-editentry-html.lsp
deleted file mode 100644
index 3112425..0000000
--- a/fetchmail-editentry-html.lsp
+++ /dev/null
@@ -1,18 +0,0 @@
-<% local form, viewlibrary, page_info = ...
-require("htmlviewfunctions")
-html = require("acf.html")
-%>
-
-<H1><%= html.html_escape(form.label) %></H1>
-<%
- form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
- if page_info.action == "editentry" then
- form.value.remotehost.readonly = true
- form.value.method.type = "text"
- form.value.method.readonly = true
- form.value.remotemailbox.readonly = true
- form.value.localdomain.readonly = true
- end
- local order = { "remotehost", "enabled", "method", "remotemailbox", "remotepassword", "ssl", "localhost", "localmailbox", "localdomain", "envelope" }
- htmlviewfunctions.displayform(form, order)
-%>