summaryrefslogtreecommitdiffhomepage
path: root/libs/web/htdocs/luci-static/resources/cbi.js
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-10-30 18:12:39 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-10-30 18:12:39 +0000
commit46222415352ac3b5a99570178a4ed46b759c2e82 (patch)
treefa3ca0e26071a64816e9aa10fcfebefb62e38714 /libs/web/htdocs/luci-static/resources/cbi.js
parentfc5b9e27f0bdc9483f88f368bf3a3090c63bbd39 (diff)
libs/web: introduce "uciname" datatype for cbi validation
Diffstat (limited to 'libs/web/htdocs/luci-static/resources/cbi.js')
-rw-r--r--libs/web/htdocs/luci-static/resources/cbi.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/web/htdocs/luci-static/resources/cbi.js b/libs/web/htdocs/luci-static/resources/cbi.js
index b4137d486..8e2f62aea 100644
--- a/libs/web/htdocs/luci-static/resources/cbi.js
+++ b/libs/web/htdocs/luci-static/resources/cbi.js
@@ -152,6 +152,10 @@ var cbi_validators = {
return (v.length == 5) || (v.length == 13);
},
+ 'uciname': function(v)
+ {
+ return (v.match(/^[a-zA-Z0-9_]+$/) != null);
+ }
};