summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-10-28 22:35:49 +0000
committerTed Trask <ttrask01@yahoo.com>2012-10-28 22:35:49 +0000
commitfbf710df3958200d7d3bb2077e3f4aff4571e093 (patch)
tree3a4e014056e3c3ff2e127f153c71457f248278a5
parent7f57eacee84e04ea3b39ffb5e33ebcdaa2ef48ab (diff)
downloadacf-heimdal-fbf710df3958200d7d3bb2077e3f4aff4571e093.tar.bz2
acf-heimdal-fbf710df3958200d7d3bb2077e3f4aff4571e093.tar.xz
Removed unneeded views by updating CFE for autoview
-rw-r--r--heimdal-kinit-html.lsp11
-rw-r--r--heimdal-model.lua4
2 files changed, 2 insertions, 13 deletions
diff --git a/heimdal-kinit-html.lsp b/heimdal-kinit-html.lsp
deleted file mode 100644
index 15edc19..0000000
--- a/heimdal-kinit-html.lsp
+++ /dev/null
@@ -1,11 +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
- form.value.password.type = "password"
- htmlviewfunctions.displayform(form)
-%>
diff --git a/heimdal-model.lua b/heimdal-model.lua
index abf3745..c0402df 100644
--- a/heimdal-model.lua
+++ b/heimdal-model.lua
@@ -42,8 +42,8 @@ end
function get_kinit()
local value = {}
- value.login = cfe({ label="KDC login" })
- value.password = cfe({ label="KDC password" })
+ value.login = cfe({ label="KDC login", seq=1 })
+ value.password = cfe({ type="password", label="KDC password", seq=2 })
return cfe({ type="group", value=value, label="Kinit Parameters" })
end