summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-01-12 20:34:27 +0000
committerTed Trask <ttrask01@yahoo.com>2009-01-12 20:34:27 +0000
commitf4bffff49b7eac4e1936344d6dd8fa4d5df8f2b4 (patch)
tree941dddf445018f038ed0b4fee51d92eb146cb3c3
parent91a357f0a98cd42129017b8473d9c0879a9582e5 (diff)
downloadacf-core-f4bffff49b7eac4e1936344d6dd8fa4d5df8f2b4.tar.bz2
acf-core-f4bffff49b7eac4e1936344d6dd8fa4d5df8f2b4.tar.xz
Modified several pages to replace contenteditable with readonly. Added readonly to html.lsp and .css files.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1676 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rwxr-xr-xapp/acf-util/password-html.lsp2
-rw-r--r--app/acf-util/roles-editrole-html.lsp2
-rw-r--r--lib/html.lua4
3 files changed, 4 insertions, 4 deletions
diff --git a/app/acf-util/password-html.lsp b/app/acf-util/password-html.lsp
index dca559d..faf8e44 100755
--- a/app/acf-util/password-html.lsp
+++ b/app/acf-util/password-html.lsp
@@ -17,7 +17,7 @@ io.write("</span>")
end
-- If not in newuser action, disable userid
if pageinfo.action ~= "newuser" then
- form.value.userid.contenteditable = false
+ form.value.userid.readonly = true
end
local order = { "userid", "username", "roles", "password", "password_confirm" }
displayform(form, order)
diff --git a/app/acf-util/roles-editrole-html.lsp b/app/acf-util/roles-editrole-html.lsp
index 0a32839..1997a97 100644
--- a/app/acf-util/roles-editrole-html.lsp
+++ b/app/acf-util/roles-editrole-html.lsp
@@ -10,7 +10,7 @@
displayformstart(form, page_info)
-- If editing existing role, disable role
if page_info.action ~= "newrole" then
- form.value.role.contenteditable = false
+ form.value.role.readonly = true
end
io.write("<DL>\n")
displayformitem(form.value.role, "role")
diff --git a/lib/html.lua b/lib/html.lua
index a543659..96bf4ad 100644
--- a/lib/html.lua
+++ b/lib/html.lua
@@ -92,7 +92,7 @@ local generic_input = function ( field_type, v )
for i,k in ipairs ( {
"name", "size", "checked", "maxlength",
"value", "length", "class", "id", "src",
- "align", "alt", "contenteditable",
+ "align", "alt", "contenteditable", "readonly",
"tabindex", "accesskey", "onfocus", "onblur"
} ) do
str = str .. nv_pair ( k, v[k] )
@@ -120,7 +120,7 @@ form.longtext = function ( v )
for i,k in ipairs ( {
"name", "rows", "cols",
"class", "id", "tabindex", "accesskey",
- "onfocus", "onblur"
+ "onfocus", "onblur", "readonly"
} ) do
str = str .. nv_pair ( k, v[k] )
end