]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.js
fix preferences for opera
[tt-rss.git] / prefs.js
index 8fcdcff20f0d12be775182dc3a823d876c94ccc5..d73967313f5fbb8695cd837cf931c4b2feec804f 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -1,7 +1,6 @@
 var xmlhttp = false;
 
 var active_feed_cat = false;
-var active_filter = false;
 var active_label = false;
 var active_tab = false;
 var feed_to_expand = false;
@@ -11,6 +10,8 @@ var piggie_fwd = true;
 
 var xmlhttp = Ajax.getTransport();
 
+var init_params = new Array();
+
 function expand_feed_callback() {
        if (xmlhttp.readyState == 4) {
                try {   
@@ -54,22 +55,7 @@ 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;
-                       }
-               }
                notify("");
        }
 }
@@ -354,13 +340,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) {
@@ -634,6 +621,8 @@ function feedEditSave() {
                xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
                xmlhttp.send(query);
 
+               closeInfoBox();
+
                return false;
 
        } catch (e) {
@@ -697,6 +686,8 @@ function labelEditCancel() {
 
 //     notify("Operation cancelled.");
 
+       closeInfoBox();
+
        xmlhttp.open("GET", "backend.php?op=pref-labels", true);
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
@@ -711,7 +702,6 @@ function userEditCancel() {
        }
 
        selectPrefRows('user', false); // cleanup feed selection
-
        closeInfoBox();
 }
 
@@ -722,14 +712,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() {
@@ -754,14 +740,15 @@ function labelEditSave() {
                return;
        }
 
+       closeInfoBox();
+
        notify("Saving label...");
 
        active_label = false;
 
        query = Form.serialize("label_edit_form");
 
-       xmlhttp.open("GET", "backend.php?" + query, true);
-               
+       xmlhttp.open("GET", "backend.php?" + query, true);              
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
 
@@ -782,7 +769,9 @@ function userEditSave() {
        }
        
        notify("Saving user...");
-       
+
+       closeInfoBox();
+
        var query = Form.serialize("user_edit_form");
        
        xmlhttp.open("GET", "backend.php?" + query, true);                      
@@ -807,10 +796,12 @@ function filterEditSave() {
 
        notify("Saving filter...");
 
-       active_filter = false;
-
        var query = Form.serialize("filter_edit_form");
 
+       closeInfoBox();
+
+       document.getElementById("create_filter_btn").disabled = false;
+
        xmlhttp.open("GET", "backend.php?" + query, true);
        xmlhttp.onreadystatechange=filterlist_callback;
        xmlhttp.send(null);
@@ -1121,55 +1112,134 @@ function selectTab(id, noupdate) {
 
 //     alert(id);
 
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
-       }
+       if (!id) id = active_tab;
 
-       if (!noupdate) {
+       try {
 
-               notify("Loading, please wait...", true);
+               if (!xmlhttp_ready(xmlhttp)) {
+                       printLockingError();
+                       return
+               }
 
-               // clean up all current selections, just in case
-               active_feed_cat = false;
-               active_filter = false;
-               active_label = false;
+               if (!noupdate) {
 
-               if (id == "feedConfig") {
-                       updateFeedList();
-               } else if (id == "filterConfig") {
-                       updateFilterList();
-               } else if (id == "labelConfig") {
-                       updateLabelList();
-               } else if (id == "genConfig") {
-                       updatePrefsList();
-               } else if (id == "userConfig") {
-                       updateUsersList();
-               } else if (id == "feedBrowser") {
-                       updateBigFeedBrowser();
+                       debug("selectTab: " + id + "(NU: " + 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") {
+                               updateFilterList();
+                       } else if (id == "labelConfig") {
+                               updateLabelList();
+                       } else if (id == "genConfig") {
+                               updatePrefsList();
+                       } else if (id == "userConfig") {
+                               updateUsersList();
+                       } else if (id == "feedBrowser") {
+                               updateBigFeedBrowser();
+                       }
+               }
+       
+               var tab = document.getElementById(active_tab + "Tab");
+       
+               if (tab) {
+                       if (tab.className.match("Selected")) {
+                               tab.className = "prefsTab";
+                       }
+               }
+       
+               tab = document.getElementById(id + "Tab");
+       
+               if (tab) {
+                       if (!tab.className.match("Selected")) {
+                               tab.className = tab.className + "Selected";
+                       }
+               }
+       
+               if (active_tab != id) {
+                       storeInitParam("prefs_active_tab", id);
                }
+       
+               active_tab = id;
+
+       } catch (e) {
+               exception_error("selectTab", e);
        }
+}
 
-       var tab = document.getElementById(active_tab + "Tab");
+function backend_sanity_check_callback() {
 
-       if (tab) {
-               if (tab.className.match("Selected")) {
-                       tab.className = "prefsTab";
-               }
-       }
+       if (xmlhttp.readyState == 4) {
+
+               try {
+               
+                       if (!xmlhttp.responseXML) {
+                               fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
+                               return;
+                       }
+       
+                       var reply = xmlhttp.responseXML.firstChild.firstChild;
+       
+                       if (!reply) {
+                               fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
+                               return;
+                       }
+       
+                       var error_code = reply.getAttribute("error-code");
+               
+                       if (error_code && error_code != 0) {
+                               return fatalError(error_code, reply.getAttribute("error-msg"));
+                       }
+       
+                       debug("sanity check ok");
+
+                       var params = reply.nextSibling;
+
+                       if (params) {
+                               debug('reading init-params...');
+                               var param = params.firstChild;
+
+                               while (param) {
+                                       var k = param.getAttribute("key");
+                                       var v = param.getAttribute("value");
+                                       debug(k + " => " + v);
+                                       init_params[k] = v;                                     
+                                       param = param.nextSibling;
+                               }
+                       }
 
-       tab = document.getElementById(id + "Tab");
+                       init_second_stage();
 
-       if (tab) {
-               if (!tab.className.match("Selected")) {
-                       tab.className = tab.className + "Selected";
+               } catch (e) {
+                       exception_error("backend_sanity_check_callback", e);
                }
-       }
+       } 
+}
 
-       active_tab = id;
+function init_second_stage() {
 
-       setCookie('ttrss_pref_acttab', active_tab);
+       try {
+               active_tab = getInitParam("prefs_active_tab");
+               if (!active_tab) active_tab = "genConfig";
 
+               if (navigator.userAgent.match("Opera")) {       
+                       setTimeout("selectTab()", 500);
+               } else {
+                       selectTab(active_tab);
+               }
+               notify("");
+       } catch (e) {
+               exception_error("init_second_stage", e);
+       }
 }
 
 function init() {
@@ -1179,6 +1249,11 @@ function init() {
                if (arguments.callee.done) return;
                arguments.callee.done = true;           
 
+               if (getURLParam('debug')) {
+                       document.getElementById('debug_output').style.display = 'block';
+                       debug('debug mode activated');
+               }
+
                // IE kludge
                if (!xmlhttp) {
                        document.getElementById("prefContent").innerHTML = 
@@ -1187,12 +1262,10 @@ function init() {
                        return;
                }
 
-               active_tab = getCookie("ttrss_pref_acttab");
-               if (!active_tab) active_tab = "genConfig";
-               selectTab(active_tab);
-       
-               document.onkeydown = hotkey_handler;
-               notify("");
+               xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
+               xmlhttp.onreadystatechange=backend_sanity_check_callback;
+               xmlhttp.send(null);
+
        } catch (e) {
                exception_error("init", e);
        }