]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
update_daemon2: print idle notice once per 10 seconds
[tt-rss.git] / tt-rss.js
index 3beac28cf56095ac80c3d0a405772df98ddccac1..d501890fe6fd7548ed74dcae4e0de1ef9c711f31 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1,4 +1,3 @@
-var xmlhttp = false;
 var total_unread = 0;
 var first_run = true;
 var display_tags = false;
@@ -7,7 +6,7 @@ var active_title_text = "";
 var current_subtitle = "";
 var daemon_enabled = false;
 var daemon_refresh_only = false;
-var _qfd_deleted_feed = 0;
+//var _qfd_deleted_feed = 0;
 var firsttime_update = true;
 var cookie_lifetime = 0;
 var active_feed_id = 0;
@@ -15,8 +14,6 @@ var active_feed_is_cat = false;
 var number_of_feeds = 0;
 var sanity_check_done = false;
 
-var xmlhttp = Ajax.getTransport();
-
 var init_params = new Object();
 
 function tagsAreDisplayed() {
@@ -51,20 +48,16 @@ function toggleTags(show_all) {
        }
 }
 
-function dlg_frefresh_callback() {
-       if (xmlhttp.readyState == 4) {          
-//             notify(xmlhttp.responseText);
-
-               if (getActiveFeedId() == _qfd_deleted_feed) {
-                       var h = document.getElementById("headlines-frame");
-                       if (h) {
-                               h.innerHTML = "<div class='whiteBox'>" + __('No feed selected.') + "</div>";
-                       }
+function dlg_frefresh_callback(transport, deleted_feed) {
+       if (getActiveFeedId() == deleted_feed) {
+               var h = document.getElementById("headlines-frame");
+               if (h) {
+                       h.innerHTML = "<div class='whiteBox'>" + __('No feed selected.') + "</div>";
                }
+       }
 
-               setTimeout('updateFeedList(false, false)', 50);
-               closeInfoBox();
-       } 
+       setTimeout('updateFeedList(false, false)', 50);
+       closeInfoBox();
 }
 
 function refetch_callback2(transport) {
@@ -76,73 +69,70 @@ function refetch_callback2(transport) {
 
                debug("refetch_callback2: done");
 
-               if (!daemon_enabled && !daemon_refresh_only) {
+/*             if (!daemon_enabled && !daemon_refresh_only) {
                        notify_info("All feeds updated.");
                        updateTitle("");
                } else {
                        //notify("");
-               }
+               } */
        } catch (e) {
                exception_error("refetch_callback", e);
                updateTitle("");
        }
 }
 
-function backend_sanity_check_callback() {
+function backend_sanity_check_callback(transport) {
 
-       if (xmlhttp.readyState == 4) {
+       try {
 
-               try {
-       
-                       if (sanity_check_done) {
-                               fatalError(11, "Sanity check request received twice. This can indicate "+
-                             "presence of Firebug or some other disrupting extension. "+
-                                       "Please disable it and try again.");
-                               return;
-                       }
+               if (sanity_check_done) {
+                       fatalError(11, "Sanity check request received twice. This can indicate "+
+                     "presence of Firebug or some other disrupting extension. "+
+                               "Please disable it and try again.");
+                       return;
+               }
 
-                       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"));
-                       }
+               if (!transport.responseXML) {
+                       fatalError(3, "[D001, Received reply is not XML]: " + transport.responseText);
+                       return;
+               }
+
+               var reply = transport.responseXML.firstChild.firstChild;
+
+               if (!reply) {
+                       fatalError(3, "[D002, Invalid RPC reply]: " + transport.responseText);
+                       return;
+               }
+
+               var error_code = reply.getAttribute("error-code");
        
-                       debug("sanity check ok");
+               if (error_code && error_code != 0) {
+                       return fatalError(error_code, reply.getAttribute("error-msg"));
+               }
 
-                       var params = reply.nextSibling;
+               debug("sanity check ok");
 
-                       if (params) {
-                               debug('reading init-params...');
-                               var param = params.firstChild;
+               var params = reply.nextSibling;
 
-                               while (param) {
-                                       var k = param.getAttribute("key");
-                                       var v = param.getAttribute("value");
-                                       debug(k + " => " + v);
-                                       init_params[k] = v;                                     
-                                       param = param.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;
                        }
+               }
 
-                       sanity_check_done = true;
+               sanity_check_done = true;
 
-                       init_second_stage();
+               init_second_stage();
 
-               } catch (e) {
-                       exception_error("backend_sanity_check_callback", e);
-               }
+       } catch (e) {
+               exception_error("backend_sanity_check_callback", e);    
        } 
 }
 
@@ -150,9 +140,9 @@ function scheduleFeedUpdate(force) {
 
        debug("in scheduleFeedUpdate");
 
-       if (!daemon_enabled && !daemon_refresh_only) {
+/*     if (!daemon_enabled && !daemon_refresh_only) {
                notify_progress("Updating feeds...", true);
-       }
+       } */
 
        var query_str = "backend.php?op=rpc&subop=";
 
@@ -219,14 +209,10 @@ function updateFeedList(silent, fetch) {
 
        debug("updateFeedList Q=" + query_str);
 
-       if (xmlhttp_ready(xmlhttp)) {
-               xmlhttp.open("GET", query_str, true);
-               xmlhttp.onreadystatechange=feedlist_callback;
-               xmlhttp.send(null);
-       } else {
-               debug("xmlhttp busy");
-               //printLockingError();
-       }   
+       new Ajax.Request(query_str, {
+               onComplete: function(transport) { 
+                       feedlist_callback2(transport); 
+               } });
 
 }
 
@@ -238,14 +224,10 @@ function catchupAllFeeds() {
 
        debug("catchupAllFeeds Q=" + query_str);
 
-       if (xmlhttp_ready(xmlhttp)) {
-               xmlhttp.open("GET", query_str, true);
-               xmlhttp.onreadystatechange=feedlist_callback;
-               xmlhttp.send(null);
-       } else {
-               debug("xmlhttp busy");
-               //printLockingError();
-       }   
+       new Ajax.Request(query_str, {
+               onComplete: function(transport) { 
+                       feedlist_callback2(transport); 
+               } });
 
        global_unread = 0;
        updateTitle("");
@@ -256,7 +238,7 @@ function viewCurrentFeed(subop) {
 
 //     if (getActiveFeedId()) {
        if (getActiveFeedId() != undefined) {
-               viewfeed(getActiveFeedId(), subop);
+               viewfeed(getActiveFeedId(), subop, active_feed_is_cat);
        } else {
                disableContainerChildren("headlinesToolbar", false, document);
 //             viewfeed(-1, subop); // FIXME
@@ -297,19 +279,6 @@ function search() {
        viewCurrentFeed(0, "");
 }
 
-function localPiggieFunction(enable) {
-       if (enable) {
-               var query_str = "backend.php?op=feeds&subop=piggie";
-
-               if (xmlhttp_ready(xmlhttp)) {
-
-                       xmlhttp.open("GET", query_str, true);
-                       xmlhttp.onreadystatechange=feedlist_callback;
-                       xmlhttp.send(null);
-               }
-       }
-}
-
 // if argument is undefined, current subtitle is not updated
 // use blank string to clear subtitle
 function updateTitle(s) {
@@ -336,7 +305,7 @@ function updateTitle(s) {
 
 function genericSanityCheck() {
 
-       if (!xmlhttp) fatalError(1);
+//     if (!Ajax.getTransport()) fatalError(1);
 
        setCookie("ttrss_vf_test", "TEST");
        
@@ -370,9 +339,10 @@ function init() {
 
                var params = "&ua=" + param_escape(navigator.userAgent);
 
-               xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck" + params, true);
-               xmlhttp.onreadystatechange=backend_sanity_check_callback;
-               xmlhttp.send(null);
+               new Ajax.Request("backend.php?op=rpc&subop=sanityCheck" + params,       {
+                       onComplete: function(transport) {
+                                       backend_sanity_check_callback(transport);
+                               } });
 
        } catch (e) {
                exception_error("init", e);
@@ -387,27 +357,37 @@ function resize_headlines() {
 
        if (!c_frame || !h_frame) return;
 
-       debug("resize_headlines");
+       if (getInitParam("theme") == "3pane") {
+               debug("resize_headlines: HOR-mode");
 
-       if (!is_msie()) {
-               h_frame.style.height = 30 + "%";
-               c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
-               h_frame.style.height = h_frame.offsetHeight + "px";
-       } else {
-               h_frame.style.height = document.documentElement.clientHeight * 0.3 + "px";
-               c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
+               c_frame.style.width = '35%';
+               h_frame.style.right = c_frame.offsetWidth - 1 + "px";
 
-               var c_bottom = document.documentElement.clientHeight;
+       } else {
+               debug("resize_headlines: VER-mode");
 
-               if (f_frame) {
-                       c_bottom = f_frame.offsetTop;
+               if (!is_msie()) {
+                       h_frame.style.height = 30 + "%";
+                       c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
+                       h_frame.style.height = h_frame.offsetHeight + "px";
+               } else {
+                       h_frame.style.height = document.documentElement.clientHeight * 0.3 + "px";
+                       c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
+       
+                       var c_bottom = document.documentElement.clientHeight;
+       
+                       if (f_frame) {
+                               c_bottom = f_frame.offsetTop;
+                       }
+       
+                       c_frame.style.height = c_bottom - (h_frame.offsetTop + 
+                               h_frame.offsetHeight + 1) + "px";
+                       h_frame.style.height = h_frame.offsetHeight + "px";
+       
                }
 
-               c_frame.style.height = c_bottom - (h_frame.offsetTop + 
-                       h_frame.offsetHeight + 1) + "px";
-               h_frame.style.height = h_frame.offsetHeight + "px";
-
        }
+
 }
 
 function init_second_stage() {
@@ -485,12 +465,37 @@ function quickMenuGo(opid) {
                        var pr = __("Unsubscribe from %s?").replace("%s", fn);
 
                        if (confirm(pr)) {
-                               qfdDelete(actid);
+                               unsubscribeFeed(actid);
+                       }
+               
+                       return;
+               }
+
+               if (opid == "qmcClearFeed") {
+                       var actid = getActiveFeedId();
+
+                       if (!actid) {
+                               alert(__("Please select some feed first."));
+                               return;
+                       }
+
+                       if (activeFeedIsCat() || actid < 0) {
+                               alert(__("You can't clear this type of feed."));
+                               return;
+                       }       
+
+                       var fn = getFeedName(actid);
+
+                       var pr = __("Erase all non-starred articles in %s?").replace("%s", fn);
+
+                       if (confirm(pr)) {
+                               clearFeedArticles(actid);
                        }
                
                        return;
                }
        
+
                if (opid == "qmcUpdateFeeds") {
                        scheduleFeedUpdate(true);
                        return;
@@ -515,20 +520,17 @@ function quickMenuGo(opid) {
        }
 }
 
-function qfdDelete(feed_id) {
+function unsubscribeFeed(feed_id) {
 
        notify_progress("Removing feed...");
 
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
-       }
+       var query = "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id;
 
-       _qfd_deleted_feed = feed_id;
+       new Ajax.Request(query, {
+               onComplete: function(transport) {
+                               dlg_frefresh_callback(transport, feed_id);
+                       } });
 
-       xmlhttp.open("GET", "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id);
-       xmlhttp.onreadystatechange=dlg_frefresh_callback;
-       xmlhttp.send(null);
 
        return false;
 }
@@ -542,11 +544,6 @@ function updateFeedTitle(t) {
 function toggleDispRead() {
        try {
 
-               if (!xmlhttp_ready(xmlhttp)) {
-                       printLockingError();
-                       return
-               } 
-
                var hide_read_feeds = (getInitParam("hide_read_feeds") == "1");
 
                hide_read_feeds = !hide_read_feeds;
@@ -556,11 +553,6 @@ function toggleDispRead() {
                hideOrShowFeeds(getFeedsContext().document, hide_read_feeds);
 
                storeInitParam("hide_read_feeds", hide_read_feeds, true);
-
-/*             var query = "backend.php?op=rpc&subop=setpref" +
-                       "&key=HIDE_READ_FEEDS&value=" + param_escape(hide_read_feeds);
-
-               new Ajax.Request(query); */
                                
        } catch (e) {
                exception_error("toggleDispRead", e);
@@ -627,7 +619,7 @@ function catchupCurrentFeed() {
 
        var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
        
-       var str = "Mark all articles in " + fn + " as read?";
+       var str = __("Mark all articles in %s as read?").replace("%s", fn);
 
 /*     if (active_feed_is_cat) {
                str = "Mark all articles in this category as read?";
@@ -638,41 +630,36 @@ function catchupCurrentFeed() {
        }
 }
 
-function userSwitch() {
-       var chooser = document.getElementById("userSwitch");
-       var user = chooser[chooser.selectedIndex].value;
-       window.location = "tt-rss.php?swu=" + user;
-}
-
 function editFeedDlg(feed) {
+       try {
 
-       disableHotkeys();
-
-       if (!feed) {
-               alert(__("Please select some feed first."));
-               return;
-       }
-
-       if ((feed <= 0 && feed > -10) || activeFeedIsCat() || tagsAreDisplayed()) {
-               alert(__("You can't edit this kind of feed."));
-               return;
-       }
-
-       if (xmlhttp_ready(xmlhttp)) {
-
+               disableHotkeys();
+       
+               if (!feed) {
+                       alert(__("Please select some feed first."));
+                       return;
+               }
+       
+               if ((feed <= 0 && feed > -10) || activeFeedIsCat() || tagsAreDisplayed()) {
+                       alert(__("You can't edit this kind of feed."));
+                       return;
+               }
+       
+               var query = "";
+       
                if (feed > 0) {
-                       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
-                               param_escape(feed), true);
-                       xmlhttp.onreadystatechange=infobox_callback;
-                       xmlhttp.send(null);
+                       query = "backend.php?op=pref-feeds&subop=editfeed&id=" +        param_escape(feed);
                } else {
-                       xmlhttp.open("GET", "backend.php?op=pref-labels&subop=edit&id=" +
-                               param_escape(-feed-11), true);
-                       xmlhttp.onreadystatechange=infobox_callback;
-                       xmlhttp.send(null);
+                       query = "backend.php?op=pref-labels&subop=edit&id=" +   param_escape(-feed-11);
                }
-       } else {
-               printLockingError();
+       
+               new Ajax.Request(query, {
+                       onComplete: function(transport) { 
+                               infobox_callback2(transport); 
+                       } });
+
+       } catch (e) {
+               exception_error("editFeedDlg", e);
        }
 }
 
@@ -688,21 +675,18 @@ function feedEditSave() {
 
        try {
        
-               if (!xmlhttp_ready(xmlhttp)) {
-                       printLockingError();
-                       return
-               }
-
                // FIXME: add parameter validation
 
                var query = Form.serialize("edit_feed_form");
 
                notify_progress("Saving feed...");
 
-               xmlhttp.open("POST", "backend.php", true);
-               xmlhttp.onreadystatechange=dlg_frefresh_callback;
-               xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
-               xmlhttp.send(query);
+               new Ajax.Request("backend.php", {
+                       parameters: query,
+                       onComplete: function(transport) { 
+                               dlg_frefresh_callback(transport); 
+                       } });
+
 
                closeInfoBox();
 
@@ -722,21 +706,17 @@ function labelEditSave() {
 
        try {
 
-               if (!xmlhttp_ready(xmlhttp)) {
-                       printLockingError();
-                       return
-               }
-       
                closeInfoBox();
        
                notify_progress("Saving label...");
        
                query = Form.serialize("label_edit_form");
        
-               xmlhttp.open("GET", "backend.php?" + query, true);              
-               xmlhttp.onreadystatechange=dlg_frefresh_callback;
-               xmlhttp.send(null);
-       
+               new Ajax.Request("backend.php?" + query, {
+                       onComplete: function(transport) { 
+                               dlg_frefresh_callback(transport); 
+                       } });
+
                return false;
 
        } catch (e) {
@@ -745,3 +725,18 @@ function labelEditSave() {
 
 }
 
+function clearFeedArticles(feed_id) {
+
+       notify_progress("Clearing feed...");
+
+       var query = "backend.php?op=pref-feeds&quiet=1&subop=clear&id=" + feed_id;
+
+       new Ajax.Request(query, {
+               onComplete: function(transport) {
+                               dlg_frefresh_callback(transport, feed_id);
+                       } });
+
+       return false;
+}
+
+