]> git.wh0rd.org - tt-rss.git/commitdiff
js: misc cleanup
authorAndrew Dolgov <fox@fakecake.org>
Sat, 10 Dec 2011 18:40:12 +0000 (22:40 +0400)
committerAndrew Dolgov <fox@fakecake.org>
Sat, 10 Dec 2011 18:40:12 +0000 (22:40 +0400)
feedlist.js
functions.php
help/3.php
tt-rss.js
viewfeed.js

index e0ffae7f18d835ba57d29c4f068c752b5ecc156e..62c44b494c8186d3f688116a4fd126aa4c38925d 100644 (file)
@@ -378,10 +378,6 @@ function getFeedUnread(feed, is_cat) {
        return -1;
 }
 
-function resort_feedlist() {
-       console.warn("resort_feedlist: function not implemented");
-}
-
 function hideOrShowFeeds(hide) {
        var tree = dijit.byId("feedTree");
 
index a1dffc853e4d85eb754e900e52e42d1e7ed44cff..cad0b21c33536405d2fb6cf3519c42f5e0e855cd 100644 (file)
                                        $marked_pic = "<img id=\"FMPIC-$id\"
                                                src=\"".theme_image($link, 'images/mark_set.png')."\"
                                                class=\"markedPic\" alt=\"Unstar article\"
-                                               onclick='javascript:tMark($id)'>";
+                                               onclick='javascript:toggleMark($id)'>";
                                } else {
                                        $marked_pic = "<img id=\"FMPIC-$id\"
                                                src=\"".theme_image($link, 'images/mark_unset.png')."\"
                                                class=\"markedPic\" alt=\"Star article\"
-                                               onclick='javascript:tMark($id)'>";
+                                               onclick='javascript:toggleMark($id)'>";
                                }
 
                                if ($line["published"] == "t" || $line["published"] == "1") {
                                        $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
                                                'images/pub_set.png')."\"
                                                class=\"markedPic\"
-                                               alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
+                                               alt=\"Unpublish article\" onclick='javascript:togglePub($id)'>";
                                } else {
                                        $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
                                                'images/pub_unset.png')."\"
                                                class=\"markedPic\"
-                                               alt=\"Publish article\" onclick='javascript:tPub($id)'>";
+                                               alt=\"Publish article\" onclick='javascript:togglePub($id)'>";
                                }
 
 #                              $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
index fa2ee4582d4d8f1714f41d6182b4d75d5016b9c7..e1812b3f23569517a1637b3e0bc4d82c2efe51a5 100644 (file)
@@ -33,7 +33,6 @@
                <tr><td class='n'>c l</td><td><?php echo __("Create label") ?></td></tr>
                <tr><td class='n'>c f</td><td><?php echo __("Create filter") ?></td></tr>
                <tr><td class='n'>c s</td><td><?php echo __("Collapse sidebar") ?></td></tr>
-               <!-- <tr><td class='n'>c m</td><td><?php echo __("Toggle category reordering mode") ?></td></tr> -->
                <tr><td class='n'>?</td><td><?php echo __("Display this help dialog") ?></td></tr>
        </table>
 
 
        <table>
                <tr><td class='n'>f r</td><td><?php echo __("Refresh active feed") ?></td></tr>
-               <!-- <tr><td class='n'>R</td><td><?php echo __("Update all feeds") ?></td></tr> -->
                <tr><td class='n'>f a</td><td><?php echo __("(Un)hide read feeds") ?></td></tr>
                <tr><td class='n'>f s</td><td><?php echo __("Subscribe to feed") ?></td></tr>
                <tr><td class='n'>f e</td><td><?php echo __("Edit feed") ?></td></tr>
-               <!-- <tr><td class='n'>f w</td><td><?php echo __("Sort by name or unread count") ?></td></tr> -->
                <tr><td class='n'>f q</td><td><?php echo __("Mark feed as read") ?></td></tr>
                <tr><td class='n'>f x</td><td><?php echo __("Reverse headlines order") ?></td></tr>
                <tr><td class='n'>Q</td><td><?php echo __("Mark all feeds as read") ?></td></tr>
index 39e5cecef60099585ed390b7bfdfb699b5c5c118..36e0d8cc424ead03ad887a1356515eadc3738ae9 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -914,11 +914,6 @@ function hotkey_handler(e) {
                                }
                        }
 
-                       if (keycode == 87) { // w
-                               feeds_sort_by_unread = !feeds_sort_by_unread;
-                               return resort_feedlist();
-                       }
-
                        if (keycode == 88) { // x
                                reverseHeadlineOrder();
                                return;
index 52f081ba0cfe5939925d7499022949a6b0e52376..c7236c6010d1326b4ce72bad8d740f1bf64be3df 100644 (file)
@@ -404,14 +404,6 @@ function view(id) {
        }
 }
 
-function tMark(id) {
-       return toggleMark(id);
-}
-
-function tPub(id) {
-       return togglePub(id);
-}
-
 function toggleMark(id, client_only) {
        try {
                var query = "?op=rpc&id=" + id + "&subop=mark";