]> git.wh0rd.org - tt-rss.git/blobdiff - functions.js
reset counters_last_request in viewfeed()
[tt-rss.git] / functions.js
index c66993c2a069ad47cce3ff5e26fc999dc870eae5..b3673b03f56bc4ac034053bfb2bc30f57410b56e 100644 (file)
@@ -11,10 +11,6 @@ Array.prototype.remove = function(s) {
        }
 }
 
-function is_msie() {
-       return navigator.userAgent.match("MSIE");
-}
-
 function is_opera() {
        return window.opera;
 }
@@ -28,7 +24,9 @@ function exception_error(location, e, silent) {
                msg = "Exception: " + e.name + ", " + e.message + 
                        "\nFunction: " + location + "()" +
                        "\nLocation: " + base_fname + ":" + e.lineNumber;
-               
+
+       } else if (e.description) {
+               msg = "Exception: " + e.description + "\nFunction: " + location + "()";
        } else {
                msg = "Exception: " + e + "\nFunction: " + location + "()";
        }
@@ -207,34 +205,6 @@ function printLockingError() {
        notify_info("Please wait until operation finishes.");
 }
 
-function cleanSelectedList(element) {
-       var content = document.getElementById(element);
-
-       if (!document.getElementById("feedCatHolder")) {
-               for (i = 0; i < content.childNodes.length; i++) {
-                       var child = content.childNodes[i];
-                       try {
-                               child.className = child.className.replace("Selected", "");
-                       } catch (e) {
-                               //
-                       }
-               }
-       } else {
-               for (i = 0; i < content.childNodes.length; i++) {
-                       var child = content.childNodes[i];
-                       if (child.id == "feedCatHolder") {
-                               debug(child.id);
-                               var fcat = child.lastChild;
-                               for (j = 0; j < fcat.childNodes.length; j++) {
-                                       var feed = fcat.childNodes[j];
-                                       feed.className = feed.className.replace("Selected", "");
-                               }               
-                       }
-               } 
-       }
-}
-
-
 function cleanSelected(element) {
        var content = document.getElementById(element);
 
@@ -475,7 +445,8 @@ function parse_counters(reply, scheduled_call) {
                        var has_img = elems[l].getAttribute("hi");
                        var updated = elems[l].getAttribute("updated");
                        var title = elems[l].getAttribute("title");
-               
+                       var xmsg = elems[l].getAttribute("xmsg");
+       
                        if (id == "global-unread") {
                                global_unread = ctr;
                                updateTitle();
@@ -515,15 +486,25 @@ function parse_counters(reply, scheduled_call) {
                                }
                        }
 
-                       if (updated && feedupd) {
+                       if (feedupd) {
+                               if (!updated) updated = "";
+
                                if (error) {
-                                       feedupd.innerHTML = updated + " (Error)";
+                                       if (xmsg) {
+                                               feedupd.innerHTML = updated + " " + xmsg + " (Error)";
+                                       } else {
+                                               feedupd.innerHTML = updated + " (Error)";
+                                       }
                                } else {
-                                       feedupd.innerHTML = updated;
+                                       if (xmsg) {
+                                               feedupd.innerHTML = updated + " " + xmsg;
+                                       } else {
+                                               feedupd.innerHTML = updated;
+                                       }
                                }
                        }
 
-                       if (has_img && feed_img && !is_msie()) {
+                       if (has_img && feed_img) {
                                if (!feed_img.src.match(id + ".ico")) {
                                        feed_img.src = getInitParam("icons_location") + "/" + id + ".ico";
                                }
@@ -576,7 +557,7 @@ function parse_counters(reply, scheduled_call) {
                        }
                }
 
-               hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
+               hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
 
                var feeds_stored = number_of_feeds;
 
@@ -637,11 +618,11 @@ function parse_counters_reply(transport, scheduled_call) {
 
        parse_runtime_info(runtime_info);
 
-       if (getInitParam("feeds_sort_by_unread") == 1) {
-                       resort_feedlist();              
-       }       
+       if (feedsSortByUnread()) {
+               resort_feedlist();
+       }
 
-       hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
+       hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
 
 }
 
@@ -665,7 +646,7 @@ function get_feed_unread(id) {
        }
 }
 
-function get_feed_entry_unread(doc, elem) {
+function get_feed_entry_unread(elem) {
 
        var id = elem.id.replace("FEEDR-", "");
 
@@ -674,38 +655,49 @@ function get_feed_entry_unread(doc, elem) {
        }
 
        try {
-               return parseInt(doc.getElementById("FEEDU-" + id).innerHTML);   
+               return parseInt(document.getElementById("FEEDU-" + id).innerHTML);      
        } catch (e) {
                return -1;
        }
 }
 
-function resort_category(doc, node) {
-       debug("resort_category: " + node);
-
-       if (node.hasChildNodes() && node.firstChild.nextSibling != false) {  
-               for (i = 0; i < node.childNodes.length; i++) {
-                       if (node.childNodes[i].nodeName != "LI") { continue; }
+function get_feed_entry_name(elem) {
+       var id = elem.id.replace("FEEDR-", "");
+       return getFeedName(id);
+}
 
-                       if (get_feed_entry_unread(doc, node.childNodes[i]) < 0) {
-                               continue;
-                       }
 
-                       for (j = i+1; j < node.childNodes.length; j++) {                        
-                               if (node.childNodes[j].nodeName != "LI") { continue; }  
+function resort_category(node) {
 
-                               var tmp_val = get_feed_entry_unread(doc, node.childNodes[i]);
-                               var cur_val = get_feed_entry_unread(doc, node.childNodes[j]);
+       try {
 
-                               if (cur_val > tmp_val) {
-                                       tempnode_i = node.childNodes[i].cloneNode(true);
-                                       tempnode_j = node.childNodes[j].cloneNode(true);
-                                       node.replaceChild(tempnode_i, node.childNodes[j]);
-                                       node.replaceChild(tempnode_j, node.childNodes[i]);
+               debug("resort_category: " + node);
+       
+               var by_unread = feedsSortByUnread();
+       
+               var list = node.getElementsByTagName("LI");
+       
+               for (i = 0; i < list.length; i++) {
+       
+                       for (j = i+1; j < list.length; j++) {                   
+       
+                               var tmp_val = get_feed_entry_unread(list[i]);
+                               var cur_val = get_feed_entry_unread(list[j]);
+       
+                               var tmp_name = get_feed_entry_name(list[i]);
+                               var cur_name = get_feed_entry_name(list[j]);
+       
+                               if ((by_unread && (cur_val > tmp_val)) || (!by_unread && (cur_name < tmp_name))) {
+                                       tempnode_i = list[i].cloneNode(true);
+                                       tempnode_j = list[j].cloneNode(true);
+                                       node.replaceChild(tempnode_i, list[j]);
+                                       node.replaceChild(tempnode_j, list[i]);
                                }
                        }
-
                }
+
+       } catch (e) {
+               exception_error("resort_category", e);
        }
 
 }
@@ -713,24 +705,18 @@ function resort_category(doc, node) {
 function resort_feedlist() {
        debug("resort_feedlist");
 
-       var fd = document;
-
-       if (fd.getElementById("feedCatHolder")) {
-
-               var feeds = fd.getElementById("feedList");
-               var child = feeds.firstChild;
+       if (document.getElementById("FCATLIST--1")) {
 
-               while (child) {
+               var lists = document.getElementsByTagName("UL");
 
-                       if (child.id == "feedCatHolder") {
-                               resort_category(fd, child.firstChild);
+               for (var i = 0; i < lists.length; i++) {
+                       if (lists[i].id && lists[i].id.match("FCATLIST-")) {
+                               resort_category(lists[i]);
                        }
-       
-                       child = child.nextSibling;
                }
 
        } else {
-               resort_category(fd, fd.getElementById("feedList"));
+               resort_category(document.getElementById("feedList"));
        }
 }
 
@@ -768,107 +754,123 @@ function resort_feedlist() {
   }
 
 
-function hideOrShowFeeds(doc, hide) {
-
-       debug("hideOrShowFeeds: " + doc + ", " + hide);
+function hideOrShowFeeds(hide) {
 
-       var fd = document;
+       try {
 
-       var list = fd.getElementById("feedList");
+       debug("hideOrShowFeeds: " + hide);
 
-       if (fd.getElementById("feedCatHolder")) {
+       if (document.getElementById("FCATLIST--1")) {
 
-               var feeds = fd.getElementById("feedList");
-               var child = feeds.firstChild;
+               var lists = document.getElementsByTagName("UL");
 
-               while (child) {
+               for (var i = 0; i < lists.length; i++) {
+                       if (lists[i].id && lists[i].id.match("FCATLIST-")) {
 
-                       if (child.id == "feedCatHolder") {
-                               hideOrShowFeedsCategory(fd, child.firstChild, hide, child.previousSibling);
+                               var id = lists[i].id.replace("FCATLIST-", "");
+                               hideOrShowFeedsCategory(id, hide);
                        }
-       
-                       child = child.nextSibling;
                }
 
        } else {
-               hideOrShowFeedsCategory(fd, fd.getElementById("feedList"), hide);
+               hideOrShowFeedsCategory(null, hide);
        }
-}
-
-function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
 
-//     debug("hideOrShowFeedsCategory: " + node + " (" + hide + ")");
-
-       var cat_unread = 0;
-
-       if (!node) {
-               debug("hideOrShowFeeds: passed node is null, aborting");
-               return;
+       } catch (e) {
+               exception_error("hideOrShowFeeds", e);
        }
+}
 
-//     debug("cat: " + node.id);
+function hideOrShowFeedsCategory(id, hide) {
 
-       if (node.hasChildNodes() && node.firstChild.nextSibling != false) {  
-               for (i = 0; i < node.childNodes.length; i++) {
-                       if (node.childNodes[i].nodeName != "LI") { continue; }
+       try {
+       
+               var node = null;
+               var cat_node = null;
 
-                       if (node.childNodes[i].style != undefined) {
+               if (id) {
+                       node = document.getElementById("FCATLIST-" + id);
+                       cat_node = document.getElementById("FCAT-" + id);
+               } else {
+                       node = document.getElementById("feedList"); // no categories
+               }
 
-                               var has_unread = (node.childNodes[i].className != "feed" &&
-                                       node.childNodes[i].className != "label" && 
-                                       !(!getInitParam("hide_read_shows_special") && 
-                                               node.childNodes[i].className == "virt") && 
-                                       node.childNodes[i].className != "error" && 
-                                       node.childNodes[i].className != "tag");
+       //      debug("hideOrShowFeedsCategory: " + node + " (" + hide + ")");
        
-//                             debug(node.childNodes[i].id + " --> " + has_unread);
+               var cat_unread = 0;
        
-                               if (hide && !has_unread) {
-                                       //node.childNodes[i].style.display = "none";
-                                       var id = node.childNodes[i].id;
-                                       Effect.Fade(node.childNodes[i], {duration : 0.3, 
-                                               queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
-                               }
+               if (!node) {
+                       debug("hideOrShowFeeds: passed node is null, aborting");
+                       return;
+               }
        
-                               if (!hide) {
-                                       node.childNodes[i].style.display = "list-item";
-                                       //Effect.Appear(node.childNodes[i], {duration : 0.3});
-                               }
+       //      debug("cat: " + node.id);
+       
+               if (node.hasChildNodes() && node.firstChild.nextSibling != false) {  
+                       for (i = 0; i < node.childNodes.length; i++) {
+                               if (node.childNodes[i].nodeName != "LI") { continue; }
        
-                               if (has_unread) {
-                                       node.childNodes[i].style.display = "list-item";
-                                       cat_unread++;
-                                       //Effect.Appear(node.childNodes[i], {duration : 0.3});
-                                       //Effect.Highlight(node.childNodes[i]);
+                               if (node.childNodes[i].style != undefined) {
+       
+                                       var has_unread = (node.childNodes[i].className != "feed" &&
+                                               node.childNodes[i].className != "label" && 
+                                               !(!getInitParam("hide_read_shows_special") && 
+                                                       node.childNodes[i].className == "virt") && 
+                                               node.childNodes[i].className != "error" && 
+                                               node.childNodes[i].className != "tag");
+               
+       //                              debug(node.childNodes[i].id + " --> " + has_unread);
+               
+                                       if (hide && !has_unread) {
+                                               //node.childNodes[i].style.display = "none";
+                                               var id = node.childNodes[i].id;
+                                               Effect.Fade(node.childNodes[i], {duration : 0.3, 
+                                                       queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
+                                       }
+               
+                                       if (!hide) {
+                                               node.childNodes[i].style.display = "list-item";
+                                               //Effect.Appear(node.childNodes[i], {duration : 0.3});
+                                       }
+               
+                                       if (has_unread) {
+                                               node.childNodes[i].style.display = "list-item";
+                                               cat_unread++;
+                                               //Effect.Appear(node.childNodes[i], {duration : 0.3});
+                                               //Effect.Highlight(node.childNodes[i]);
+                                       }
                                }
                        }
-               }
-       }       
-
-//     debug("end cat: " + node.id + " unread " + cat_unread);
-
-       if (cat_unread == 0) {
-               if (cat_node.style == undefined) {
-                       debug("ERROR: supplied cat_node " + cat_node + 
-                               " has no styles. WTF?");
-                       return;
-               }
-               if (hide) {
-                       //cat_node.style.display = "none";
-                       Effect.Fade(cat_node, {duration : 0.3, 
-                               queue: { position: 'end', scope: 'CFADE-' + node.id, limit: 1 }});
+               }       
+       
+       //      debug("end cat: " + node.id + " unread " + cat_unread);
+       
+               if (cat_unread == 0) {
+                       if (cat_node.style == undefined) {
+                               debug("ERROR: supplied cat_node " + cat_node + 
+                                       " has no styles. WTF?");
+                               return;
+                       }
+                       if (hide) {
+                               //cat_node.style.display = "none";
+                               Effect.Fade(cat_node, {duration : 0.3, 
+                                       queue: { position: 'end', scope: 'CFADE-' + node.id, limit: 1 }});
+                       } else {
+                               cat_node.style.display = "list-item";
+                       }
                } else {
-                       cat_node.style.display = "list-item";
-               }
-       } else {
-               try {
-                       cat_node.style.display = "list-item";
-               } catch (e) {
-                       debug(e);
+                       try {
+                               cat_node.style.display = "list-item";
+                       } catch (e) {
+                               debug(e);
+                       }
                }
-       }
 
 //     debug("unread for category: " + cat_unread);
+
+       } catch (e) {
+               exception_error("hideOrShowFeedsCategory", e);
+       }
 }
 
 function selectTableRow(r, do_select) {
@@ -1148,12 +1150,7 @@ function leading_zero(p) {
 
 function closeInfoBox(cleanup) {
 
-       if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
-               var overlay = document.getElementById("dialog_overlay");
-               if (overlay) {
-                       overlay.style.display = "none";
-               }
-       }
+       Element.hide("dialog_overlay");
 
        var box = document.getElementById('infoBox');
        var shadow = document.getElementById('infoBoxShadow');
@@ -1209,11 +1206,8 @@ function infobox_callback2(transport) {
 
                debug("infobox_callback2");
 
-               if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
-                       var overlay = document.getElementById("dialog_overlay");
-                       if (overlay) {
-                               overlay.style.display = "block";
-                       }
+               if (!getInitParam("infobox_disable_overlay")) {
+                       Element.show("dialog_overlay");
                }
 
                var box = document.getElementById('infoBox');
@@ -1339,22 +1333,6 @@ function filterCR(e, f)
        }
 }
 
-function getMainContext() {
-       return this.window;
-}
-
-function getFeedsContext() {
-       return this.window;
-}
-
-function getContentContext() {
-       return this.window;
-}
-
-function getHeadlinesContext() {
-       return this.window;
-}
-
 var debug_last_class = "even";
 
 function debug(msg) {
@@ -1412,14 +1390,12 @@ function fatalError(code, message) {
 }
 
 function getFeedName(id, is_cat) {     
-       var d = getFeedsContext().document;
-
        var e;
 
        if (is_cat) {
-               e = d.getElementById("FCATN-" + id);
+               e = document.getElementById("FCATN-" + id);
        } else {
-               e = d.getElementById("FEEDN-" + id);
+               e = document.getElementById("FEEDN-" + id);
        }
        if (e) {
                return e.innerHTML.stripTags();
@@ -1428,10 +1404,6 @@ function getFeedName(id, is_cat) {
        }
 }
 
-function viewContentUrl(url) {
-       getContentContext().location = url;
-}
-
 function filterDlgCheckAction(sender) {
 
        try {