diff options
Diffstat (limited to 'libs/web/htdocs/luci-static')
-rw-r--r-- | libs/web/htdocs/luci-static/resources/cbi.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libs/web/htdocs/luci-static/resources/cbi.js b/libs/web/htdocs/luci-static/resources/cbi.js index b21adbbba..05e15d27a 100644 --- a/libs/web/htdocs/luci-static/resources/cbi.js +++ b/libs/web/htdocs/luci-static/resources/cbi.js @@ -42,11 +42,6 @@ var cbi_validators = { return cbi_validators.ip4addr(v) || cbi_validators.ip6addr(v); }, - 'neg_ipaddr': function(v) - { - return cbi_validators.ip4addr(v.replace(/^\s*!/, "")) || cbi_validators.ip6addr(v.replace(/^\s*!/, "")); - }, - 'ip4addr': function(v) { if (v.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})(\/(\S+))?$/)) @@ -64,11 +59,6 @@ var cbi_validators = { return false; }, - 'neg_ip4addr': function(v) - { - return cbi_validators.ip4addr(v.replace(/^\s*!/, "")); - }, - 'ip6addr': function(v) { if( v.match(/^([a-fA-F0-9:.]+)(\/(\d+))?$/) ) @@ -191,12 +181,6 @@ var cbi_validators = { return (v.match(/^[a-zA-Z0-9_]+$/) != null); }, - 'neg_network_ip4addr': function(v) - { - v = v.replace(/^\s*!/, ""); - return cbi_validators.uciname(v) || cbi_validators.ip4addr(v); - }, - 'range': function(v, args) { var min = parseInt(args[0]); |