]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.js
initial feed browser work
[tt-rss.git] / prefs.js
index b9973fd2e6925c7cc3ad8b4ed2e8bcc4d12c805f..3f88fff1977b14f8d520fc6dfbc8fdba0a61b8f1 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -1,13 +1,10 @@
-/*
-       This program is Copyright (c) 2003-2005 Andrew Dolgov <cthulhoo@gmail.com>              
-       Licensed under GPL v.2 or (at your preference) any later version.
-*/
-
 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;
 
@@ -31,17 +28,44 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
 }
 
 function feedlist_callback() {
+       if (xmlhttp.readyState == 4) {
+               try {   
+                       var container = document.getElementById('prefContent'); 
+                       container.innerHTML=xmlhttp.responseText;
+                       if (active_feed) {
+                               var row = document.getElementById("FEEDR-" + active_feed);
+                               if (row) {
+                                       if (!row.className.match("Selected")) {
+                                               row.className = row.className + "Selected";
+                                       }               
+                               }
+                               var checkbox = document.getElementById("FRCHK-" + active_feed);
+                               if (checkbox) {
+                                       checkbox.checked = true;
+                               }
+                       }
+                       p_notify("");
+               } catch (e) {
+                       exception_error("feedlist_callback", e);
+               }
+       }
+}
+
+function filterlist_callback() {
        var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
+
                container.innerHTML=xmlhttp.responseText;
-               if (active_feed) {
-                       var row = document.getElementById("FEEDR-" + active_feed);
+
+               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("FRCHK-" + active_feed);
+                       var checkbox = document.getElementById("FICHK-" + active_filter);
+                       
                        if (checkbox) {
                                checkbox.checked = true;
                        }
@@ -50,20 +74,19 @@ function feedlist_callback() {
        }
 }
 
-function filterlist_callback() {
+function labellist_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 (active_label) {
+                       var row = document.getElementById("LILRR-" + active_label);
                        if (row) {
                                if (!row.className.match("Selected")) {
                                        row.className = row.className + "Selected";
                                }               
                        }
-                       var checkbox = document.getElementById("FICHK-" + active_filter);
+                       var checkbox = document.getElementById("LICHK-" + active_label);
                        
                        if (checkbox) {
                                checkbox.checked = true;
@@ -73,27 +96,67 @@ function filterlist_callback() {
        }
 }
 
-function labellist_callback() {
+function userlist_callback() {
        var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
                container.innerHTML=xmlhttp.responseText;
 
-               if (active_filter) {
-                       var row = document.getElementById("LILRR-" + active_label);
+               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("LICHK-" + active_label);
+                       var checkbox = document.getElementById("UMCHK-" + active_user);
                        
                        if (checkbox) {
                                checkbox.checked = true;
                        }
+               } 
+
+               p_notify("");
+       }
+}
+
+function infobox_callback() {
+       if (xmlhttp.readyState == 4) {
+               var box = document.getElementById('infoBox');
+               var shadow = document.getElementById('infoBoxShadow');
+
+               if (box) {
+                       box.innerHTML=xmlhttp.responseText;
+                       if (shadow) {
+                               shadow.style.display = "block";
+                       } else {
+                               box.style.display = "block";                            
+                       }
                }
+       }
+}
+
+
+function prefslist_callback() {
+       var container = document.getElementById('prefContent');
+       if (xmlhttp.readyState == 4) {
+
+               container.innerHTML=xmlhttp.responseText;
+
                p_notify("");
        }
 }
+
+function gethelp_callback() {
+       var container = document.getElementById('prefHelpBox');
+       if (xmlhttp.readyState == 4) {
+
+               container.innerHTML = xmlhttp.responseText;
+               container.style.display = "block";
+
+       }
+}
+
+
 function notify_callback() {
        var container = document.getElementById('notify');
        if (xmlhttp.readyState == 4) {
@@ -101,8 +164,7 @@ function notify_callback() {
        }
 }
 
-
-function updateFeedList() {
+function updateFeedList(sort_key) {
 
        if (!xmlhttp_ready(xmlhttp)) {
                printLockingError();
@@ -113,24 +175,33 @@ function updateFeedList() {
 
        p_notify("Loading, please wait...");
 
-       xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
+       var feed_search = document.getElementById("feed_search");
+       var search = "";
+       if (feed_search) { search = feed_search.value; }
+
+       xmlhttp.open("GET", "backend.php?op=pref-feeds" +
+               "&sort=" + param_escape(sort_key) + 
+               "&search=" + param_escape(search), true);
        xmlhttp.onreadystatechange=feedlist_callback;
        xmlhttp.send(null);
 
 }
 
-function toggleSelectRow(sender) {
-       var parent_row = sender.parentNode.parentNode;
+function updateUsersList() {
 
-       if (sender.checked) {
-               if (!parent_row.className.match("Selected")) {
-                       parent_row.className = parent_row.className + "Selected";
-               }
-       } else {
-               if (parent_row.className.match("Selected")) {
-                       parent_row.className = parent_row.className.replace("Selected", "");
-               }
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
        }
+
+//     document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
+
+       p_notify("Loading, please wait...");
+
+       xmlhttp.open("GET", "backend.php?op=pref-users", true);
+       xmlhttp.onreadystatechange=userlist_callback;
+       xmlhttp.send(null);
+
 }
 
 function addLabel() {
@@ -167,6 +238,8 @@ function addFilter() {
 
        var regexp = document.getElementById("fadd_regexp");
        var match = document.getElementById("fadd_match");
+       var feed = document.getElementById("fadd_feed");
+       var action = document.getElementById("fadd_action");
 
        if (regexp.value.length == 0) {
                notify("Missing filter expression.");
@@ -174,9 +247,12 @@ function addFilter() {
                notify("Adding filter...");
 
                var v_match = match[match.selectedIndex].text;
+               var feed_id = feed[feed.selectedIndex].id;
+               var action_id = action[action.selectedIndex].id;
 
                xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add&regexp=" +
-                       param_escape(regexp.value) + "&match=" + v_match, true);                        
+                       param_escape(regexp.value) + "&match=" + v_match +
+                       "&fid=" + param_escape(feed_id) + "&aid=" + param_escape(action_id), true);
                        
                xmlhttp.onreadystatechange=filterlist_callback;
                xmlhttp.send(null);
@@ -211,6 +287,55 @@ function addFeed() {
 
 }
 
+function addFeedCat() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var cat = document.getElementById("fadd_cat");
+
+       if (cat.value.length == 0) {
+               notify("Missing feed category.");
+       } else {
+               notify("Adding feed category...");
+
+               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=addCat&cat=" +
+                       param_escape(cat.value), true);
+               xmlhttp.onreadystatechange=feedlist_callback;
+               xmlhttp.send(null);
+
+               link.value = "";
+
+       }
+
+}
+function addUser() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var sqlexp = document.getElementById("uadd_box");
+
+       if (sqlexp.value.length == 0) {
+               notify("Missing user login.");
+       } else {
+               notify("Adding user...");
+
+               xmlhttp.open("GET", "backend.php?op=pref-users&subop=add&login=" +
+                       param_escape(sqlexp.value), true);                      
+                       
+               xmlhttp.onreadystatechange=userlist_callback;
+               xmlhttp.send(null);
+
+               sqlexp.value = "";
+       }
+
+}
+
 function editLabel(id) {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -227,6 +352,22 @@ function editLabel(id) {
 
 }
 
+function editUser(id) {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       active_user = id;
+
+       xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
+               param_escape(id), true);
+       xmlhttp.onreadystatechange=userlist_callback;
+       xmlhttp.send(null);
+
+}
+
 function editFilter(id) {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -254,63 +395,63 @@ function editFeed(feed) {
 
        active_feed = feed;
 
-       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
+/*     xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
                param_escape(feed), true);
        xmlhttp.onreadystatechange=feedlist_callback;
-       xmlhttp.send(null);
+       xmlhttp.send(null); */
 
-}
-
-function getSelectedLabels() {
+       selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
+//     selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-'+feed, 'FRCHK-'+feed, 
+//             true, false);
 
-       var content = document.getElementById("prefLabelList");
+       selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
 
-       var sel_rows = new Array();
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
+               param_escape(active_feed), true);
 
-       for (i = 0; i < content.rows.length; i++) {
-               if (content.rows[i].className.match("Selected")) {
-                       var row_id = content.rows[i].id.replace("LILRR-", "");
-                       sel_rows.push(row_id);  
-               }
-       }
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
 
-       return sel_rows;
 }
 
+function editFeedCat(cat) {
 
-function getSelectedFilters() {
-
-       var content = document.getElementById("prefFilterList");
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
 
-       var sel_rows = new Array();
+       active_feed_cat = cat;
 
-       for (i = 0; i < content.rows.length; i++) {
-               if (content.rows[i].className.match("Selected")) {
-                       var row_id = content.rows[i].id.replace("FILRR-", "");
-                       sel_rows.push(row_id);  
-               }
-       }
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCat&id=" +
+               param_escape(cat), true);
+       xmlhttp.onreadystatechange=feedlist_callback;
+       xmlhttp.send(null);
 
-       return sel_rows;
 }
 
-function getSelectedFeeds() {
+function getSelectedLabels() {
+       return getSelectedTableRowIds("prefLabelList", "LILRR");
+}
 
-       var content = document.getElementById("prefFeedList");
+function getSelectedUsers() {
+       return getSelectedTableRowIds("prefUserList", "UMRR");
+}
 
-       var sel_rows = new Array();
+function getSelectedFeeds() {
+       return getSelectedTableRowIds("prefFeedList", "FEEDR");
+}
 
-       for (i = 0; i < content.rows.length; i++) {
-               if (content.rows[i].className.match("Selected")) {
-                       var row_id = content.rows[i].id.replace("FEEDR-", "");
-                       sel_rows.push(row_id);  
-               }
-       }
+function getSelectedFilters() {
+       return getSelectedTableRowIds("prefFilterList", "FILRR");
+}
 
-       return sel_rows;
+function getSelectedFeedCats() {
+       return getSelectedTableRowIds("prefFeedCatList", "FCATR");
 }
 
-function readSelectedFeeds() {
+
+function readSelectedFeeds(read) {
 
        if (!xmlhttp_ready(xmlhttp)) {
                printLockingError();
@@ -321,9 +462,15 @@ function readSelectedFeeds() {
 
        if (sel_rows.length > 0) {
 
-               notify("Marking selected feeds as read...");
+               if (!read) {
+                       op = "unread";
+               } else {
+                       op = "read";
+               }
 
-               xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=unread&ids="+
+               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);
@@ -335,48 +482,53 @@ function readSelectedFeeds() {
        }
 }
 
-function unreadSelectedFeeds() {
+function removeSelectedLabels() {
 
        if (!xmlhttp_ready(xmlhttp)) {
                printLockingError();
                return
        }
 
-       var sel_rows = getSelectedFeeds();
+       var sel_rows = getSelectedLabels();
 
        if (sel_rows.length > 0) {
 
-               notify("Marking selected feeds as unread...");
-
-               xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=unread&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=notify_callback;
-               xmlhttp.send(null);
+               var ok = confirm("Remove selected labels?");
 
+               if (ok) {
+                       notify("Removing selected labels...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=labellist_callback;
+                       xmlhttp.send(null);
+               }
        } else {
-
-               notify("Please select some feeds first.");
-
+               notify("Please select some labels first.");
        }
 }
 
-function removeSelectedLabels() {
+function removeSelectedUsers() {
 
        if (!xmlhttp_ready(xmlhttp)) {
                printLockingError();
                return
        }
 
-       var sel_rows = getSelectedLabels();
+       var sel_rows = getSelectedUsers();
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected labels...");
+               var ok = confirm("Remove selected users?");
 
-               xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=labellist_callback;
-               xmlhttp.send(null);
+               if (ok) {
+                       notify("Removing selected users...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=userlist_callback;
+                       xmlhttp.send(null);
+               }
 
        } else {
                notify("Please select some labels first.");
@@ -394,13 +546,16 @@ function removeSelectedFilters() {
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected filters...");
-
-               xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=filterlist_callback;
-               xmlhttp.send(null);
+               var ok = confirm("Remove selected filters?");
 
+               if (ok) {
+                       notify("Removing selected filters...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=filterlist_callback;
+                       xmlhttp.send(null);
+               }
        } else {
                notify("Please select some filters first.");
        }
@@ -418,12 +573,47 @@ function removeSelectedFeeds() {
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected feeds...");
+               var ok = confirm("Remove selected feeds?");
 
-               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=feedlist_callback;
-               xmlhttp.send(null);
+               if (ok) {
+
+                       notify("Removing selected feeds...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=feedlist_callback;
+                       xmlhttp.send(null);
+               }
+
+       } else {
+
+               notify("Please select some feeds first.");
+
+       }
+
+}
+
+function removeSelectedFeedCats() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var sel_rows = getSelectedFeedCats();
+
+       if (sel_rows.length > 0) {
+
+               var ok = confirm("Remove selected categories?");
+
+               if (ok) {
+                       notify("Removing selected categories...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=removeCats&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=feedlist_callback;
+                       xmlhttp.send(null);
+               }
 
        } else {
 
@@ -440,10 +630,29 @@ function feedEditCancel() {
                return
        }
 
+       closeInfoBox();
+
        active_feed = false;
 
        notify("Operation cancelled.");
 
+/*     xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
+       xmlhttp.onreadystatechange=feedlist_callback;
+       xmlhttp.send(null); */
+
+}
+
+function feedCatEditCancel() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       active_feed_cat = false;
+
+       notify("Operation cancelled.");
+
        xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
        xmlhttp.onreadystatechange=feedlist_callback;
        xmlhttp.send(null);
@@ -452,46 +661,100 @@ function feedEditCancel() {
 
 function feedEditSave() {
 
-       var feed = active_feed;
+       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").value;
+               var purge_intl = document.getElementById("iedit_purgintl").value;
+               var fcat = document.getElementById("iedit_fcat");
+       
+               var 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);
+
+               xmlhttp.open("POST", "backend.php", true);
+               xmlhttp.onreadystatechange=feedlist_callback;
+               xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
+               xmlhttp.send(query);
+       
+       } catch (e) {
+               exception_error("feedEditSave", e);
+       }
+}
+
+function feedCatEditSave() {
 
        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").value;
-       var purge_intl = document.getElementById("iedit_purgintl").value;
+       notify("Saving category...");
 
-//     notify("Saving feed.");
+       var cat_title = document.getElementById("iedit_title").value;
 
-/*     if (upd_intl < 0) {
-               notify("Update interval must be &gt;= 0 (0 = default)");
-               return;
-       }
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=saveCat&id=" +
+               param_escape(active_feed_cat) + "&title=" + param_escape(cat_title), 
+               true);
+       xmlhttp.onreadystatechange=feedlist_callback;
+       xmlhttp.send(null);
 
-       if (purge_intl < 0) {
-               notify("Purge days must be &gt;= 0 (0 = default)");
-               return;
-       } */
+       active_feed_cat = false;
 
-       if (link.length == 0) {
-               notify("Feed link cannot be blank.");
-               return;
-       }
+}
 
-       if (title.length == 0) {
-               notify("Feed title cannot be blank.");
-               return;
-       }
 
-       active_feed = false;
+function labelTest() {
 
-       xmlhttp.open("GET", "backend.php?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), true);
-       xmlhttp.onreadystatechange=feedlist_callback;
+       var sqlexp = document.getElementById("iedit_expr").value;
+       var descr = document.getElementById("iedit_descr").value;
+
+       xmlhttp.open("GET", "backend.php?op=pref-labels&subop=test&expr=" +
+               param_escape(sqlexp) + "&descr=" + param_escape(descr), true);
+
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
+
+}
+
+function displayHelpInfobox(topic_id) {
+
+       xmlhttp.open("GET", "backend.php?op=help&tid=" +
+               param_escape(topic_id) + "&noheaders=1", true);
+
+       xmlhttp.onreadystatechange=infobox_callback;
        xmlhttp.send(null);
 
 }
@@ -513,6 +776,22 @@ function labelEditCancel() {
 
 }
 
+function userEditCancel() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       active_user = false;
+
+       notify("Operation cancelled.");
+
+       xmlhttp.open("GET", "backend.php?op=pref-users", true);
+       xmlhttp.onreadystatechange=userlist_callback;
+       xmlhttp.send(null);
+
+}
 
 function filterEditCancel() {
 
@@ -555,6 +834,8 @@ function labelEditSave() {
                return;
        }
 
+       notify("Saving label...");
+
        active_label = false;
 
        xmlhttp.open("GET", "backend.php?op=pref-labels&subop=editSave&id=" +
@@ -566,6 +847,43 @@ 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").value;
+       var email = document.getElementById("iedit_email").value;
+
+       if (login.length == 0) {
+               notify("Login cannot be blank.");
+               return;
+       }
+
+       if (level.length == 0) {
+               notify("User level 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);
+               
+       xmlhttp.onreadystatechange=userlist_callback;
+       xmlhttp.send(null);
+
+}
+
+
 function filterEditSave() {
 
        var filter = active_filter;
@@ -581,6 +899,12 @@ function filterEditSave() {
 
        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;
+
 //     notify("Saving filter " + filter + ": " + regexp + ", " + descr + ", " + match);
 
        if (regexp.length == 0) {
@@ -592,8 +916,11 @@ function filterEditSave() {
 
        xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
                filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
-               "&m=" + param_escape(v_match), true);
-               
+               "&m=" + param_escape(v_match) + "&fid=" + param_escape(feed_id) + 
+               "&aid=" + param_escape(action_id), true);
+
+       notify("Saving filter...");
+
        xmlhttp.onreadystatechange=filterlist_callback;
        xmlhttp.send(null); 
 
@@ -612,10 +939,115 @@ function editSelectedLabel() {
                return;
        }
 
+       notify("");
+
        editLabel(rows[0]);
 
 }
 
+function editSelectedUser() {
+       var rows = getSelectedUsers();
+
+       if (rows.length == 0) {
+               notify("No users are selected.");
+               return;
+       }
+
+       if (rows.length > 1) {
+               notify("Please select one user.");
+               return;
+       }
+
+       notify("");
+
+       editUser(rows[0]);
+}
+
+function resetSelectedUserPass() {
+       var rows = getSelectedUsers();
+
+       if (rows.length == 0) {
+               notify("No users are selected.");
+               return;
+       }
+
+       if (rows.length > 1) {
+               notify("Please select one user.");
+               return;
+       }
+
+       var ok = confirm("Reset password of selected user?");
+
+       if (ok) {
+               notify("Resetting password for selected user...");
+       
+               var id = rows[0];
+       
+               xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
+                       param_escape(id), true);
+               xmlhttp.onreadystatechange=userlist_callback;
+               xmlhttp.send(null);
+       }
+}
+
+function selectedUserDetails() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var rows = getSelectedUsers();
+
+       if (rows.length == 0) {
+               notify("No users are selected.");
+               return;
+       }
+
+       if (rows.length > 1) {
+               notify("Please select one user.");
+               return;
+       }
+
+       var id = rows[0];
+
+       notify("");
+
+       xmlhttp.open("GET", "backend.php?op=user-details&id=" + id, true);
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
+
+}
+
+function selectedFeedDetails() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var rows = getSelectedFeeds();
+
+       if (rows.length == 0) {
+               notify("No feeds are selected.");
+               return;
+       }
+
+//     if (rows.length > 1) {
+//             notify("Please select one feed.");
+//             return;
+//     }
+
+//     var id = rows[0];
+
+       notify("");
+
+       xmlhttp.open("GET", "backend.php?op=feed-details&id=" + 
+               param_escape(rows.toString()), true);
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
+
+}
 
 function editSelectedFilter() {
        var rows = getSelectedFilters();
@@ -630,6 +1062,8 @@ function editSelectedFilter() {
                return;
        }
 
+       notify("");
+
        editFilter(rows[0]);
 
 }
@@ -648,10 +1082,31 @@ function editSelectedFeed() {
                return;
        }
 
+       notify("");
+
        editFeed(rows[0]);
 
 }
 
+function editSelectedFeedCat() {
+       var rows = getSelectedFeedCats();
+
+       if (rows.length == 0) {
+               notify("No categories are selected.");
+               return;
+       }
+
+       if (rows.length > 1) {
+               notify("Please select one category.");
+               return;
+       }
+
+       notify("");
+
+       editFeedCat(rows[0]);
+
+}
+
 function localPiggieFunction(enable) {
        if (enable) {
                piggie.style.display = "block";
@@ -708,14 +1163,38 @@ function updateLabelList() {
        xmlhttp.send(null);
 }
 
+function updatePrefsList() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       p_notify("Loading, please wait...");
+
+       xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
+       xmlhttp.onreadystatechange=prefslist_callback;
+       xmlhttp.send(null);
+
+}
+
 function selectTab(id) {
 
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
        if (id == "feedConfig") {
                updateFeedList();
        } else if (id == "filterConfig") {
                updateFilterList();
        } else if (id == "labelConfig") {
                updateLabelList();
+       } else if (id == "genConfig") {
+               updatePrefsList();
+       } else if (id == "userConfig") {
+               updateUsersList();
        }
 
        var tab = document.getElementById(active_tab + "Tab");
@@ -736,22 +1215,81 @@ function selectTab(id) {
 
        active_tab = id;
 
+       setCookie('ttrss_pref_acttab', active_tab);
+
 }
 
 function init() {
 
-       // IE kludge
+       try {
+       
+               // IE kludge
+               if (!xmlhttp) {
+                       document.getElementById("prefContent").innerHTML = 
+                               "<b>Fatal error:</b> This program needs XmlHttpRequest " + 
+                               "to function properly. Your browser doesn't seem to support it.";
+                       return;
+               }
 
-       if (!xmlhttp) {
-               document.getElementById("prefContent").innerHTML = 
-                       "<b>Fatal error:</b> This program needs XmlHttpRequest " + 
-                       "to function properly. Your browser doesn't seem to support it.";
-               return;
+               active_tab = getCookie("ttrss_pref_acttab");
+               if (!active_tab) active_tab = "genConfig";
+               selectTab(active_tab);
+       
+               document.onkeydown = hotkey_handler;
+               notify("");
+       } catch (e) {
+               exception_error("init", e);
        }
+}
 
-       selectTab("feedConfig");
+function closeInfoBox() {
+       var box = document.getElementById('infoBox');
+       var shadow = document.getElementById('infoBoxShadow');
 
-       document.onkeydown = hotkey_handler;
-       notify("");
+       if (shadow) {
+               shadow.style.display = "none";
+       } else if (box) {
+               box.style.display = "none";
+       }
+}
+
+function categorizeSelectedFeeds() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var sel_rows = getSelectedFeeds();
+
+       var cat_sel = document.getElementById("sfeed_set_fcat");
+       var cat_id = cat_sel[cat_sel.selectedIndex].id;
+
+       if (sel_rows.length > 0) {
+
+               notify("Changing category of selected feeds...");
+
+               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=categorize&ids="+
+                       param_escape(sel_rows.toString()) + "&cat_id=" + param_escape(cat_id), true);
+               xmlhttp.onreadystatechange=feedlist_callback;
+               xmlhttp.send(null);
+
+       } else {
+
+               notify("Please select some feeds first.");
+
+       }
+
+}
+
+function validatePrefsReset() {
+       return confirm("Reset to defaults?");
+}
+
+function browseFeeds() {
+
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=browse", true);
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
 
 }