]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.js
fix broken piggie
[tt-rss.git] / prefs.js
index 19fcc8b6a035d4572b0972be6a407e0b5b96ec54..11743d2cc36364fd3aeb43cfb84d8854f3940bfc 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -10,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 {   
@@ -452,6 +454,8 @@ function removeSelectedLabels() {
        } else {
                alert("No labels are selected.");
        }
+
+       return false;
 }
 
 function removeSelectedUsers() {
@@ -479,6 +483,8 @@ function removeSelectedUsers() {
        } else {
                alert("No users are selected.");
        }
+
+       return false;
 }
 
 function removeSelectedFilters() {
@@ -505,6 +511,8 @@ function removeSelectedFilters() {
        } else {
                alert("No filters are selected.");
        }
+
+       return false;
 }
 
 
@@ -536,7 +544,8 @@ function removeSelectedFeeds() {
                alert("No feeds are selected.");
 
        }
-
+       
+       return false;
 }
 
 function removeSelectedFeedCats() {
@@ -567,6 +576,7 @@ function removeSelectedFeedCats() {
 
        }
 
+       return false;
 }
 
 function feedEditCancel() {
@@ -580,6 +590,7 @@ function feedEditCancel() {
 
        selectPrefRows('feed', false); // cleanup feed selection
 
+       return false;
 }
 
 function feedCatEditCancel() {
@@ -597,6 +608,7 @@ function feedCatEditCancel() {
        xmlhttp.onreadystatechange=feedlist_callback;
        xmlhttp.send(null);
 
+       return false;
 }
 
 function feedEditSave() {
@@ -645,6 +657,7 @@ function feedCatEditSave() {
 
        active_feed_cat = false;
 
+       return false;
 }
 
 
@@ -661,6 +674,7 @@ function labelTest() {
        xmlhttp.onreadystatechange=infobox_callback;
        xmlhttp.send(null);
 
+       return false;
 }
 
 function displayHelpInfobox(topic_id) {
@@ -690,6 +704,7 @@ function labelEditCancel() {
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
 
+       return false;
 }
 
 function userEditCancel() {
@@ -701,6 +716,8 @@ function userEditCancel() {
 
        selectPrefRows('user', false); // cleanup feed selection
        closeInfoBox();
+
+       return false;
 }
 
 function filterEditCancel() {
@@ -714,6 +731,8 @@ function filterEditCancel() {
        
        selectPrefRows('filter', false); // cleanup feed selection
        closeInfoBox();
+
+       return false;
 }
 
 function labelEditSave() {
@@ -750,6 +769,7 @@ function labelEditSave() {
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
 
+       return false;
 }
 
 function userEditSave() {
@@ -775,6 +795,8 @@ function userEditSave() {
        xmlhttp.open("GET", "backend.php?" + query, true);                      
        xmlhttp.onreadystatechange=userlist_callback;
        xmlhttp.send(null);
+
+       return false;
 }
 
 
@@ -804,6 +826,7 @@ function filterEditSave() {
        xmlhttp.onreadystatechange=filterlist_callback;
        xmlhttp.send(null);
 
+       return false;
 }
 
 function editSelectedLabel() {
@@ -1035,6 +1058,7 @@ function piggie2_callback() {
 
 function localPiggieFunction(enable) {
        if (enable) {
+               debug("I LOVEDED IT!");
                var piggie = document.getElementById("piggie");
                piggie.style.display = "block";
 
@@ -1110,57 +1134,136 @@ 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
+               }
 
-               // close active infobox if needed
-               closeInfoBox();
+               if (!noupdate) {
 
-               // 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();
+                       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;
 
-       tab = document.getElementById(id + "Tab");
+                       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;
+                               }
+                       }
 
-       if (tab) {
-               if (!tab.className.match("Selected")) {
-                       tab.className = tab.className + "Selected";
+                       init_second_stage();
+
+               } 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";
+
+               document.onkeydown = pref_hotkey_handler;
 
+               if (navigator.userAgent.match("Opera")) {       
+                       setTimeout("selectTab()", 500);
+               } else {
+                       selectTab(active_tab);
+               }
+               notify("");
+       } catch (e) {
+               exception_error("init_second_stage", e);
+       }
 }
 
 function init() {
@@ -1170,6 +1273,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 = 
@@ -1178,12 +1286,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);
        }
@@ -1400,3 +1506,42 @@ function toggleSelectFBListRow(sender) {
        toggleSelectListRow(sender);
        disableContainerChildren("fbrOpToolbar", getSelectedFeedsFromBrowser() == 0);
 }
+
+var seq = "";
+
+function pref_hotkey_handler(e) {
+       try {
+
+               var keycode;
+       
+               if (!hotkeys_enabled) return;
+       
+               if (window.event) {
+                       keycode = window.event.keyCode;
+               } else if (e) {
+                       keycode = e.which;
+               }
+       
+               if (keycode == 13 || keycode == 27) {
+                       seq = "";
+               } else {
+                       seq = seq + "" + keycode;
+               }
+
+
+       if (document.getElementById("piggie")) {
+       
+               if (seq.match("807371717369")) {
+                       seq = "";
+                       localPiggieFunction(true);
+               } else {
+                       localPiggieFunction(false);
+               }
+       }
+
+       } catch (e) {
+               exception_error("pref_hotkey_handler", e);
+       }
+}
+
+