]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.js
unify frontend hotkey handlers
[tt-rss.git] / prefs.js
index 8622526dd22ac6e71eafb895f3932a1114f8da2f..19fcc8b6a035d4572b0972be6a407e0b5b96ec54 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -1,34 +1,14 @@
 var xmlhttp = false;
 
-var active_feed = false;
 var active_feed_cat = false;
-var active_filter = false;
 var active_label = false;
-var active_user = false;
 var active_tab = false;
 var feed_to_expand = false;
 
 var piggie_top = -400;
 var piggie_fwd = true;
 
-/*@cc_on @*/
-/*@if (@_jscript_version >= 5)
-// JScript gives us Conditional compilation, we can cope with old IE versions.
-// and security blocked creation of the objects.
-try {
-       xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
-} catch (e) {
-       try {
-               xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
-       } catch (E) {
-               xmlhttp = false;
-       }
-}
-@end @*/
-
-if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
-       xmlhttp = new XMLHttpRequest();
-}
+var xmlhttp = Ajax.getTransport();
 
 function expand_feed_callback() {
        if (xmlhttp.readyState == 4) {
@@ -36,7 +16,7 @@ function expand_feed_callback() {
                        var container = document.getElementById("BRDET-" + feed_to_expand);     
                        container.innerHTML=xmlhttp.responseText;
                        container.style.display = "block";
-                       p_notify("");
+//                     p_notify("");
                } catch (e) {
                        exception_error("expand_feed_callback", e);
                }
@@ -50,19 +30,20 @@ function feedlist_callback() {
                        container.innerHTML=xmlhttp.responseText;
                        selectTab("feedConfig", true);
 
-                       if (active_feed) {
-                               var row = document.getElementById("FEEDR-" + active_feed);
+                       if (active_feed_cat) {
+                               var row = document.getElementById("FCATR-" + active_feed_cat);
                                if (row) {
                                        if (!row.className.match("Selected")) {
                                                row.className = row.className + "Selected";
                                        }               
                                }
-                               var checkbox = document.getElementById("FRCHK-" + active_feed);
+                               var checkbox = document.getElementById("FCCHK-" + active_feed_cat);
                                if (checkbox) {
                                        checkbox.checked = true;
                                }
                        }
-                       p_notify("");
+
+                       notify("");
                } catch (e) {
                        exception_error("feedlist_callback", e);
                }
@@ -72,23 +53,8 @@ function feedlist_callback() {
 function filterlist_callback() {
        var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
-
                container.innerHTML=xmlhttp.responseText;
-
-               if (active_filter) {
-                       var row = document.getElementById("FILRR-" + active_filter);
-                       if (row) {
-                               if (!row.className.match("Selected")) {
-                                       row.className = row.className + "Selected";
-                               }               
-                       }
-                       var checkbox = document.getElementById("FICHK-" + active_filter);
-                       
-                       if (checkbox) {
-                               checkbox.checked = true;
-                       }
-               }
-               p_notify("");
+               notify("");
        }
 }
 
@@ -110,7 +76,7 @@ function labellist_callback() {
                                checkbox.checked = true;
                        }
                }
-               p_notify("");
+               notify("");
        }
 }
 
@@ -118,7 +84,7 @@ function feed_browser_callback() {
        var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
                container.innerHTML=xmlhttp.responseText;
-               p_notify("");
+               notify("");
        }
 }
 
@@ -126,22 +92,7 @@ function userlist_callback() {
        var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
                container.innerHTML=xmlhttp.responseText;
-
-               if (active_user) {
-                       var row = document.getElementById("UMRR-" + active_user);
-                       if (row) {
-                               if (!row.className.match("Selected")) {
-                                       row.className = row.className + "Selected";
-                               }               
-                       }
-                       var checkbox = document.getElementById("UMCHK-" + active_user);
-                       
-                       if (checkbox) {
-                               checkbox.checked = true;
-                       }
-               } 
-
-               p_notify("");
+               notify("");
        }
 }
 
@@ -150,8 +101,8 @@ function prefslist_callback() {
        if (xmlhttp.readyState == 4) {
 
                container.innerHTML=xmlhttp.responseText;
-
-               p_notify("");
+               
+               notify("");
        }
 }
 
@@ -182,7 +133,7 @@ function updateFeedList(sort_key) {
 
 //     document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
 
-       p_notify("Loading, please wait...");
+//     p_notify("Loading, please wait...");
 
        var feed_search = document.getElementById("feed_search");
        var search = "";
@@ -205,7 +156,7 @@ function updateUsersList() {
 
 //     document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
 
-       p_notify("Loading, please wait...");
+//     p_notify("Loading, please wait...");
 
        xmlhttp.open("GET", "backend.php?op=pref-users", true);
        xmlhttp.onreadystatechange=userlist_callback;
@@ -282,13 +233,12 @@ function addFeed() {
 
        if (link.value.length == 0) {
                alert("Error: No feed URL given.");
-       } else if (link.value.match("http://") == null && 
-                       link.value.match("https://") == null) {
+       } else if (!isValidURL(link.value)) {
                alert("Error: Invalid feed URL.");
        } else {
                notify("Adding feed...");
 
-               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&link=" +
+               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&feed_url=" +
                        param_escape(link.value), true);
                xmlhttp.onreadystatechange=feedlist_callback;
                xmlhttp.send(null);
@@ -371,11 +321,12 @@ function editUser(id) {
                return
        }
 
-       active_user = id;
+       selectTableRowsByIdPrefix('prefUserList', 'UMRR-', 'UMCHK-', false);
+       selectTableRowById('UMRR-'+id, 'UMCHK-'+id, true);
 
        xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
                param_escape(id), true);
-       xmlhttp.onreadystatechange=userlist_callback;
+       xmlhttp.onreadystatechange=infobox_callback;
        xmlhttp.send(null);
 
 }
@@ -387,13 +338,14 @@ function editFilter(id) {
                return
        }
 
-       active_filter = id;
+       document.getElementById("create_filter_btn").disabled = true;
 
-       xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" +
-               param_escape(id), true);
-       xmlhttp.onreadystatechange=filterlist_callback;
-       xmlhttp.send(null);
+       selectTableRowsByIdPrefix('prefFilterList', 'FILRR-', 'FICHK-', false);
+       selectTableRowById('FILRR-'+id, 'FICHK-'+id, true);
 
+       xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" + param_escape(id), true);
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
 }
 
 function editFeed(feed) {
@@ -405,21 +357,12 @@ function editFeed(feed) {
                return
        }
 
-       active_feed = feed;
-
-/*     xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
-               param_escape(feed), true);
-       xmlhttp.onreadystatechange=feedlist_callback;
-       xmlhttp.send(null); */
-
+       // clean selection from all rows & select row being edited
        selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
-//     selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-'+feed, 'FRCHK-'+feed, 
-//             true, false);
-
        selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
 
        xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
-               param_escape(active_feed), true);
+               param_escape(feed), true);
 
        xmlhttp.onreadystatechange=infobox_callback;
        xmlhttp.send(null);
@@ -462,37 +405,28 @@ function getSelectedFeedCats() {
        return getSelectedTableRowIds("prefFeedCatList", "FCATR");
 }
 
+function getSelectedFeedsFromBrowser() {
 
-/*function readSelectedFeeds(read) {
-
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
-       }
-
-       var sel_rows = getSelectedFeeds();
+       var list = document.getElementById("browseFeedList");
+       if (!list) list = document.getElementById("browseBigFeedList");
 
-       if (sel_rows.length > 0) {
+       var selected = new Array();
+       
+       for (i = 0; i < list.childNodes.length; i++) {
+               var child = list.childNodes[i];
+               if (child.id && child.id.match("FBROW-")) {
+                       var id = child.id.replace("FBROW-", "");
+                       
+                       var cb = document.getElementById("FBCHK-" + id);
 
-               if (!read) {
-                       op = "unread";
-               } else {
-                       op = "read";
+                       if (cb.checked) {
+                               selected.push(id);
+                       }
                }
-
-               notify("Marking selected feeds as " + op + "...");
-
-               xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=" + op + "&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=notify_callback;
-               xmlhttp.send(null);
-
-       } else {
-
-               alert("No feeds are selected.");
-
        }
-} */
+
+       return selected;
+}
 
 function removeSelectedLabels() {
 
@@ -585,11 +519,11 @@ function removeSelectedFeeds() {
 
        if (sel_rows.length > 0) {
 
-               var ok = confirm("Remove selected feeds?");
+               var ok = confirm("Unsubscribe from selected feeds?");
 
                if (ok) {
 
-                       notify("Removing selected feeds...");
+                       notify("Unsubscribing from selected feeds...");
        
                        xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
                                param_escape(sel_rows.toString()), true);
@@ -644,13 +578,7 @@ function feedEditCancel() {
 
        closeInfoBox();
 
-       active_feed = false;
-
-//     notify("Operation cancelled.");
-
-/*     xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
-       xmlhttp.onreadystatechange=feedlist_callback;
-       xmlhttp.send(null); */
+       selectPrefRows('feed', false); // cleanup feed selection
 
 }
 
@@ -674,75 +602,27 @@ function feedCatEditCancel() {
 function feedEditSave() {
 
        try {
-
-               var feed = active_feed;
        
                if (!xmlhttp_ready(xmlhttp)) {
                        printLockingError();
                        return
                }
-       
-               var link = document.getElementById("iedit_link").value;
-               var title = document.getElementById("iedit_title").value;
-               var upd_intl = document.getElementById("iedit_updintl");
-
-               upd_intl = upd_intl[upd_intl.selectedIndex].id;
-                       
-               var purge_intl = document.getElementById("iedit_purgintl");
 
-               purge_intl = purge_intl[purge_intl.selectedIndex].id;
-               
-               var fcat = document.getElementById("iedit_fcat");
-
-               var is_pvt = document.getElementById("iedit_private");
-               var is_rtl = document.getElementById("iedit_rtl");
+               // FIXME: add parameter validation
 
-               if (is_pvt) {
-                       is_pvt = is_pvt.checked;
-               }
+               var query = Form.serialize("edit_feed_form");
 
-               if (is_rtl) {
-                       is_rtl = is_rtl.checked;
-               }
-
-               var fcat_id = 0;
-       
-               if (fcat) {     
-                       fcat_id = fcat[fcat.selectedIndex].id;
-               }
-
-               var pfeed = document.getElementById("iedit_parent_feed");
-               var parent_feed_id = pfeed[pfeed.selectedIndex].id;
-       
-               if (link.length == 0) {
-                       notify("Feed link cannot be blank.");
-                       return;
-               }
-       
-               if (title.length == 0) {
-                       notify("Feed title cannot be blank.");
-                       return;
-               }
-       
-               var auth_login = document.getElementById("iedit_login").value;
-               var auth_pass = document.getElementById("iedit_pass").value;
-       
-               active_feed = false;
-       
                notify("Saving feed...");
 
-               var query = "op=pref-feeds&subop=editSave&id=" +
-                       feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
-                       "&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl) +
-                       "&catid=" + param_escape(fcat_id) + "&login=" + param_escape(auth_login) +                      
-                       "&pfeed=" + param_escape(parent_feed_id) + "&pass=" + param_escape(auth_pass) +
-                       "&is_pvt=" + param_escape(is_pvt) + "&is_rtl=" + param_escape(is_rtl);
-
                xmlhttp.open("POST", "backend.php", true);
                xmlhttp.onreadystatechange=feedlist_callback;
                xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
-               xmlhttp.send(query); 
-       
+               xmlhttp.send(query);
+
+               closeInfoBox();
+
+               return false;
+
        } catch (e) {
                exception_error("feedEditSave", e);
        } 
@@ -757,11 +637,9 @@ function feedCatEditSave() {
 
        notify("Saving category...");
 
-       var cat_title = document.getElementById("iedit_title").value;
+       var query = Form.serialize("feed_cat_edit_form");
 
-       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=saveCat&id=" +
-               param_escape(active_feed_cat) + "&title=" + param_escape(cat_title), 
-               true);
+       xmlhttp.open("GET", "backend.php?" + query, true);
        xmlhttp.onreadystatechange=feedlist_callback;
        xmlhttp.send(null);
 
@@ -772,11 +650,13 @@ function feedCatEditSave() {
 
 function labelTest() {
 
-       var sqlexp = document.getElementById("iedit_expr").value;
-       var descr = document.getElementById("iedit_descr").value;
+       var form = document.forms['label_edit_form'];
+
+       var sql_exp = form.sql_exp.value;
+       var description = form.description.value;
 
        xmlhttp.open("GET", "backend.php?op=pref-labels&subop=test&expr=" +
-               param_escape(sqlexp) + "&descr=" + param_escape(descr), true);
+               param_escape(sql_exp) + "&descr=" + param_escape(description), true);
 
        xmlhttp.onreadystatechange=infobox_callback;
        xmlhttp.send(null);
@@ -804,6 +684,8 @@ function labelEditCancel() {
 
 //     notify("Operation cancelled.");
 
+       closeInfoBox();
+
        xmlhttp.open("GET", "backend.php?op=pref-labels", true);
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
@@ -817,14 +699,8 @@ function userEditCancel() {
                return
        }
 
-       active_user = false;
-
-//     notify("Operation cancelled.");
-
-       xmlhttp.open("GET", "backend.php?op=pref-users", true);
-       xmlhttp.onreadystatechange=userlist_callback;
-       xmlhttp.send(null);
-
+       selectPrefRows('user', false); // cleanup feed selection
+       closeInfoBox();
 }
 
 function filterEditCancel() {
@@ -834,14 +710,10 @@ function filterEditCancel() {
                return
        }
 
-       active_filter = false;
-
-//     notify("Operation cancelled.");
-
-       xmlhttp.open("GET", "backend.php?op=pref-filters", true);
-       xmlhttp.onreadystatechange=filterlist_callback;
-       xmlhttp.send(null);
-
+       document.getElementById("create_filter_btn").disabled = false;
+       
+       selectPrefRows('filter', false); // cleanup feed selection
+       closeInfoBox();
 }
 
 function labelEditSave() {
@@ -853,29 +725,28 @@ function labelEditSave() {
                return
        }
 
-       var sqlexp = document.getElementById("iedit_expr").value;
-       var descr = document.getElementById("iedit_descr").value;
+       var sql_exp = document.forms["label_edit_form"].sql_exp.value;
+       var description = document.forms["label_edit_form"].description.value;
 
-//     notify("Saving label " + sqlexp + ": " + descr);
-
-       if (sqlexp.length == 0) {
-               notify("SQL expression cannot be blank.");
+       if (sql_exp.length == 0) {
+               alert("SQL Expression cannot be blank.");
                return;
        }
 
-       if (descr.length == 0) {
-               notify("Caption cannot be blank.");
+       if (description.length == 0) {
+               alert("Caption field cannot be blank.");
                return;
        }
 
+       closeInfoBox();
+
        notify("Saving label...");
 
        active_label = false;
 
-       xmlhttp.open("GET", "backend.php?op=pref-labels&subop=editSave&id=" +
-               label + "&s=" + param_escape(sqlexp) + "&d=" + param_escape(descr),
-               true);
-               
+       query = Form.serialize("label_edit_form");
+
+       xmlhttp.open("GET", "backend.php?" + query, true);              
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
 
@@ -883,79 +754,55 @@ function labelEditSave() {
 
 function userEditSave() {
 
-       var user = active_user;
-
        if (!xmlhttp_ready(xmlhttp)) {
                printLockingError();
                return
        }
 
-       var login = document.getElementById("iedit_ulogin").value;
-       var level = document.getElementById("iedit_ulevel");
-
-       level = level[level.selectedIndex].id;
-       
-       var email = document.getElementById("iedit_email").value;
+       var login = document.forms["user_edit_form"].login.value;
 
        if (login.length == 0) {
-               notify("Login cannot be blank.");
-               return;
-       }
-
-       if (level.length == 0) {
-               notify("User level cannot be blank.");
+               alert("Login field cannot be blank.");
                return;
        }
-
-       active_user = false;
-
+       
        notify("Saving user...");
 
-       xmlhttp.open("GET", "backend.php?op=pref-users&subop=editSave&id=" +
-               user + "&l=" + param_escape(login) + "&al=" + param_escape(level) +
-               "&e=" + param_escape(email), true);
-               
+       closeInfoBox();
+
+       var query = Form.serialize("user_edit_form");
+       
+       xmlhttp.open("GET", "backend.php?" + query, true);                      
        xmlhttp.onreadystatechange=userlist_callback;
        xmlhttp.send(null);
-
 }
 
 
 function filterEditSave() {
 
-       var filter = active_filter;
-
        if (!xmlhttp_ready(xmlhttp)) {
                printLockingError();
                return
        }
 
-       var regexp = document.getElementById("iedit_regexp").value;
-       var match = document.getElementById("iedit_match");
-
-       var v_match = match[match.selectedIndex].text;
-
-       var feed = document.getElementById("iedit_feed");
-       var feed_id = feed[feed.selectedIndex].id;
-
-       var action = document.getElementById("iedit_filter_action");
-       var action_id = action[action.selectedIndex].id;
+       var reg_exp = document.forms["filter_edit_form"].reg_exp.value;
 
-       if (regexp.length == 0) {
-               alert("Can't save filter: match expression is blank.");
+       if (reg_exp.length == 0) {
+               alert("Filter expression field cannot be blank.");
                return;
        }
 
-       active_filter = false;
+       notify("Saving filter...");
 
-       xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
-               filter + "&r=" + param_escape(regexp) + "&m=" + param_escape(v_match) + 
-               "&fid=" + param_escape(feed_id) + "&aid=" + param_escape(action_id), true);
+       var query = Form.serialize("filter_edit_form");
 
-       notify("Saving filter...");
+       closeInfoBox();
 
+       document.getElementById("create_filter_btn").disabled = false;
+
+       xmlhttp.open("GET", "backend.php?" + query, true);
        xmlhttp.onreadystatechange=filterlist_callback;
-       xmlhttp.send(null); 
+       xmlhttp.send(null);
 
 }
 
@@ -1191,7 +1038,7 @@ function localPiggieFunction(enable) {
                var piggie = document.getElementById("piggie");
                piggie.style.display = "block";
 
-               if (navigator.userAgent.match("Firefox") && Math.random(1) > 0.5) {     
+               if (navigator.userAgent.match("Gecko") && Math.random(1) > 0.5) {       
                        piggie2_callback();
                } else {
                        piggie_callback();
@@ -1220,7 +1067,7 @@ function updateFilterList() {
 
 //     document.getElementById("prefContent").innerHTML = "Loading filters, please wait...";
 
-       p_notify("Loading, please wait...");
+//     p_notify("Loading, please wait...");
 
        xmlhttp.open("GET", "backend.php?op=pref-filters", true);
        xmlhttp.onreadystatechange=filterlist_callback;
@@ -1235,7 +1082,7 @@ function updateLabelList() {
                return
        }
 
-       p_notify("Loading, please wait...");
+//     p_notify("Loading, please wait...");
 
 //     document.getElementById("prefContent").innerHTML = "Loading labels, please wait...";
 
@@ -1251,7 +1098,7 @@ function updatePrefsList() {
                return
        }
 
-       p_notify("Loading, please wait...");
+//     p_notify("Loading, please wait...");
 
        xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
        xmlhttp.onreadystatechange=prefslist_callback;
@@ -1270,6 +1117,15 @@ function selectTab(id, noupdate) {
 
        if (!noupdate) {
 
+               notify("Loading, please wait...", true);
+
+               // close active infobox if needed
+               closeInfoBox();
+
+               // clean up all current selections, just in case
+               active_feed_cat = false;
+               active_label = false;
+
                if (id == "feedConfig") {
                        updateFeedList();
                } else if (id == "filterConfig") {
@@ -1343,7 +1199,7 @@ function categorizeSelectedFeeds() {
        var sel_rows = getSelectedFeeds();
 
        var cat_sel = document.getElementById("sfeed_set_fcat");
-       var cat_id = cat_sel[cat_sel.selectedIndex].id;
+       var cat_id = cat_sel[cat_sel.selectedIndex].value;
 
        if (sel_rows.length > 0) {
 
@@ -1376,24 +1232,8 @@ function browseFeeds(limit) {
 
 function feedBrowserSubscribe() {
        try {
-               var list = document.getElementById("browseFeedList");
-
-               if (!list) list = document.getElementById("browseBigFeedList");
 
-               var selected = new Array();
-
-               for (i = 0; i < list.childNodes.length; i++) {
-                       var child = list.childNodes[i];
-                       if (child.id && child.id.match("FBROW-")) {
-                               var id = child.id.replace("FBROW-", "");
-                               
-                               var cb = document.getElementById("FBCHK-" + id);
-
-                               if (cb.checked) {
-                                       selected.push(id);
-                               }
-                       }
-               }
+               var selected = getSelectedFeedsFromBrowser();
 
                if (selected.length > 0) {
                        closeInfoBox();
@@ -1417,7 +1257,7 @@ function updateBigFeedBrowser(limit) {
                return
        }
 
-       p_notify("Loading, please wait...");
+//     p_notify("Loading, please wait...");
 
        var query = "backend.php?op=pref-feed-browser";
 
@@ -1440,6 +1280,11 @@ function browserToggleExpand(id) {
                        d.style.display = "none";
                } */
 
+               if (!xmlhttp_ready(xmlhttp)) {
+                       printLockingError();
+                       return
+               }
+
                var d = document.getElementById("BRDET-" + id);
 
                if (d.style.display == "block") {               
@@ -1449,6 +1294,9 @@ function browserToggleExpand(id) {
        
                        feed_to_expand = id;
 
+                       d.style.display = "block";
+                       d.innerHTML = "Loading, please wait...";
+
                        xmlhttp.open("GET", "backend.php?op=pref-feed-browser&subop=details&id="
                                + param_escape(id), true);
                        xmlhttp.onreadystatechange=expand_feed_callback;
@@ -1462,7 +1310,7 @@ function browserToggleExpand(id) {
 
 function validateNewPassword(form) {
        if (form.OLD_PASSWORD.value == "") {
-               alert("Current password cannot be blank");
+               alert("Old password cannot be blank");
                return false;
        }
        if (form.NEW_PASSWORD.value == "") {
@@ -1471,3 +1319,84 @@ function validateNewPassword(form) {
        }
        return true;
 }
+
+function selectPrefRows(kind, select) {
+
+       if (kind) {
+               var opbarid = false;    
+               var nchk = false;
+               var nrow = false;
+               var lname = false;
+
+               if (kind == "feed") {
+                       opbarid = "feedOpToolbar";
+                       nrow = "FEEDR-";
+                       nchk = "FRCHK-";                        
+                       lname = "prefFeedList";
+               } else if (kind == "fcat") {
+                       opbarid = "catOpToolbar";
+                       nrow = "FCATR-";
+                       nchk = "FCHK-";
+                       lname = "prefFeedCatList";
+               } else if (kind == "filter") {
+                       opbarid = "filterOpToolbar";
+                       nrow = "FILRR-";
+                       nchk = "FICHK-";
+                       lname = "prefFilterList";
+               } else if (kind == "label") {
+                       opbarid = "labelOpToolbar";
+                       nrow = "LILRR-";
+                       nchk = "LCHK-";
+                       lname = "prefLabelList";
+               } else if (kind == "user") {
+                       opbarid = "userOpToolbar";
+                       nrow = "UMRR-";
+                       nchk = "UMCHK-";
+                       lname = "prefUserList";
+               }
+
+               if (opbarid) {
+                       selectTableRowsByIdPrefix(lname, nrow, nchk, select);
+                       disableContainerChildren(opbarid, !select);
+               }
+
+       } 
+}
+
+
+function toggleSelectPrefRow(sender, kind) {
+
+       toggleSelectRow(sender);
+
+       if (kind) {
+               var opbarid = false;    
+               var nsel = -1;
+               
+               if (kind == "feed") {
+                       opbarid = "feedOpToolbar";
+                       nsel = getSelectedFeeds();
+               } else if (kind == "fcat") {
+                       opbarid = "catOpToolbar";
+                       nsel = getSelectedFeedCats();
+               } else if (kind == "filter") {
+                       opbarid = "filterOpToolbar";
+                       nsel = getSelectedFilters();
+               } else if (kind == "label") {
+                       opbarid = "labelOpToolbar";
+                       nsel = getSelectedLabels();
+               } else if (kind == "user") {
+                       opbarid = "userOpToolbar";
+                       nsel = getSelectedUsers();
+               }
+
+               if (opbarid && nsel != -1) {
+                       disableContainerChildren(opbarid, nsel == false);
+               }
+
+       } 
+}
+
+function toggleSelectFBListRow(sender) {
+       toggleSelectListRow(sender);
+       disableContainerChildren("fbrOpToolbar", getSelectedFeedsFromBrowser() == 0);
+}