]> git.wh0rd.org - tt-rss.git/blobdiff - viewfeed.js
allow forwarding multiple articles by email
[tt-rss.git] / viewfeed.js
index de392103f64b3dfeb6f025c2609ed2d8a3e3d973..1e9a11a1656a165f4a24fa2f33eac251e1f631aa 100644 (file)
@@ -17,7 +17,7 @@ var last_requested_article = false;
 
 function catchup_callback2(transport, callback) {
        try {
-               debug("catchup_callback2 " + transport + ", " + callback);
+               console.log("catchup_callback2 " + transport + ", " + callback);
                notify("");                     
                all_counters_callback2(transport);
                if (callback) {
@@ -30,7 +30,7 @@ function catchup_callback2(transport, callback) {
 
 function clean_feed_selections() {
        try {
-               var feeds = document.getElementById("feedList").getElementsByTagName("LI");
+               var feeds = $("feedList").getElementsByTagName("LI");
 
                for (var i = 0; i < feeds.length; i++) {
                        if (feeds[i].id && feeds[i].id.match("FEEDR-")) {
@@ -48,9 +48,14 @@ function clean_feed_selections() {
 function headlines_callback2(transport, feed_cur_page) {
        try {
 
+               if (!transport.responseText && db) {
+                       offlineConfirmModeChange();
+                       return;
+               }
+
                loading_set_progress(100);
 
-               debug("headlines_callback2 [page=" + feed_cur_page + "]");
+               console.log("headlines_callback2 [page=" + feed_cur_page + "]");
 
                if (!transport_error_check(transport)) return;
 
@@ -68,22 +73,35 @@ function headlines_callback2(transport, feed_cur_page) {
                        }
                }
 
+               var ll = $('FLL-' + feed_id);
+
                if (!is_cat) {
-                       var feedr = document.getElementById("FEEDR-" + feed_id);
+                       var feedr = $("FEEDR-" + feed_id);
                        if (feedr && !feedr.className.match("Selected")) {      
                                feedr.className = feedr.className + "Selected";
                        } 
+                       if (feedr && ll) feedr.removeChild(ll);
                } else {
-                       var feedr = document.getElementById("FCAT-" + feed_id);
+                       var feedr = $("FCAT-" + feed_id);
                        if (feedr && !feedr.className.match("Selected")) {      
                                feedr.className = feedr.className + "Selected";
                        } 
+
+                       var fcap = $("FCAP-" + feed_id);
+                       if (fcap && ll) fcap.removeChild(ll);
+
                }
-       
-               var f = document.getElementById("headlines-frame");
+
+               var img = $('FIMG-' + feed_id);
+
+               if (img && !is_cat) {
+                       img.src = img.alt;
+               }
+
+               var f = $("headlines-frame");
                try {
                        if (feed_cur_page == 0) { 
-                               debug("resetting headlines scrollTop");
+                               console.log("resetting headlines scrollTop");
                                f.scrollTop = 0; 
                        }
                } catch (e) { };
@@ -132,36 +150,36 @@ function headlines_callback2(transport, feed_cur_page) {
                                        }
 
                                } else {
-                                       debug("headlines_callback: returned no data");
+                                       console.log("headlines_callback: returned no data");
                                f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML data)') + "</div>";
        
                                }
                        } else {
                                if (headlines) {
                                        if (headlines_count > 0) {
-                                               debug("adding some more headlines...");
+                                               console.log("adding some more headlines...");
        
-                                               var c = document.getElementById("headlinesList");
+                                               var c = $("headlinesList");
                
                                                if (!c) {
-                                                       c = document.getElementById("headlinesInnerContainer");
+                                                       c = $("headlinesInnerContainer");
                                                }
 
                                                var ids = getSelectedArticleIds2();
        
                                                c.innerHTML = c.innerHTML + headlines.firstChild.nodeValue;
 
-                                               debug("restore selected ids: " + ids);
+                                               console.log("restore selected ids: " + ids);
 
                                                for (var i = 0; i < ids.length; i++) {
                                                        markHeadline(ids[i]);
                                                }
 
                                        } else {
-                                               debug("no new headlines received");
+                                               console.log("no new headlines received");
                                        }
                                } else {
-                                       debug("headlines_callback: returned no data");
+                                       console.log("headlines_callback: returned no data");
                                        notify_error("Error while trying to load more headlines");      
                                }
 
@@ -170,30 +188,30 @@ function headlines_callback2(transport, feed_cur_page) {
                        if (articles) {
                                for (var i = 0; i < articles.length; i++) {
                                        var a_id = articles[i].getAttribute("id");
-                                       debug("found id: " + a_id);
+                                       console.log("found id: " + a_id);
                                        cache_inject(a_id, articles[i].firstChild.nodeValue);
                                }
                        } else {
-                               debug("no cached articles received");
+                               console.log("no cached articles received");
                        }
        
                        if (counters) {
-                               debug("parsing piggybacked counters: " + counters);
+                               console.log("parsing piggybacked counters: " + counters);
                                parse_counters(counters, false);
                        } else {
-                               debug("counters container not found in reply, requesting...");
+                               console.log("counters container not found in reply, requesting...");
                                request_counters();
                        }
        
                        if (runtime_info) {
-                               debug("parsing runtime info: " + runtime_info[0]);
+                               console.log("parsing runtime info: " + runtime_info[0]);
                                parse_runtime_info(runtime_info[0]);
                        } else {
-                               debug("counters container not found in reply");
+                               console.log("counters container not found in reply");
                        }
        
                } else {
-                       debug("headlines_callback: returned no XML object");
+                       console.log("headlines_callback: returned no XML object");
                        f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
                }
        
@@ -203,14 +221,14 @@ function headlines_callback2(transport, feed_cur_page) {
        
                if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
        
-               if (!document.getElementById("headlinesList") && 
+               if (!$("headlinesList") && 
                                getActiveFeedId() != -3 &&
                                getInitParam("cdm_auto_catchup") == 1) {
-                       debug("starting CDM watchdog");
+                       console.log("starting CDM watchdog");
                        _cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 5000);
                        _cdm_wd_vishist = new Array();
                } else {
-                       debug("not in CDM mode or watchdog disabled");
+                       console.log("not in CDM mode or watchdog disabled");
                }
        
                _feed_cur_page = feed_cur_page;
@@ -227,18 +245,20 @@ function headlines_callback2(transport, feed_cur_page) {
 
 function render_article(article) {
        try {
-               var f = document.getElementById("content-frame");
+               var f = $("content-frame");
                try {
                        f.scrollTop = 0;
                } catch (e) { };
 
-               var fi = document.getElementById("content-insert");
+               var fi = $("content-insert");
 
                try {
                        fi.scrollTop = 0;
                } catch (e) { };
-
+               
                fi.innerHTML = article;
+               
+//             article.evalScripts();          
 
        } catch (e) {
                exception_error("render_article", e);
@@ -251,7 +271,7 @@ function showArticleInHeadlines(id) {
 
                cleanSelected("headlinesList");
        
-               var crow = document.getElementById("RROW-" + id);
+               var crow = $("RROW-" + id);
 
                if (!crow) return;
 
@@ -261,7 +281,7 @@ function showArticleInHeadlines(id) {
 
                selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
        
-               var upd_img_pic = document.getElementById("FUPDPIC-" + id);
+               var upd_img_pic = $("FUPDPIC-" + id);
 
                var cache_prefix = "";
                                
@@ -280,13 +300,15 @@ function showArticleInHeadlines(id) {
                        //
                }
 
-               if (upd_img_pic && upd_img_pic.src.match("updated.png")) {
+               if (upd_img_pic && (upd_img_pic.src.match("updated.png") || 
+                                       upd_img_pic.src.match("fresh_sign.png"))) {
+
                        upd_img_pic.src = "images/blank_icon.gif";
 
                        cache_invalidate(cache_prefix + getActiveFeedId());
 
                        cache_inject(cache_prefix + getActiveFeedId(),
-                               document.getElementById("headlines-frame").innerHTML,
+                               $("headlines-frame").innerHTML,
                                get_feed_unread(getActiveFeedId()));
 
                } else if (article_is_unread && view_mode == "all_articles") {
@@ -294,7 +316,7 @@ function showArticleInHeadlines(id) {
                        cache_invalidate(cache_prefix + getActiveFeedId());
 
                        cache_inject(cache_prefix + getActiveFeedId(),
-                               document.getElementById("headlines-frame").innerHTML,
+                               $("headlines-frame").innerHTML,
                                get_feed_unread(getActiveFeedId())-1);
 
                } else if (article_is_unread) {
@@ -308,46 +330,66 @@ function showArticleInHeadlines(id) {
        }
 }
 
-function article_callback2(transport, id, feed_id) {
+function article_callback2(transport, id) {
        try {
-               debug("article_callback2 " + id);
+               console.log("article_callback2 " + id);
+
+               if (!transport.responseText && db) {
+                       offlineConfirmModeChange();
+                       return;
+               }
 
                if (transport.responseXML) {
 
                        if (!transport_error_check(transport)) return;
 
-                       debug("looking for articles to cache...");
+/*                     var ll = $('LL-' + id);
+                       var content = $('HLC-' + id);
+
+                       if (ll && content) content.removeChild(ll); */
+                       
+                       var upic = $('FUPDPIC-' + id);
+
+                       if (upic) {
+                               upic.src = 'images/blank_icon.gif';
+                       }
+
+                       if (id != last_requested_article) {
+                               console.log("requested article id is out of sequence, aborting");
+                               return;
+                       }
+
+                       active_post_id = id; 
+
+                       console.log("looking for articles to cache...");
 
                        var articles = transport.responseXML.getElementsByTagName("article");
 
                        for (var i = 0; i < articles.length; i++) {
                                var a_id = articles[i].getAttribute("id");
 
-                               debug("found id: " + a_id);
+                               console.log("found id: " + a_id);
 
                                if (a_id == active_post_id) {
-                                       debug("active article, rendering...");                                  
+                                       console.log("active article, rendering...");                                    
                                        render_article(articles[i].firstChild.nodeValue);
                                }
 
                                cache_inject(a_id, articles[i].firstChild.nodeValue);
                        }
 
-                       if (id != last_requested_article) {
-                               debug("requested article id is out of sequence, aborting");
-                               return;
-                       }
-
-                       active_real_feed_id = feed_id;
-                       active_post_id = id; 
 
                        showArticleInHeadlines(id);     
 
+                       if (db) {
+                               db.execute("UPDATE articles SET unread = 0 WHERE id = ?", [id]);
+                       }
+
                        var reply = transport.responseXML.firstChild.firstChild;
                
                } else {
-                       debug("article_callback: returned no XML object");
-                       //var f = document.getElementById("content-frame");
+                       console.log("article_callback: returned no XML object");
+                       //var f = $("content-frame");
                        //f.innerHTML = "<div class='whiteBox'>" + __('Could not display article (missing XML object)') + "</div>";
                }
 
@@ -366,10 +408,10 @@ function article_callback2(transport, id, feed_id) {
                                var counters = transport.responseXML.getElementsByTagName("counters")[0];
 
                                if (counters) {
-                                       debug("parsing piggybacked counters: " + counters);
+                                       console.log("parsing piggybacked counters: " + counters);
                                        parse_counters(counters, false);
                                } else {
-                                       debug("counters container not found in reply, requesting...");
+                                       console.log("counters container not found in reply, requesting...");
                                        request_counters();
                                }
                        }
@@ -381,40 +423,20 @@ function article_callback2(transport, id, feed_id) {
        }
 }
 
-function view_offline(id, feed_id) {
+function view(id) {
        try {
+               console.log("loading article: " + id);
 
-               enableHotkeys();
-               showArticleInHeadlines(id);
-
-               render_article("FIXME");
-
-               return false;
-
-       } catch (e) {
-               exception_error("view_offline", e);
-       }
-}
-
-function view(id, feed_id, skip_history) {
-       
-       try {
-               debug("loading article: " + id + "/" + feed_id);
-
-               if (offline_mode) return view_offline(id, feed_id);
+               if (offline_mode) return view_offline(id);
 
                var cached_article = cache_find(id);
 
-               debug("cache check result: " + (cached_article != false));
+               console.log("cache check result: " + (cached_article != false));
        
                enableHotkeys();
-       
-               //setActiveFeedId(feed_id);
+               hideAuxDlg();
 
-               var query = "backend.php?op=view&id=" + param_escape(id) +
-                       "&feed=" + param_escape(feed_id);
-
-               var date = new Date();
+               var query = "?op=view&id=" + param_escape(id);
 
                var neighbor_ids = getRelativePostIds(active_post_id);
 
@@ -428,7 +450,7 @@ function view(id, feed_id, skip_history) {
                        }
                }
 
-               debug("additional ids: " + cids_to_request.toString());                 
+               console.log("additional ids: " + cids_to_request.toString());                   
 
                /* additional info for piggyback counters */
 
@@ -438,13 +460,9 @@ function view(id, feed_id, skip_history) {
                        query = query + "&omode=flc";
                }
 
-               var date = new Date();
-               var timestamp = Math.round(date.getTime() / 1000);
-               query = query + "&ts=" + timestamp;
-
                query = query + "&cids=" + cids_to_request.toString();
 
-               var crow = document.getElementById("RROW-" + id);
+               var crow = $("RROW-" + id);
                var article_is_unread = crow.className.match("Unread");
 
                if (!async_counters_work) {
@@ -455,7 +473,11 @@ function view(id, feed_id, skip_history) {
 
                if (!cached_article) {
 
-                       notify_progress("Loading, please wait...", true);
+                       var upic = $('FUPDPIC-' + id);
+
+                       if (upic) {     
+                               upic.src = getInitParam("sign_progress");
+                       }
 
                } else if (cached_article && article_is_unread) {
 
@@ -474,9 +496,10 @@ function view(id, feed_id, skip_history) {
 
                last_requested_article = id;
 
-               new Ajax.Request(query, {
+               new Ajax.Request("backend.php", {
+                       parameters: query,
                        onComplete: function(transport) { 
-                               article_callback2(transport, id, feed_id); 
+                               article_callback2(transport, id); 
                        } });
 
                return false;
@@ -498,7 +521,7 @@ function tMark_afh_off(effect) {
        try {
                var elem = effect.effects[0].element;
 
-               debug("tMark_afh_off : " + elem.id);
+               console.log("tMark_afh_off : " + elem.id);
 
                if (elem) {
                        elem.src = elem.src.replace("mark_set", "mark_unset");
@@ -515,7 +538,7 @@ function tPub_afh_off(effect) {
        try {
                var elem = effect.effects[0].element;
 
-               debug("tPub_afh_off : " + elem.id);
+               console.log("tPub_afh_off : " + elem.id);
 
                if (elem) {
                        elem.src = elem.src.replace("pub_set", "pub_unset");
@@ -532,7 +555,7 @@ function toggleMark(id, client_only, no_effects) {
 
        try {
 
-               var query = "backend.php?op=rpc&id=" + id + "&subop=mark";
+               var query = "?op=rpc&id=" + id + "&subop=mark";
        
                query = query + "&afid=" + getActiveFeedId();
        
@@ -542,35 +565,46 @@ function toggleMark(id, client_only, no_effects) {
                        query = query + "&omode=flc";
                }
        
-               var mark_img = document.getElementById("FMPIC-" + id);
+               var mark_img = $("FMPIC-" + id);
 
                if (!mark_img) return;
 
-               var vfeedu = document.getElementById("FEEDU--1");
-               var crow = document.getElementById("RROW-" + id);
+               var vfeedu = $("FEEDU--1");
+               var crow = $("RROW-" + id);
        
                if (mark_img.src.match("mark_unset")) {
                        mark_img.src = mark_img.src.replace("mark_unset", "mark_set");
                        mark_img.alt = __("Unstar article");
                        query = query + "&mark=1";
 
+                       if (db) {
+                               db.execute("UPDATE articles SET marked = 1 WHERE id = ?", [id]);
+                       }
+
                } else {
-                       //mark_img.src = "images/mark_unset.png";
                        mark_img.alt = __("Please wait...");
                        query = query + "&mark=0";
        
-                       if (document.getElementById("headlinesList") && !no_effects) {
+                       if ($("headlinesList") && !no_effects) {
                                Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off});
                        } else { 
                                mark_img.src = mark_img.src.replace("mark_set", "mark_unset");
                                mark_img.alt = __("Star article");
                        }
+
+                       if (db) {
+                               db.execute("UPDATE articles SET marked = 0 WHERE id = ?", [id]);
+                       }
+
                }
 
+               if (!no_effects) update_local_feedlist_counters();
+
                if (!client_only) {
-                       debug(query);
+                       console.log(query);
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        all_counters_callback2(transport); 
                                } });
@@ -582,13 +616,19 @@ function toggleMark(id, client_only, no_effects) {
        }
 }
 
-function togglePub(id, client_only, no_effects) {
+function togglePub(id, client_only, no_effects, note) {
 
        try {
 
-               var query = "backend.php?op=rpc&id=" + id + "&subop=publ";
+               var query = "?op=rpc&id=" + id + "&subop=publ";
        
                query = query + "&afid=" + getActiveFeedId();
+
+               if (note != undefined) {
+                       query = query + "&note=" + param_escape(note);
+               } else {
+                       query = query + "&note=undefined";
+               }
        
                if (tagsAreDisplayed()) {
                        query = query + "&omode=tl";
@@ -596,25 +636,23 @@ function togglePub(id, client_only, no_effects) {
                        query = query + "&omode=flc";
                }
        
-               var mark_img = document.getElementById("FPPIC-" + id);
+               var mark_img = $("FPPIC-" + id);
 
                if (!mark_img) return;
 
-               var vfeedu = document.getElementById("FEEDU--2");
-               var crow = document.getElementById("RROW-" + id);
+               var vfeedu = $("FEEDU--2");
+               var crow = $("RROW-" + id);
        
-               if (mark_img.src.match("pub_unset")) {
+               if (mark_img.src.match("pub_unset") || note != undefined) {
                        mark_img.src = mark_img.src.replace("pub_unset", "pub_set");
                        mark_img.alt = __("Unpublish article");
                        query = query + "&pub=1";
-       
 
                } else {
-                       //mark_img.src = "images/pub_unset.png";
                        mark_img.alt = __("Please wait...");
                        query = query + "&pub=0";
        
-                       if (document.getElementById("headlinesList") && !no_effects) {
+                       if ($("headlinesList") && !no_effects) {
                                Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off});
                        } else { 
                                mark_img.src = mark_img.src.replace("pub_set", "pub_unset");
@@ -623,14 +661,36 @@ function togglePub(id, client_only, no_effects) {
                }
 
                if (!client_only) {
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
-                                       all_counters_callback2(transport); 
+                                       all_counters_callback2(transport);
+               
+                                       var note = transport.responseXML.getElementsByTagName("note")[0];
+               
+                                       if (note) {
+                                               var note_id = note.getAttribute("id");
+                                               var note_size = note.getAttribute("size");
+                                               var note_content = note.firstChild.nodeValue;
+               
+                                               var container = $('POSTNOTE-' + note_id);
+               
+                                               cache_invalidate(note_id);
+               
+                                               if (container) {
+                                                       if (note_size == "0") {
+                                                               Element.hide(container);
+                                                       } else {
+                                                               container.innerHTML = note_content;
+                                                               Element.show(container);
+                                                       }
+                                               }
+                                       }       
+
                                } });
                }
 
        } catch (e) {
-
                exception_error("togglePub", e);
        }
 }
@@ -639,17 +699,17 @@ function correctHeadlinesOffset(id) {
        
        try {
 
-               var hlist = document.getElementById("headlinesList");
-               var container = document.getElementById("headlinesInnerContainer");
-               var row = document.getElementById("RROW-" + id);
+               var hlist = $("headlinesList");
+               var container = $("headlinesInnerContainer");
+               var row = $("RROW-" + id);
        
                var viewport = container.offsetHeight;
        
                var rel_offset_top = row.offsetTop - container.scrollTop;
                var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
        
-               debug("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
-               debug("Vport: " + viewport);
+               console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
+               console.log("Vport: " + viewport);
 
                if (rel_offset_top <= 0 || rel_offset_top > viewport) {
                        container.scrollTop = row.offsetTop;
@@ -682,7 +742,7 @@ function moveToPost(mode) {
                var prev_id = false;
                var next_id = false;
                
-               if (!document.getElementById('RROW-' + active_post_id)) {
+               if (!$('RROW-' + active_post_id)) {
                        active_post_id = false;
                }
                
@@ -738,9 +798,9 @@ function moveToPost(mode) {
 function toggleSelected(id) {
        try {
        
-               var cb = document.getElementById("RCHK-" + id);
+               var cb = $("RCHK-" + id);
 
-               var row = document.getElementById("RROW-" + id);
+               var row = $("RROW-" + id);
                if (row) {
                        var nc = row.className;
                        
@@ -781,7 +841,7 @@ function toggleUnread_afh(effect) {
 function toggleUnread(id, cmode, effect) {
        try {
        
-               var row = document.getElementById("RROW-" + id);
+               var row = $("RROW-" + id);
                if (row) {
                        var nc = row.className;
                        var is_selected = row.className.match("Selected");
@@ -791,7 +851,7 @@ function toggleUnread(id, cmode, effect) {
                        // since we are removing selection from the object, uncheck
                        // corresponding checkbox
 
-                       var cb = document.getElementById("RCHK-" + id);
+                       var cb = $("RCHK-" + id);
                        if (cb) {
                                cb.checked = false;
                        }
@@ -811,6 +871,12 @@ function toggleUnread(id, cmode, effect) {
                                } else {
                                        row.className = nc + "Unread";
                                }
+
+                               if (db) {
+                                       db.execute("UPDATE articles SET unread = not unread "+
+                                               "WHERE id = ?", [id]);
+                               }
+
                        } else if (cmode == 0) {
                                row.className = nc;
 
@@ -819,28 +885,42 @@ function toggleUnread(id, cmode, effect) {
                                                afterFinish: toggleUnread_afh,
                                                queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
                                } 
+
+                               if (db) {
+                                       db.execute("UPDATE articles SET unread = 0 "+
+                                               "WHERE id = ?", [id]);
+                               }
+
                        } else if (cmode == 1) {
                                row.className = nc + "Unread";
+
+                               if (db) {
+                                       db.execute("UPDATE articles SET unread = 1 "+
+                                               "WHERE id = ?", [id]);
+                               }
+
                        }
 
+                       update_local_feedlist_counters();
+
                        // Disable unmarking as selected for the time being (16.05.08) -fox
                        if (is_selected) row.className = row.className + "Selected";
 
                        if (cmode == undefined) cmode = 2;
 
-                       var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
-                               param_escape(id) + "&cmode=" + param_escape(cmode);
+                       var query = "?op=rpc&subop=catchupSelected" +
+                               "&cmode=" + param_escape(cmode) + "&ids=" + param_escape(id);
 
 //                     notify_progress("Loading, please wait...");
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        all_counters_callback2(transport); 
                                } });
 
                }
 
-
        } catch (e) {
                exception_error("toggleUnread", e);
        }
@@ -860,14 +940,15 @@ function selectionRemoveLabel(id) {
 
 //             if (ok) {
 
-                       var query = "backend.php?op=rpc&subop=removeFromLabel&ids=" +
+                       var query = "?op=rpc&subop=removeFromLabel&ids=" +
                                param_escape(ids.toString()) + "&lid=" + param_escape(id);
 
 //                     notify_progress("Loading, please wait...");
 
                        cache_invalidate("F:" + (-11 - id));
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        show_labels_in_headlines(transport);
                                        all_counters_callback2(transport);
@@ -897,12 +978,13 @@ function selectionAssignLabel(id) {
 
                        cache_invalidate("F:" + (-11 - id));
 
-                       var query = "backend.php?op=rpc&subop=assignToLabel&ids=" +
+                       var query = "?op=rpc&subop=assignToLabel&ids=" +
                                param_escape(ids.toString()) + "&lid=" + param_escape(id);
 
 //                     notify_progress("Loading, please wait...");
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        show_labels_in_headlines(transport);
                                        all_counters_callback2(transport);
@@ -932,7 +1014,7 @@ function selectionToggleUnread(cdm_mode, set_state, callback_func, no_error) {
                }
 
                for (i = 0; i < rows.length; i++) {
-                       var row = document.getElementById("RROW-" + rows[i]);
+                       var row = $("RROW-" + rows[i]);
                        if (row) {
                                var nc = row.className;
                                nc = nc.replace("Unread", "");
@@ -944,20 +1026,34 @@ function selectionToggleUnread(cdm_mode, set_state, callback_func, no_error) {
                                        } else {
                                                row.className = nc + "UnreadSelected";
                                        }
+                                       if (db) {
+                                               db.execute("UPDATE articles SET unread = NOT unread WHERE id = ?", 
+                                                       [rows[i]]);
+                                       }
                                }
 
                                if (set_state == false) {
                                        row.className = nc + "Selected";
+                                       if (db) {
+                                               db.execute("UPDATE articles SET unread = 0 WHERE id = ?", 
+                                                       [rows[i]]);
+                                       }
                                }
 
                                if (set_state == true) {
                                        row.className = nc + "UnreadSelected";
+                                       if (db) {
+                                               db.execute("UPDATE articles SET unread = 1 WHERE id = ?", 
+                                                       [rows[i]]);
+                                       }
                                }
                        }
                }
 
                if (rows.length > 0) {
 
+                       update_local_feedlist_counters();
+
                        var cmode = "";
 
                        if (set_state == undefined) {
@@ -968,12 +1064,13 @@ function selectionToggleUnread(cdm_mode, set_state, callback_func, no_error) {
                                cmode = "0";
                        }
 
-                       var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
-                               param_escape(rows.toString()) + "&cmode=" + cmode;
+                       var query = "?op=rpc&subop=catchupSelected" +
+                               "&cmode=" + cmode + "&ids=" + param_escape(rows.toString()); 
 
                        notify_progress("Loading, please wait...");
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        catchup_callback2(transport, callback_func); 
                                } });
@@ -1005,22 +1102,19 @@ function selectionToggleMarked(cdm_mode) {
                        toggleMark(rows[i], true, true);
                }
 
+               update_local_feedlist_counters();
+
                if (rows.length > 0) {
 
-                       var query = "backend.php?op=rpc&subop=markSelected&ids=" +
+                       var query = "?op=rpc&subop=markSelected&ids=" +
                                param_escape(rows.toString()) + "&cmode=2";
 
                        query = query + "&afid=" + getActiveFeedId();
 
-/*                     if (tagsAreDisplayed()) {
-                               query = query + "&omode=tl";
-                       } else {
-                               query = query + "&omode=flc";
-                       } */
-
                        query = query + "&omode=lc";
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        all_counters_callback2(transport); 
                                } });
@@ -1054,20 +1148,15 @@ function selectionTogglePublished(cdm_mode) {
 
                if (rows.length > 0) {
 
-                       var query = "backend.php?op=rpc&subop=publishSelected&ids=" +
+                       var query = "?op=rpc&subop=publishSelected&ids=" +
                                param_escape(rows.toString()) + "&cmode=2";
 
                        query = query + "&afid=" + getActiveFeedId();
 
-/*                     if (tagsAreDisplayed()) {
-                               query = query + "&omode=tl";
-                       } else {
-                               query = query + "&omode=flc";
-                       } */
-
                        query = query + "&omode=lc";
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        all_counters_callback2(transport); 
                                } });
@@ -1081,7 +1170,7 @@ function selectionTogglePublished(cdm_mode) {
 
 function cdmGetSelectedArticles() {
        var sel_articles = new Array();
-       var container = document.getElementById("headlinesInnerContainer");
+       var container = $("headlinesInnerContainer");
 
        for (i = 0; i < container.childNodes.length; i++) {
                var child = container.childNodes[i];
@@ -1097,7 +1186,7 @@ function cdmGetSelectedArticles() {
 
 function cdmGetVisibleArticles() {
        var sel_articles = new Array();
-       var container = document.getElementById("headlinesInnerContainer");
+       var container = $("headlinesInnerContainer");
 
        if (!container) return sel_articles;
 
@@ -1115,7 +1204,7 @@ function cdmGetVisibleArticles() {
 
 function cdmGetUnreadArticles() {
        var sel_articles = new Array();
-       var container = document.getElementById("headlinesInnerContainer");
+       var container = $("headlinesInnerContainer");
 
        for (i = 0; i < container.childNodes.length; i++) {
                var child = container.childNodes[i];
@@ -1132,7 +1221,7 @@ function cdmGetUnreadArticles() {
 
 // mode = all,none,unread
 function cdmSelectArticles(mode) {
-       var container = document.getElementById("headlinesInnerContainer");
+       var container = $("headlinesInnerContainer");
 
        for (i = 0; i < container.childNodes.length; i++) {
                var child = container.childNodes[i];
@@ -1140,7 +1229,7 @@ function cdmSelectArticles(mode) {
                if (child.id && child.id.match("RROW-")) {
                        var aid = child.id.replace("RROW-", "");
 
-                       var cb = document.getElementById("RCHK-" + aid);
+                       var cb = $("RCHK-" + aid);
 
                        if (mode == "all") {
                                if (!child.className.match("Selected")) {
@@ -1172,7 +1261,7 @@ function catchupPage() {
                return;
        }
 
-       if (document.getElementById("headlinesList")) {
+       if ($("headlinesList")) {
                selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
                selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
                selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
@@ -1183,13 +1272,13 @@ function catchupPage() {
        }
 }
 
-function catchupSelection() {
+function deleteSelection() {
 
        try {
 
                var rows;
        
-               if (document.getElementById("headlinesList")) {
+               if ($("headlinesList")) {
                        rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
                } else {        
                        rows = cdmGetSelectedArticles();
@@ -1202,8 +1291,14 @@ function catchupSelection() {
        
        
                var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
-               
-               var str = __("Mark %d selected articles in %s as read?");
+               var str;
+               var op;
+       
+               if (getActiveFeedId() != 0) {
+                       str = __("Delete %d selected articles in %s?");
+               } else {
+                       str = __("Delete %d selected articles?");
+               }
        
                str = str.replace("%d", rows.length);
                str = str.replace("%s", fn);
@@ -1211,57 +1306,127 @@ function catchupSelection() {
                if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
                        return;
                }
-       
-               if (document.getElementById("headlinesList")) {
-                       selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
-       //              selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
-               } else {
-                       selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
-       //              cdmSelectArticles('none');
-               }
+
+               query = "?op=rpc&subop=delete&ids=" + param_escape(rows);
+
+               console.log(query);
+
+               new Ajax.Request("backend.php", {
+                       parameters: query,
+                       onComplete: function(transport) {
+                                       viewCurrentFeed();
+                               } });
 
        } catch (e) {
-               exception_error("catchupSelection", e);
+               exception_error("deleteSelection", e);
        }
 }
 
-function editArticleTags(id, feed_id, cdm_enabled) {
-       displayDlg('editArticleTags', id);
-}
-
+function archiveSelection() {
 
-function tag_saved_callback(transport) {
        try {
-               debug("in tag_saved_callback");
 
-               closeInfoBox();
-               notify("");
+               var rows;
+       
+               if ($("headlinesList")) {
+                       rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
+               } else {        
+                       rows = cdmGetSelectedArticles();
+               }
+       
+               if (rows.length == 0) {
+                       alert(__("No articles are selected."));
+                       return;
+               }
+       
+       
+               var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
+               var str;
+               var op;
+       
+               if (getActiveFeedId() != 0) {
+                       str = __("Archive %d selected articles in %s?");
+                       op = "archive";
+               } else {
+                       str = __("Move %d archived articles back?");
+                       op = "unarchive";
+               }
+       
+               str = str.replace("%d", rows.length);
+               str = str.replace("%s", fn);
+       
+               if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
+                       return;
+               }
 
-               if (tagsAreDisplayed()) {
-                       _reload_feedlist_after_view = true;
+               query = "?op=rpc&subop="+op+"&ids=" + param_escape(rows);
+
+               console.log(query);
+
+               for (var i = 0; i < rows.length; i++) {
+                       cache_invalidate(rows[i]);
                }
 
+               new Ajax.Request("backend.php", {
+                       parameters: query,
+                       onComplete: function(transport) {
+                                       viewCurrentFeed();
+                               } });
 
-               if (transport.responseXML) {
-                       var tags_str = transport.responseXML.getElementsByTagName("tags-str")[0];
-                       
-                       if (tags_str) {
-                               var id = tags_str.getAttribute("id");
+       } catch (e) {
+               exception_error("archiveSelection", e);
+       }
+}
 
-                               if (id) {
-                                       var tags = document.getElementById("ATSTR-" + id);
-                                       if (tags) {
-                                               tags.innerHTML = tags_str.firstChild.nodeValue;
-                                       }
-                               }
-                       }
+function catchupSelection() {
+
+       try {
+
+               var rows;
+       
+               if ($("headlinesList")) {
+                       rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
+               } else {        
+                       rows = cdmGetSelectedArticles();
+               }
+       
+               if (rows.length == 0) {
+                       alert(__("No articles are selected."));
+                       return;
+               }
+       
+       
+               var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
+               
+               var str = __("Mark %d selected articles in %s as read?");
+       
+               str = str.replace("%d", rows.length);
+               str = str.replace("%s", fn);
+       
+               if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
+                       return;
+               }
+       
+               if ($("headlinesList")) {
+                       selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
+               } else {
+                       selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
                }
 
        } catch (e) {
-               exception_error("tag_saved_callback", e);
+               exception_error("catchupSelection", e);
        }
 }
 
+function editArticleTags(id, feed_id, cdm_enabled) {
+       displayDlg('editArticleTags', id,
+                          function () {
+                                  new Ajax.Autocompleter('tags_str', 'tags_choices',
+                                          "backend.php?op=rpc&subop=completeTags",
+                                          { tokens: ',', paramName: "search" });
+                          });
+}
+
 function editTagsSave() {
 
        notify_progress("Saving article tags...");
@@ -1270,15 +1435,44 @@ function editTagsSave() {
 
        var query = Form.serialize("tag_edit_form");
 
-       query = "backend.php?op=rpc&subop=setArticleTags&" + query;
+       query = "?op=rpc&subop=setArticleTags&" + query;
 
-       debug(query);
+       console.log(query);
 
-       new Ajax.Request(query, {
+       new Ajax.Request("backend.php", {
+               parameters: query,
                onComplete: function(transport) {
-                               tag_saved_callback(transport);
+                               try {
+                                       console.log("tags saved...");
+                       
+                                       closeInfoBox();
+                                       notify("");
+                       
+                                       if (tagsAreDisplayed()) {
+                                               _reload_feedlist_after_view = true;
+                                       }                       
+                       
+                                       if (transport.responseXML) {
+                                               var tags_str = transport.responseXML.getElementsByTagName("tags-str")[0];
+                                               
+                                               if (tags_str) {
+                                                       var id = tags_str.getAttribute("id");
+                       
+                                                       if (id) {
+                                                               var tags = $("ATSTR-" + id);
+                                                               if (tags) {
+                                                                       tags.innerHTML = tags_str.firstChild.nodeValue;
+                                                               }
+
+                                                               cache_invalidate(id);
+                                                       }
+                                               }
+                                       }
+                       
+                               } catch (e) {
+                                       exception_error("editTagsSave", e);
+                               }
                        } });
-
 }
 
 function editTagsInsert() {
@@ -1307,9 +1501,9 @@ function editTagsInsert() {
 }
 
 function cdmScrollViewport(where) {
-       debug("cdmScrollViewport: " + where);
+       console.log("cdmScrollViewport: " + where);
 
-       var ctr = document.getElementById("headlinesInnerContainer");
+       var ctr = $("headlinesInnerContainer");
 
        if (!ctr) return;
 
@@ -1322,8 +1516,8 @@ function cdmScrollViewport(where) {
 
 function cdmArticleIsBelowViewport(id) {
        try {
-               var ctr = document.getElementById("headlinesInnerContainer");
-               var e = document.getElementById("RROW-" + id);
+               var ctr = $("headlinesInnerContainer");
+               var e = $("RROW-" + id);
 
                if (!e || !ctr) return;
 
@@ -1342,8 +1536,8 @@ function cdmArticleIsBelowViewport(id) {
 
 function cdmArticleIsAboveViewport(id) {
        try {
-               var ctr = document.getElementById("headlinesInnerContainer");
-               var e = document.getElementById("RROW-" + id);
+               var ctr = $("headlinesInnerContainer");
+               var e = $("RROW-" + id);
 
                if (!e || !ctr) return;
 
@@ -1362,8 +1556,8 @@ function cdmArticleIsAboveViewport(id) {
 
 function cdmScrollToArticleId(id) {
        try {
-               var ctr = document.getElementById("headlinesInnerContainer");
-               var e = document.getElementById("RROW-" + id);
+               var ctr = $("headlinesInnerContainer");
+               var e = $("RROW-" + id);
 
                if (!e || !ctr) return;
 
@@ -1376,8 +1570,8 @@ function cdmScrollToArticleId(id) {
 
 function cdmArticleIsActuallyVisible(id) {
        try {
-               var ctr = document.getElementById("headlinesInnerContainer");
-               var e = document.getElementById("RROW-" + id);
+               var ctr = $("headlinesInnerContainer");
+               var e = $("RROW-" + id);
 
                if (!e || !ctr) return;
 
@@ -1408,7 +1602,7 @@ function cdmWatchdog() {
 
        try {
 
-               var ctr = document.getElementById("headlinesInnerContainer");
+               var ctr = $("headlinesInnerContainer");
 
                if (!ctr) return;
 
@@ -1426,7 +1620,7 @@ function cdmWatchdog() {
                                if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
                                                ctr.scrollTop + ctr.offsetHeight) {
 
-//                                     debug(e.id + " is visible " + e.offsetTop + "." + 
+//                                     console.log(e.id + " is visible " + e.offsetTop + "." + 
 //                                             (e.offsetTop + e.offsetHeight) + " vs " + ctr.scrollTop + "." +
 //                                             (ctr.scrollTop + ctr.offsetHeight));
 
@@ -1454,21 +1648,22 @@ function cdmWatchdog() {
                        e = e.nextSibling;
                }
 
-               debug("cdmWatchdog, ids= " + ids.toString());
+               console.log("cdmWatchdog, ids= " + ids.toString());
 
                if (ids.length > 0) {
 
                        for (var i = 0; i < ids.length; i++) {
-                               var e = document.getElementById("RROW-" + ids[i]);
+                               var e = $("RROW-" + ids[i]);
                                if (e) {
                                        e.className = e.className.replace("Unread", "");
                                }
                        }
 
-                       var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
-                               param_escape(ids.toString()) + "&cmode=0";
+                       var query = "?op=rpc&subop=catchupSelected" +
+                               "&cmode=0" + "&ids=" + param_escape(ids.toString());
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        all_counters_callback2(transport); 
                                } });
@@ -1487,8 +1682,7 @@ function cdmWatchdog() {
 function cache_inject(id, article, param) {
        try {
                if (!cache_check_param(id, param)) {
-                       debug("cache_article: miss: " + id + " [p=" + param + "]");
-       
+                       console.log("cache_article: miss: " + id + " [p=" + param + "]");
        
                        if (db) {
 
@@ -1509,7 +1703,7 @@ function cache_inject(id, article, param) {
                        }
        
                } else {
-                       debug("cache_article: hit: " + id + " [p=" + param + "]");
+                       console.log("cache_article: hit: " + id + " [p=" + param + "]");
                }
        } catch (e) {   
                exception_error("cache_inject", e);
@@ -1520,11 +1714,16 @@ function cache_find(id) {
 
        if (db) {
                var rs = db.execute("SELECT article FROM cache WHERE id = ?", [id]);
+               var a = false;
 
                if (rs.isValidRow()) {
-                       return rs.field(0);
+                       var a = rs.field(0);                    
                }
 
+               rs.close();
+
+               return a;
+
        } else {
                for (var i = 0; i < article_cache.length; i++) {
                        if (article_cache[i]["id"] == id) {
@@ -1540,11 +1739,16 @@ function cache_find_param(id, param) {
        if (db) {
                var rs = db.execute("SELECT article FROM cache WHERE id = ? AND param = ?",
                        [id, param]);
+               var a = false;
 
                if (rs.isValidRow()) {
-                       return rs.field(0);
+                       a = rs.field(0);
                }
 
+               rs.close();
+
+               return a;
+
        } else {
                for (var i = 0; i < article_cache.length; i++) {
                        if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
@@ -1560,11 +1764,16 @@ function cache_check(id) {
        if (db) {
                var rs = db.execute("SELECT COUNT(*) AS c FROM cache WHERE id = ?",
                        [id]);
+               var a = false;
 
                if (rs.isValidRow()) {
-                       return rs.field(0) != "0";
+                        a = rs.field(0) != "0";
                }
 
+               rs.close();
+
+               return a;
+
        } else {
                for (var i = 0; i < article_cache.length; i++) {
                        if (article_cache[i]["id"] == id) {
@@ -1580,11 +1789,16 @@ function cache_check_param(id, param) {
        if (db) {
                var rs = db.execute("SELECT COUNT(*) AS c FROM cache WHERE id = ? AND param = ?",
                        [id, param]);
+               var a = false;
 
                if (rs.isValidRow()) {
-                       return rs.field(0) != "0";
+                       a = rs.field(0) != "0";
                }
 
+               rs.close();
+
+               return a;
+
        } else {
                for (var i = 0; i < article_cache.length; i++) {
                        if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
@@ -1612,7 +1826,7 @@ function cache_expire() {
        }
 }
 
-function cache_empty() {
+function cache_flush() {
        article_cache = new Array();
 }
 
@@ -1628,7 +1842,7 @@ function cache_invalidate(id) {
 
                        while (i < article_cache.length) {
                                if (article_cache[i]["id"] == id) {
-                                       debug("cache_invalidate: removed id " + id);
+                                       console.log("cache_invalidate: removed id " + id);
                                        article_cache.splice(i, 1);
                                        return true;
                                }
@@ -1636,7 +1850,7 @@ function cache_invalidate(id) {
                        }
                }
 
-               debug("cache_invalidate: id not found: " + id);
+               console.log("cache_invalidate: id not found: " + id);
                return false;
        } catch (e) {
                exception_error("cache_invalidate", e);
@@ -1649,15 +1863,15 @@ function getActiveArticleId() {
 
 function cdmClicked(id) {
        try {
-               var elem = document.getElementById("RROW-" + id);
+               var elem = $("RROW-" + id);
 
                if (elem) {
                        var id = elem.id.replace("RROW-", "");
                        active_post_id = id;
 
-                       cdmSelectArticles("none");
+//                     cdmSelectArticles("none");
                        toggleUnread(id, 0, true);
-                       toggleSelected(id);
+//                     toggleSelected(id);
 
                }
        } catch (e) {
@@ -1665,31 +1879,13 @@ function cdmClicked(id) {
        } 
 }
 
-function preload_article_callback(transport) {
-       try {
-               if (transport.responseXML) {
-                       var articles = transport.responseXML.getElementsByTagName("article");
-
-                       for (var i = 0; i < articles.length; i++) {
-                               var id = articles[i].getAttribute("id");
-                               if (!cache_check(id)) {
-                                       cache_inject(id, articles[i].firstChild.nodeValue);                             
-                                       debug("preloaded article: " + id);
-                               }
-                       }
-               }
-       } catch (e) {
-               exception_error("preload_article_callback", e);
-       }
-}
-
 function preloadArticleUnderPointer(id) {
        try {
                if (getInitParam("bw_limit") == "1") return;
 
                if (post_under_pointer == id && !cache_check(id)) {
 
-                       debug("trying to preload article " + id);
+                       console.log("trying to preload article " + id);
 
                        var neighbor_ids = getRelativePostIds(id, 1);
 
@@ -1702,15 +1898,25 @@ function preloadArticleUnderPointer(id) {
                                        cids_to_request.push(neighbor_ids[i]);
                                }
                        }
-                       debug("additional ids: " + cids_to_request.toString());
+                       console.log("additional ids: " + cids_to_request.toString());
 
                        cids_to_request.push(id);
 
-                       var query = "backend.php?op=rpc&subop=getArticles&ids=" + 
+                       var query = "?op=rpc&subop=getArticles&ids=" + 
                                cids_to_request.toString();
-                       new Ajax.Request(query, {
+
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
-                                       preload_article_callback(transport);
+                                       var articles = transport.responseXML.getElementsByTagName("article");
+
+                                       for (var i = 0; i < articles.length; i++) {
+                                               var id = articles[i].getAttribute("id");
+                                               if (!cache_check(id)) {
+                                                       cache_inject(id, articles[i].firstChild.nodeValue);                             
+                                                       console.log("preloaded article: " + id);
+                                               }
+                                       }
                        } });
                }
        } catch (e) {
@@ -1743,23 +1949,17 @@ function postMouseOut(id) {
 function headlines_scroll_handler() {
        try {
 
-               var e = document.getElementById("headlinesInnerContainer");
-
-               // don't do infinite scrolling when Limit == All
+               var e = $("headlinesInnerContainer");
 
                var toolbar_form = document.forms["main_toolbar_form"];
 
-               var limit = toolbar_form.limit[toolbar_form.limit.selectedIndex];
-               if (limit.value != 0) {
-               
-                       debug((e.scrollTop + e.offsetHeight) + " vs " + e.scrollHeight + " dis? " +
-                               _infscroll_disable);
+               console.log((e.scrollTop + e.offsetHeight) + " vs " + e.scrollHeight + " dis? " +
+                       _infscroll_disable);
 
-                       if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
-                               if (!_infscroll_disable) {
-                                       debug("more cowbell!");
-                                       viewNextFeedPage();
-                               }
+               if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
+                       if (!_infscroll_disable) {
+                               console.log("more cowbell!");
+                               viewNextFeedPage();
                        }
                }
 
@@ -1780,7 +1980,7 @@ function catchupRelativeToArticle(below) {
 
                var visible_ids;
 
-               if (document.getElementById("headlinesList")) {
+               if ($("headlinesList")) {
                        visible_ids = getVisibleHeadlineIds();
                } else {
                        visible_ids = cdmGetVisibleArticles();
@@ -1791,7 +1991,7 @@ function catchupRelativeToArticle(below) {
                if (!below) {
                        for (var i = 0; i < visible_ids.length; i++) {
                                if (visible_ids[i] != getActiveArticleId()) {
-                                       var e = document.getElementById("RROW-" + visible_ids[i]);
+                                       var e = $("RROW-" + visible_ids[i]);
 
                                        if (e && e.className.match("Unread")) {
                                                ids_to_mark.push(visible_ids[i]);
@@ -1803,7 +2003,7 @@ function catchupRelativeToArticle(below) {
                } else {
                        for (var i = visible_ids.length-1; i >= 0; i--) {
                                if (visible_ids[i] != getActiveArticleId()) {
-                                       var e = document.getElementById("RROW-" + visible_ids[i]);
+                                       var e = $("RROW-" + visible_ids[i]);
 
                                        if (e && e.className.match("Unread")) {
                                                ids_to_mark.push(visible_ids[i]);
@@ -1819,17 +2019,18 @@ function catchupRelativeToArticle(below) {
                } else {
                        var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
 
-                       if (confirm(msg)) {
+                       if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
 
                                for (var i = 0; i < ids_to_mark.length; i++) {
-                                       var e = document.getElementById("RROW-" + ids_to_mark[i]);
+                                       var e = $("RROW-" + ids_to_mark[i]);
                                        e.className = e.className.replace("Unread", "");
                                }
 
-                               var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
-                                       param_escape(ids_to_mark.toString()) + "&cmode=0";
+                               var query = "?op=rpc&subop=catchupSelected" +
+                                       "&cmode=0" + "&ids=" + param_escape(ids_to_mark.toString()); 
 
-                               new Ajax.Request(query, {
+                               new Ajax.Request("backend.php", {
+                                       parameters: query,
                                        onComplete: function(transport) { 
                                                catchup_callback2(transport); 
                                        } });
@@ -1853,7 +2054,7 @@ function cdmExpandArticle(a_id) {
                Effect.Appear(id, {duration : 0.5, 
                        beforeStart: function(effect) { 
                                var h_id = 'CICH-' + a_id;
-                               var h_elem = document.getElementById(h_id);
+                               var h_elem = $(h_id);
                                if (h_elem) { h_elem.style.display = "none"; }
 
                                toggleUnread(a_id, 0);
@@ -1861,7 +2062,7 @@ function cdmExpandArticle(a_id) {
 
 
        } catch (e) {
-               exception_error("appearBlockElementF", e);
+               exception_error("cdmExpandArticle", e);
        }
 
 }
@@ -1869,7 +2070,7 @@ function cdmExpandArticle(a_id) {
 function fixHeadlinesOrder(ids) {
        try {
                for (var i = 0; i < ids.length; i++) {
-                       var e = document.getElementById("RROW-" + ids[i]);
+                       var e = $("RROW-" + ids[i]);
 
                        if (e) {
                                if (i % 2 == 0) {
@@ -1890,7 +2091,7 @@ function hideReadHeadlines() {
                var ids = false;
                var vis_ids = new Array();
 
-               if (document.getElementById("headlinesList")) {
+               if ($("headlinesList")) {
                        ids = getVisibleHeadlineIds();
                } else {
                        ids = cdmGetVisibleArticles();
@@ -1899,7 +2100,7 @@ function hideReadHeadlines() {
                var read_headlines_visible = true;
 
                for (var i = 0; i < ids.length; i++) {
-                       var row = document.getElementById("RROW-" + ids[i]);
+                       var row = $("RROW-" + ids[i]);
 
                        if (row && row.className) {
                                if (read_headlines_visible) {
@@ -1946,7 +2147,7 @@ function invertHeadlineSelection() {
                for (var i = 0; i < rows.length; i++) {
                        var nc = rows[i].className;
                        var id = rows[i].id.replace("RROW-", "");
-                       var cb = document.getElementById("RCHK-" + id);
+                       var cb = $("RCHK-" + id);
 
                        if (!rows[i].className.match("Selected")) {
                                nc = nc + "Selected";
@@ -1980,51 +2181,15 @@ function zoomToArticle(id) {
        }
 }
 
-function showOriginalArticleInline(id) {
-       try {
-
-               var query = "backend.php?op=rpc&subop=getArticleLink&id=" + id;
-
-               notify_progress("Loading, please wait...", true);
-
-               new Ajax.Request(query, {
-                       onComplete: function(transport) { 
-
-                               if (transport.responseXML) {
-                       
-                                       var link = transport.responseXML.getElementsByTagName("link")[0];
-                                       var id = transport.responseXML.getElementsByTagName("id")[0];
-
-                                       notify("");
-
-                                       if (link && id) {
-                                               link = link.firstChild.nodeValue;
-
-                                               var ci = document.getElementById("content-insert");
-
-                                               var tmp = "<iframe id=\"inline_orig_article\" width=\""+ci.offsetWidth+"\" height=\""+ci.offsetHeight+"\" style=\"border-width : 0px;\" src=\""+link+"\"></iframe>";
-
-                                               render_article(tmp);
-
-                                       }
-                               }
-                       } });
-
-       } catch (e) {
-               exception_error("showOriginalArticleInline", e);
-       }
-}
-
-
 function scrollArticle(offset) {
        try {
                if (!isCdmMode()) {
-                       var ci = document.getElementById("content-insert");
+                       var ci = $("content-insert");
                        if (ci) {
                                ci.scrollTop += offset;
                        }
                } else {
-                       var hi = document.getElementById("headlinesInnerContainer");
+                       var hi = $("headlinesInnerContainer");
                        if (hi) {
                                hi.scrollTop += offset;
                        }
@@ -2047,7 +2212,7 @@ function show_labels_in_headlines(transport) {
 
                                if (e_id) {
 
-                                       var ctr = document.getElementById("HLLCTR-" + e_id);
+                                       var ctr = $("HLLCTR-" + e_id);
 
                                        if (ctr) {
                                                ctr.innerHTML = elems[l].firstChild.nodeValue;
@@ -2065,8 +2230,8 @@ function show_labels_in_headlines(transport) {
 
 function toggleHeadlineActions() {
        try {
-               var e = document.getElementById("headlineActionsBody");
-               var p = document.getElementById("headlineActionsDrop");
+               var e = $("headlineActionsBody");
+               var p = $("headlineActionsDrop");
 
                if (!Element.visible(e)) {
                        Element.show(e);
@@ -2076,9 +2241,95 @@ function toggleHeadlineActions() {
 
                e.scrollTop = 0;
                e.style.left = (p.offsetLeft + 1) + "px";
-//             e.style.top = (p.offsetTop + p.offsetHeight - 1) + "px";
+               e.style.top = (p.offsetTop + p.offsetHeight + 2) + "px";
 
        } catch (e) {
                exception_error("toggleHeadlineActions", e);
        }
 }
+
+function publishWithNote(id, def_note) {
+       try {
+               if (!def_note) def_note = '';
+
+               var note = prompt(__("Please enter a note for this article:"), def_note);
+
+               if (note != undefined) {
+                       togglePub(id, false, false, note);
+               }
+
+       } catch (e) {
+               exception_error("publishWithNote", e);
+       }
+}
+
+function emailArticle(id) {
+       try {
+               if (!id) {
+                       var ids = getSelectedArticleIds2();
+
+                       if (ids.length == 0) {
+                               alert(__("No articles are selected."));
+                               return;
+                       }
+
+                       id = ids.toString();
+               }
+
+               displayDlg('emailArticle', id, 
+                  function () {                                
+                               document.forms['article_email_form'].destination.focus();
+
+                          new Ajax.Autocompleter('destination', 'destination_choices',
+                                  "backend.php?op=rpc&subop=completeEmails",
+                                  { tokens: '', paramName: "search" });
+
+                       });
+
+       } catch (e) {
+               exception_error("emailArticle", e);
+       }
+}
+
+function emailArticleDo() {
+       try {
+               var f = document.forms['article_email_form'];
+
+               if (f.destination.value == "") {
+                       alert("Please fill in the destination email.");
+                       return;
+               }
+
+               if (f.subject.value == "") {
+                       alert("Please fill in the subject.");
+                       return;
+               }
+
+               var query = Form.serialize("article_email_form");
+
+//             console.log(query);
+
+               new Ajax.Request("backend.php", {
+                       parameters: query,
+                       onComplete: function(transport) { 
+                               try {
+
+                                       var error = transport.responseXML.getElementsByTagName('error')[0];
+
+                                       if (error) {
+                                               alert(__('Error sending email:') + ' ' + error.firstChild.nodeValue);
+                                       } else {
+                                               notify_info('Your message has been sent.');
+                                               closeInfoBox();
+                                       }
+
+                               } catch (e) {
+                                       exception_error("sendEmailDo", e);
+                               }
+
+                       } });
+
+       } catch (e) {
+               exception_error("emailArticleDo", e);
+       }
+}