X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-filter.js;h=0b2ea6353429768000f2c17a51f6fd97d1a18d7e;hp=22aeb2046b9eccbe9c0136bdc05d07a69f347895;hb=fad8d5da11b18ef3fe25e8927a298232cbe6be7a;hpb=3de5533466e4168c5450c9ca3edc8eb3a53f2a56 diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 22aeb20..0b2ea63 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -45,9 +45,9 @@ function filterSet(team) { for (var i in m_list) { var filter = m_list[i]; if (matchFn(filter)) { - m_team.log("removeMatching: removing filter " + mkws.$.toJSON(filter)); + m_team.info("removeMatching: removing filter " + mkws.$.toJSON(filter)); } else { - m_team.log("removeMatching: keeping filter " + mkws.$.toJSON(filter)); + m_team.info("removeMatching: keeping filter " + mkws.$.toJSON(filter)); newList.push(filter); } } @@ -70,7 +70,7 @@ function filterSet(team) { that.visitTargets(function(id, name) { if (res) res += ","; if (id.match(/^[a-z:]+[=~]/)) { - m_team.log("filter '" + id + "' already begins with SETTING OP"); + m_team.info("filter '" + id + "' already begins with SETTING OP"); } else { id = 'pz:id=' + id; } @@ -95,7 +95,7 @@ function filterSet(team) { that.visitCategories(function(id) { if (res) res += ","; - res += "category~" + id.replace(/[\\|,]/g, '\\$&'); + res += "category~" + id.replace(/[\\,]/g, '\\$&'); }); return res; }