]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
tweak README
[tt-rss.git] / tt-rss.js
index 0fb61a117526bee3b22094a74f47dd70c8724d54..0af11bfca9d9a4e40e3f8b109c30f64a9ff32eac 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1,21 +1,16 @@
-/*
-       This program is Copyright (c) 2003-2005 Andrew Dolgov <cthulhoo@gmail.com>              
-       Licensed under GPL v.2 or (at your preference) any later version.
-*/
-
 var xmlhttp = false;
 
 var total_unread = 0;
 var first_run = true;
 
-var search_query = "";
-var search_mode = "";
-
 var display_tags = false;
-//var display_read_feeds = true;
 
 var global_unread = 0;
 
+var active_title_text = "";
+
+var current_subtitle = "";
+
 /*@cc_on @*/
 /*@if (@_jscript_version >= 5)
 // JScript gives us Conditional compilation, we can cope with old IE versions.
@@ -74,7 +69,7 @@ function refetch_callback() {
                        notify("refetch_callback: backend did not return valid XML");
                        return;
                }
-
+       
                var reply = xmlhttp.responseXML.firstChild;
 
                if (!reply) {
@@ -82,6 +77,12 @@ function refetch_callback() {
                        return;
                } 
 
+               var error_code = reply.getAttribute("error-code");
+       
+               if (error_code && error_code != 0) {
+                       return fatalError(error_code);
+               }
+
                var f_document = window.frames["feeds-frame"].document;
 
                for (var l = 0; l < reply.childNodes.length; l++) {
@@ -121,6 +122,33 @@ function refetch_callback() {
        }
 }
 
+function backend_sanity_check_callback() {
+
+       if (xmlhttp.readyState == 4) {
+               
+               if (!xmlhttp.responseXML) {
+                       fatalError(3);
+                       return;
+               }
+
+               var reply = xmlhttp.responseXML.firstChild;
+
+               if (!reply) {
+                       fatalError(3);
+                       return;
+               }
+
+               var error_code = reply.getAttribute("error-code");
+       
+               if (error_code && error_code != 0) {
+                       return fatalError(error_code);
+               }
+
+               init_second_stage();
+       } 
+}
+
+/* wtf this is obsolete
 function updateFeed(feed_id) {
 
        var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
@@ -134,6 +162,7 @@ function updateFeed(feed_id) {
        }   
 
 }
+*/
 
 function scheduleFeedUpdate(force) {
 
@@ -141,7 +170,7 @@ function scheduleFeedUpdate(force) {
 
 //     document.title = "Tiny Tiny RSS - Updating...";
 
-       updateTitle("Updating...");
+       updateTitle("Updating");
 
        var query_str = "backend.php?op=rpc&subop=";
 
@@ -204,7 +233,7 @@ function catchupAllFeeds() {
        feeds_frame.src = query_str;
 
        global_unread = 0;
-       updateTitle();
+       updateTitle("");
 
 }
 
@@ -219,105 +248,12 @@ function viewCurrentFeed(skip, subop) {
 }
 
 function viewfeed(feed, skip, subop) {
-
-//     notify("Loading headlines...");
-
-       enableHotkeys();
-
-       var searchbox = document.getElementById("searchbox");
-
-       if (searchbox) {
-               search_query = searchbox.value;
-       } else {
-               search_query = "";
-       } 
-
-       var searchmodebox = document.getElementById("searchmodebox");
-
-       if (searchmodebox) {
-               search_mode = searchmodebox.value;
-       } else {
-               search_mode = "";
-       }
-
-       setCookie("ttrss_vf_smode", search_mode);
-
-       var viewbox = document.getElementById("viewbox");
-
-       var view_mode;
-
-       if (viewbox) {
-               view_mode = viewbox[viewbox.selectedIndex].text;
-       } else {
-               view_mode = "All Posts";
-       }
-
-       setCookie("ttrss_vf_vmode", view_mode);
-
-       var limitbox = document.getElementById("limitbox");
-
-       var limit;
-
-       if (limitbox) {
-               limit = limitbox[limitbox.selectedIndex].text;
-               setCookie("ttrss_vf_limit", limit);
-       } else {
-               limit = "All";
-       }
-
-       setActiveFeedId(feed);
-
-       var f_doc = frames["feeds-frame"].document;
-
-//     f_doc.getElementById("ACTFEEDID").innerHTML = feed;
-
-       if (subop == "MarkAllRead") {
-
-               var feedr = f_doc.getElementById("FEEDR-" + feed);
-               var feedctr = f_doc.getElementById("FEEDCTR-" + feed);
-               
-               feedctr.className = "invisible";
-
-               if (feedr.className.match("Unread")) {
-                       feedr.className = feedr.className.replace("Unread", "");
-               }
-       }
-
-       var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
-               "&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) +
-               "&view=" + param_escape(view_mode) + "&limit=" + limit + 
-               "&smode=" + param_escape(search_mode);
-
-       if (search_query != "") {
-               query = query + "&search=" + param_escape(search_query);
-       }
-       
-       var headlines_frame = parent.frames["headlines-frame"];
-
-       headlines_frame.location.href = query + "&addheader=true";
-
-       cleanSelected("feedsList");
-       var feedr = document.getElementById("FEEDR-" + feed);
-       if (feedr) {
-               feedr.className = feedr.className + "Selected";
-       }
-       
-       disableContainerChildren("headlinesToolbar", false, doc);
-
-       var btnMarkAsRead = document.getElementById("btnMarkFeedAsRead");
-
-       if (btnMarkAsRead && !isNumeric(feed)) {
-               btnMarkAsRead.disabled = true;
-               btnMarkAsRead.className = "disabledButton";
-       }
-
-//     notify("");
-
+       var f = window.frames["feeds-frame"];
+       f.viewfeed(feed, skip, subop);
 }
 
-
 function timeout() {
-       scheduleFeedUpdate(true);
+       scheduleFeedUpdate(false);
        setTimeout("timeout()", 1800*1000);
 }
 
@@ -357,12 +293,18 @@ function localHotkeyHandler(keycode) {
                return moveToPost('prev');
        } */
 
-       if (keycode == 82) {
+       if (keycode == 82) { // r
                return scheduleFeedUpdate(true);
        }
 
-       if (keycode == 85) {
-               return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
+       if (keycode == 85) { // u
+               if (getActiveFeedId()) {
+                       return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
+               }
+       }
+
+       if (keycode == 65) { // a
+               return toggleDispRead();
        }
 
 //     notify("KC: " + keycode);
@@ -371,20 +313,37 @@ function localHotkeyHandler(keycode) {
 
 function updateTitle(s) {
        var tmp = "Tiny Tiny RSS";
-       
+
+       if (s && s.length > 0) {
+               current_subtitle = s;
+       }
+
        if (global_unread > 0) {
                tmp = tmp + " (" + global_unread + ")";
        }
 
        if (s) {
-               tmp = tmp + " - " + s;
+               tmp = tmp + " - " + current_subtitle;
        }
+
+       if (active_title_text.length > 0) {
+               tmp = tmp + " > " + active_title_text;
+       }
+
        document.title = tmp;
 }
 
 function genericSanityCheck() {
 
-       if (!xmlhttp) {
+       if (!xmlhttp) fatalError(1);
+
+       setCookie("ttrss_vf_test", "TEST");
+       
+       if (getCookie("ttrss_vf_test") != "TEST") {
+               fatalError(2);
+       }
+
+/*     if (!xmlhttp) {
                document.getElementById("headlines").innerHTML = 
                        "<b>Fatal error:</b> This program requires XmlHttpRequest " + 
                        "to function properly. Your browser doesn't seem to support it.";
@@ -399,7 +358,7 @@ function genericSanityCheck() {
                        "to function properly. Your browser doesn't seem to support them.";
 
                return false;
-       }
+       } */
 
        return true;
 }
@@ -411,14 +370,19 @@ function init() {
        if (!genericSanityCheck()) 
                return;
 
+       xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
+       xmlhttp.onreadystatechange=backend_sanity_check_callback;
+       xmlhttp.send(null);
+
+}
+
+function init_second_stage() {
+
        setCookie("ttrss_vf_actfeed", "");
 
        updateFeedList(false, false);
        document.onkeydown = hotkey_handler;
 
-       setTimeout("timeout()", 1800*1000);
-       scheduleFeedUpdate(true);
-
        var content = document.getElementById("content");
 
        if (getCookie("ttrss_vf_vmode")) {
@@ -435,28 +399,37 @@ function init() {
 //             viewfeed(getCookie("ttrss_vf_actfeed"), 0, '');
 //     }
 
+//     setTimeout("timeout()", 2*1000);
+//     scheduleFeedUpdate(true);
+
+       var splash = document.getElementById("splash");
+
+       if (splash) {
+               splash.style.display = "none";
+       }
+
 }
 
 function quickMenuGo() {
-       var chooser = document.getElementById("quickMenuChooser");
 
-       var opname = chooser[chooser.selectedIndex].text;
+       var chooser = document.getElementById("quickMenuChooser");
+       var opid = chooser[chooser.selectedIndex].id;
 
-       if (opname == "Preferences") {
+       if (opid == "qmcPrefs") {
                gotoPreferences();
        }
 
-       if (opname == "Extended search") {
+       if (opid == "qmcAdvSearch") {
                displayDlg("search");
                return;
        }
 
-       if (opname.match("Add new feed")) {
+       if (opid == "qmcAddFeed") {
                displayDlg("quickAddFeed");
                return;
        }
 
-       if (opname.match("Remove this feed")) {
+       if (opid == "qmcRemoveFeed") {
                var actid = getActiveFeedId();
 
                if (!actid) {
@@ -467,6 +440,22 @@ function quickMenuGo() {
                displayDlg("quickDelFeed", actid);
                return;
        }
+
+       if (opid == "qmcUpdateFeeds") {
+               scheduleFeedUpdate(true);
+               return;
+       }
+
+       if (opid == "qmcCatchupAll") {
+               catchupAllFeeds();
+               return;
+       }
+
+       if (opid == "qmcShowOnlyUnread") {
+               toggleDispRead();
+               return;
+       }
+
 }
 
 function qafAdd() {
@@ -541,13 +530,18 @@ function allFeedsMenuGo() {
                return;
        }
 
-       if (opname == "Toggle display read") {
+       if (opname == "Show only unread") {
                toggleDispRead();
                return;
        }
 
 }
 
+function updateFeedTitle(t) {
+       active_title_text = t;
+       updateTitle();
+}
+
 function toggleDispRead() {
        var hide_read_feeds = (getCookie("ttrss_vf_hreadf") == 1);
 
@@ -564,3 +558,5 @@ function toggleDispRead() {
        }
 
 }
+
+