summaryrefslogtreecommitdiffhomepage
path: root/libs/web/luasrc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/web/luasrc')
-rw-r--r--libs/web/luasrc/cbi/datatypes.lua9
1 files changed, 7 insertions, 2 deletions
diff --git a/libs/web/luasrc/cbi/datatypes.lua b/libs/web/luasrc/cbi/datatypes.lua
index 2fdb5802c..62f06c4b4 100644
--- a/libs/web/luasrc/cbi/datatypes.lua
+++ b/libs/web/luasrc/cbi/datatypes.lua
@@ -35,7 +35,7 @@ function bool(val)
return false
end
-function uint(val)
+function uinteger(val)
local n = tonumber(val)
if n ~= nil and math.floor(n) == n and n >= 0 then
return true
@@ -44,7 +44,7 @@ function uint(val)
return false
end
-function int(val)
+function integer(val)
local n = tonumber(val)
if n ~= nil and math.floor(n) == n then
return true
@@ -53,6 +53,11 @@ function int(val)
return false
end
+function ufloat(val)
+ local n = tonumber(val)
+ return ( n ~= nil and n >= 0 )
+end
+
function float(val)
return ( tonumber(val) ~= nil )
end