summaryrefslogtreecommitdiffhomepage
path: root/libs/web/htdocs/luci-static/resources
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-01-07 22:06:02 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-01-07 22:06:02 +0000
commit3812f2908731c6ff5e59aec4e0c899dbff35c469 (patch)
tree03240788f5e695d0c67428a5cb3458858f317435 /libs/web/htdocs/luci-static/resources
parente4dc649e82edf5aac0668b901eaa1641b388f02c (diff)
libs/web: remove neg_ipaddr, neg_ip4addr and neg_network_ip4addr datatypes, can be represented with neg(type)
Diffstat (limited to 'libs/web/htdocs/luci-static/resources')
-rw-r--r--libs/web/htdocs/luci-static/resources/cbi.js16
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]);