From aab0a0e2d71a2b7e250313342c4d63e77f340d25 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 24 Apr 2014 12:41:06 +0100 Subject: [PATCH] Add visitCategories function Add pp2catLimit function --- src/mkws-filter.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 7d9fac0..2266993 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -31,6 +31,15 @@ function filterSet(team) { } }; + that.visitCategories = function(callback) { + for (var i in m_list) { + var filter = m_list[i]; + if (filter.type === 'category') { + callback(filter.id); + } + } + }; + that.removeMatching = function(matchFn) { var newList = []; for (var i in m_list) { @@ -81,6 +90,16 @@ function filterSet(team) { return res; } + that.pp2catLimit = function() { + var res = ""; + + that.visitCategories(function(id) { + if (res) res += ","; + res += "category~" + id.replace(/[\\|,]/g, '\\$&'); + }); + return res; + } + return that; } -- 1.7.10.4