From: Mike Taylor Date: Wed, 23 Apr 2014 16:44:41 +0000 (+0100) Subject: Remove pp2limit regression-testing scaffold. X-Git-Tag: 1.0.0~862 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=21517d3fc6abff3ced7cad2a68cfb290df60922f Remove pp2limit regression-testing scaffold. --- diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 03e07e1..f19edcb 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -72,29 +72,6 @@ function filterSet(team) { }; that.pp2limit = function(initial) { - var OLD = that.OLD_pp2limit(initial); - var NEW = that.NEW_pp2limit(initial); - if (OLD !== NEW) { - alert("pp2limit(): OLD[" + OLD + "] !== NEW[" + NEW + "]"); - } - return OLD; - }; - - that.OLD_pp2limit = function(initial) { - var res = initial || ""; - - for (var i in m_list) { - var filter = m_list[i]; - if (!filter.id) { - if (res) res += ","; - res += filter.field + "=" + filter.value.replace(/[\\|,]/g, '\\$&'); - } - } - - return res; - }; - - that.NEW_pp2limit = function(initial) { var res = initial || ""; that.visitFields(function(field, value) {