]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
make 'v' hotkey work in CDM mode
[tt-rss.git] / tt-rss.js
index 0e0886b8526fafc5d7f278be9ab20b7840e2d822..1a4590522c744fca748c53e2bd66aa26e33ff01b 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -14,32 +14,35 @@ var cookie_lifetime = 0;
 var active_feed_id = 0;
 var active_feed_is_cat = false;
 var number_of_feeds = 0;
+var sanity_check_done = false;
 
 var xmlhttp = Ajax.getTransport();
 var xmlhttp_ctr = Ajax.getTransport();
 
 var init_params = new Object();
 
-var op_history = new Array();
-
 function tagsAreDisplayed() {
        return display_tags;
 }
 
-function toggleTags() {
-       display_tags = !display_tags;
+function toggleTags(show_all) {
 
        var p = document.getElementById("dispSwitchPrompt");
 
-       if (display_tags) {
-               p.innerHTML = "display feeds";
-       } else {
-               p.innerHTML = "display tags";
+       if (!show_all && !display_tags) {
+               displayDlg("printTagCloud");
+       } else if (show_all) {
+               closeInfoBox();
+               display_tags = true;
+               p.innerHTML = __("display feeds");
+               notify_progress("Loading, please wait...", true);
+               updateFeedList();
+       } else if (display_tags) {
+               display_tags = false;
+               p.innerHTML = __("tag cloud");
+               notify_progress("Loading, please wait...", true);
+               updateFeedList();
        }
-       
-       notify("Loading, please wait...");
-
-       updateFeedList();
 }
 
 function dlg_frefresh_callback() {
@@ -49,7 +52,7 @@ function dlg_frefresh_callback() {
                if (getActiveFeedId() == _qfd_deleted_feed) {
                        var h = document.getElementById("headlines-frame");
                        if (h) {
-                               h.innerHTML = "<div class='whiteBox'>No feed selected.</div>";
+                               h.innerHTML = "<div class='whiteBox'>" + __('No feed selected.') + "</div>";
                        }
                }
 
@@ -71,10 +74,10 @@ function refetch_callback() {
                        debug("refetch_callback: done");
 
                        if (!daemon_enabled && !daemon_refresh_only) {
-                               notify("All feeds updated.");
+                               notify_info("All feeds updated.");
                                updateTitle("");
                        } else {
-                               notify("");
+                               //notify("");
                        }
                } catch (e) {
                        exception_error("refetch_callback", e);
@@ -88,7 +91,14 @@ function backend_sanity_check_callback() {
        if (xmlhttp.readyState == 4) {
 
                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 (!xmlhttp.responseXML) {
                                fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
                                return;
@@ -124,6 +134,8 @@ function backend_sanity_check_callback() {
                                }
                        }
 
+                       sanity_check_done = true;
+
                        init_second_stage();
 
                } catch (e) {
@@ -135,7 +147,7 @@ function backend_sanity_check_callback() {
 function scheduleFeedUpdate(force) {
 
        if (!daemon_enabled && !daemon_refresh_only) {
-               notify("Updating feeds, please wait.", true);
+               notify_progress("Updating feeds, please wait.", true);
                updateTitle("Updating");
        }
 
@@ -167,9 +179,15 @@ function scheduleFeedUpdate(force) {
 
        var date = new Date();
 
+       var timestamp = Math.round(date.getTime() / 1000);
+       query_str = query_str + "&ts=" + timestamp
+
        if (!xmlhttp_ready(xmlhttp_ctr) && last_refetch < date.getTime() / 1000 - 60) {
                debug("<b>xmlhttp seems to be stuck, aborting</b>");
                xmlhttp_ctr.abort();
+               if (is_safari()) {
+                       xmlhttp_ctr = Ajax.getTransport();
+               }
        }
 
        debug("REFETCH query: " + query_str);
@@ -202,11 +220,9 @@ function updateFeedList(silent, fetch) {
                query_str = query_str + "&actid=" + getActiveFeedId();
        }
 
-       if (navigator.userAgent.match("Opera")) {
-               var date = new Date();
-               var timestamp = Math.round(date.getTime() / 1000);
-               query_str = query_str + "&ts=" + timestamp
-       }
+       var date = new Date();
+       var timestamp = Math.round(date.getTime() / 1000);
+       query_str = query_str + "&ts=" + timestamp
        
        if (fetch) query_str = query_str + "&fetch=yes";
 
@@ -230,7 +246,7 @@ function catchupAllFeeds() {
 
        var query_str = "backend.php?op=feeds&subop=catchupAll";
 
-       notify("Marking all feeds as read...");
+       notify_progress("Marking all feeds as read...");
 
        debug("catchupAllFeeds Q=" + query_str);
 
@@ -375,6 +391,37 @@ function init() {
        }
 }
 
+function resize_headlines() {
+
+       var h_frame = document.getElementById("headlines-frame");
+       var c_frame = document.getElementById("content-frame");
+       var f_frame = document.getElementById("footer");
+
+       if (!c_frame || !h_frame) return;
+
+       debug("resize_headlines");
+
+       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";
+
+       }
+}
+
 function init_second_stage() {
 
        try {
@@ -382,13 +429,14 @@ function init_second_stage() {
                cookie_lifetime = getCookie("ttrss_cltime");
 
                delCookie("ttrss_vf_test");
-       
-               document.onkeydown = hotkey_handler;
 
-               var tb = parent.document.forms["main_toolbar_form"];
+//             document.onresize = resize_headlines;
+               resize_headlines();
+
+               var toolbar = document.forms["main_toolbar_form"];
 
-//             dropboxSelect(tb.view_mode, getInitParam("toolbar_view_mode"));
-//             dropboxSelect(tb.limit, getInitParam("toolbar_limit"));
+               dropboxSelect(toolbar.view_mode, getInitParam("default_view_mode"));
+               dropboxSelect(toolbar.limit, getInitParam("default_view_limit"));
 
                daemon_enabled = getInitParam("daemon_enabled") == 1;
                daemon_refresh_only = getInitParam("daemon_refresh_only") == 1;
@@ -433,8 +481,13 @@ function quickMenuGo(opid) {
        
                if (opid == "qmcRemoveFeed") {
                        var actid = getActiveFeedId();
-       
-                       if (!actid || activeFeedIsCat()) {
+
+                       if (activeFeedIsCat()) {
+                               alert("You can't unsubscribe from the category.");
+                               return;
+                       }       
+
+                       if (!actid) {
                                alert("Please select some feed first.");
                                return;
                        }
@@ -466,6 +519,7 @@ function quickMenuGo(opid) {
                if (opid == "qmcAddFilter") {
                        displayDlg("quickAddFilter", getActiveFeedId());
                }
+
        } catch (e) {
                exception_error("quickMenuGo", e);
        }
@@ -473,7 +527,7 @@ function quickMenuGo(opid) {
 
 function qfdDelete(feed_id) {
 
-       notify("Removing feed...");
+       notify_progress("Removing feed...");
 
        if (!xmlhttp_ready(xmlhttp)) {
                printLockingError();
@@ -501,7 +555,7 @@ function toggleDispRead() {
                if (!xmlhttp_ready(xmlhttp)) {
                        printLockingError();
                        return
-               }
+               } 
 
                var hide_read_feeds = (getInitParam("hide_read_feeds") == "1");
 
@@ -511,13 +565,13 @@ function toggleDispRead() {
 
                hideOrShowFeeds(getFeedsContext().document, hide_read_feeds);
 
-               var query = "backend.php?op=rpc&subop=setpref" +
-                       "&key=HIDE_READ_FEEDS&value=" + param_escape(hide_read_feeds);
-
                storeInitParam("hide_read_feeds", hide_read_feeds, true);
 
-               new Ajax.Request(query);
-               
+/*             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);
        }
@@ -539,8 +593,31 @@ function parse_runtime_info(elem) {
 
                debug("RI: " + k + " => " + v);
 
+               if (k == "new_version_available") {
+                       var icon = document.getElementById("newVersionIcon");
+                       if (icon) {
+                               if (v == "1") {
+                                       icon.style.display = "inline";
+                               } else {
+                                       icon.style.display = "none";
+                               }
+                       }
+               }
+
+               var error_flag;
+
                if (k == "daemon_is_running" && v != 1) {
-                       notify("<span onclick=\"javascript:explainError(1)\">Warning: Update daemon is not runing.</span>", true, true);
+                       notify_error("<span onclick=\"javascript:explainError(1)\">Update daemon is not running.</span>", true);
+                       error_flag = true;
+               }
+
+               if (k == "daemon_stamp_ok" && v != 1) {
+                       notify_error("<span onclick=\"javascript:explainError(3)\">Update daemon is not updating feeds.</span>", true);
+                       error_flag = true;
+               }
+
+               if (!error_flag) {
+                       notify('');
                }
 
 /*             var w = document.getElementById("noDaemonWarning");
@@ -586,7 +663,7 @@ function editFeedDlg(feed) {
                return;
        }
 
-       if (feed <= 0 || active_feed_is_cat || tagsAreDisplayed()) {
+       if (feed <= 0 || activeFeedIsCat() || tagsAreDisplayed()) {
                alert("You can't edit this kind of feed.");
                return;
        }
@@ -622,7 +699,7 @@ function feedEditSave() {
 
                var query = Form.serialize("edit_feed_form");
 
-               notify("Saving feed...");
+               notify_progress("Saving feed...");
 
                xmlhttp.open("POST", "backend.php", true);
                xmlhttp.onreadystatechange=dlg_frefresh_callback;
@@ -638,83 +715,4 @@ function feedEditSave() {
        } 
 }
 
-function localHotkeyHandler(e) {
-
-       var keycode;
-
-       if (window.event) {
-               keycode = window.event.keyCode;
-       } else if (e) {
-               keycode = e.which;
-       }
-
-       var shift_key = false;
-
-       try {
-               shift_key = e.shiftKey;
-       } catch (e) { }
-
-       if (keycode == 66 && shift_key) { // shift-B
-
-               var op = history_pop();
-
-               if (op) {
-                       var op_s = op.split(":");
-
-                       var i;
-                       for (i = 0; i < op_s.length; i++) {
-                               if (op_s[i] == 'undefined') {
-                                       op_s[i] = undefined;
-                               }
-
-                               if (op_s[i] == 'false') {
-                                       op_s[i] = false;
-                               }
-
-                               if (op_s[i] == 'true') {
-                                       op_s[i] = true;
-                               }
-                               
-                       }
-
-                       debug("history split: " + op_s);
-
-                       if (op_s[0] == "ARTICLE") {
-                               debug("history: reverting to article " + op_s[1] + "/" + op_s[2]);
-                               view(op_s[1], op_s[2], true);
-                       }
-
-                       if (op_s[0] == "FEED") {
-                               viewfeed(op_s[1], op_s[2], op_s[3], op_s[4], true);
-                       }
-
-               } else {
-                       notify("No operation to undo");
-               }
-
-               return false;
-
-       }       
-
-       debug("LKP=" + keycode);
-}
-
-function history_push(op) {
-       debug("history_push: " + op);
-       op_history.push(op);
 
-       while (op_history.length > 30) {
-               op_history.shift();
-       }
-}
-
-function history_pop() {
-       var op = op_history.pop();
-       debug("history_pop: " + op);
-       return op;
-}
-
-function history_clear() {
-       debug("history_clear");
-       op_history.clear();
-}