From de435974523438840fbe250160523d87568f960e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 3 Sep 2005 08:34:31 +0100 Subject: support for adding filters --- prefs.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'prefs.js') diff --git a/prefs.js b/prefs.js index a498bb2e3..e55f7d4f4 100644 --- a/prefs.js +++ b/prefs.js @@ -106,6 +106,31 @@ function toggleSelectRow(sender) { } } +function addFilter() { + + if (!xmlhttp_ready(xmlhttp)) { + printLockingError(); + return + } + + var regexp = document.getElementById("fadd_regexp"); + var match = document.getElementById("fadd_match"); + + if (regexp.value.length == 0) { + notify("Missing filter expression."); + } else { + notify("Adding filter..."); + + xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add®exp=" + + param_escape(regexp.value) + "&match=" + match.value, true); + + xmlhttp.onreadystatechange=filterlist_callback; + xmlhttp.send(null); + + regexp.value = ""; + } + +} function addFeed() { if (!xmlhttp_ready(xmlhttp)) { -- cgit v1.2.3