Remove outdated comment.
[mkws-moved-to-github.git] / src / mkws-filter.js
index 877e8ff..219ccd5 100644 (file)
@@ -37,6 +37,40 @@ function filterSet(team) {
        return false;
     }
 
+    that.pp2filter = function() {
+       var res = "";
+
+       for (var i in m_list) {
+           var filter = m_list[i];
+           if (filter.id) {
+               if (res) res += ",";
+               if (filter.id.match(/^[a-z:]+[=~]/)) {
+                   m_team.log("filter '" + filter.id + "' already begins with SETTING OP");
+               } else {
+                   filter.id = 'pz:id=' + filter.id;
+               }
+               res += filter.id;
+           }
+       }
+
+       return res;
+    }
+
+    that.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;
+    }
+
+
     return that;
 }