libs/web: add list(...) datatype for space separated lists of arbritary datatypes
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 16 Dec 2011 05:52:24 +0000 (05:52 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 16 Dec 2011 05:52:24 +0000 (05:52 +0000)
libs/web/htdocs/luci-static/resources/cbi.js
libs/web/luasrc/cbi/datatypes.lua

index d1e34d1..8d32b66 100644 (file)
@@ -234,6 +234,24 @@ var cbi_validators = {
                        return cbi_validators[args[0]](v.replace(/^\s*!\s*/, ''));
 
                return false;
                        return cbi_validators[args[0]](v.replace(/^\s*!\s*/, ''));
 
                return false;
+       },
+
+       'list': function(v, args)
+       {
+               var cb = cbi_validators[args[0] || 'string'];
+               if (typeof cb == "function")
+               {
+                       var cbargs = args.slice(1);
+                       var values = v.match(/[^\s]+/g);
+
+                       for (var i = 0; i < values.length; i++)
+                               if (!cb(values[i], cbargs))
+                                       return false;
+
+                       return true;
+               }
+
+               return false;
        }
 };
 
        }
 };
 
index 93b29cb..9a3b735 100644 (file)
@@ -282,3 +282,17 @@ function neg(val, what)
 
        return false
 end
 
        return false
 end
+
+function list(val, what, ...)
+       if type(val) == "string" and what and type(_M[what]) == "function" then
+               for val in val:gmatch("%S+") do
+                       if not _M[what](val, ...) then
+                               return false
+                       end
+               end
+
+               return true
+       end
+
+       return false
+end