]> git.wh0rd.org - tt-rss.git/commitdiff
drop history
authorAndrew Dolgov <fox@madoka.spb.ru>
Thu, 14 Jun 2007 06:02:50 +0000 (07:02 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Thu, 14 Jun 2007 06:02:50 +0000 (07:02 +0100)
feedlist.js
tt-rss.js
viewfeed.js

index 9bfd9a235765f472f721347a052cca9542f9609c..4635d9a645c595c0f1fe9e665d4bafb06a701a5b 100644 (file)
@@ -48,11 +48,6 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
 
                closeInfoBox();
 
-/*             if (!skip_history) {
-                       history_push('FEED:' + feed + ':' + subop + ':' + is_cat +
-                               ':' + subop_param);
-               } */
-
                var toolbar_query = Form.serialize("main_toolbar_form");
                var toolbar_form = document.forms["main_toolbar_form"];
 
index 54e41d912c17ea921c43bfef2d173277ad8f9099..96418db9e6f2a454e2e8f22b0c64675e659977b2 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -21,8 +21,6 @@ var xmlhttp_ctr = Ajax.getTransport();
 
 var init_params = new Object();
 
-//var op_history = new Array();
-
 function tagsAreDisplayed() {
        return display_tags;
 }
@@ -706,84 +704,4 @@ function feedEditSave() {
                exception_error("feedEditSave (main)", e);
        } 
 }
-/*
-function localHotkeyHandler(e) {
-
-       var keycode;
-
-       if (window.event) {
-               keycode = window.event.keyCode;
-       } else if (e) {
-               keycode = e.which;
-       }
-
-       var shift_key = false;
-
-       try {
-               shift_key = e.shiftKey;
-       } catch (e) { }
-
-       if (keycode == 66 && shift_key) { // shift-B
-
-               var op = history_pop();
-
-               if (op) {
-                       var op_s = op.split(":");
-
-                       var i;
-                       for (i = 0; i < op_s.length; i++) {
-                               if (op_s[i] == 'undefined') {
-                                       op_s[i] = undefined;
-                               }
-
-                               if (op_s[i] == 'false') {
-                                       op_s[i] = false;
-                               }
-
-                               if (op_s[i] == 'true') {
-                                       op_s[i] = true;
-                               }
-                               
-                       }
-
-                       debug("history split: " + op_s);
-
-                       if (op_s[0] == "ARTICLE") {
-                               debug("history: reverting to article " + op_s[1] + "/" + op_s[2]);
-                               view(op_s[1], op_s[2], true);
-                       }
-
-                       if (op_s[0] == "FEED") {
-                               viewfeed(op_s[1], op_s[2], op_s[3], op_s[4], true);
-                       }
-
-               } else {
-                       notify_error("No operation to undo");
-               }
-
-               return false;
-
-       }       
-
-       debug("LKP=" + keycode);
-} 
-
-function history_push(op) {
-       debug("history_push: " + op);
-       op_history.push(op);
-
-       while (op_history.length > 30) {
-               op_history.shift();
-       }
-}
-
-function history_pop() {
-       var op = op_history.pop();
-       debug("history_pop: " + op);
-       return op;
-}
 
-function history_clear() {
-       debug("history_clear");
-       op_history.clear();
-} */
index 9ea320cf93e539d7f78148b7e1509a378aacb098..973c436e54d066e5847ad2ab4c792cb7c0c7abb4 100644 (file)
@@ -191,10 +191,6 @@ function view(id, feed_id, skip_history) {
                var cached_article = cache_find(id);
 
                debug("cache check result: " + (cached_article != false));
-
-/*             if (!skip_history) {
-                       history_push("ARTICLE:" + id + ":" + feed_id);
-               } */
        
                enableHotkeys();