2 This program is Copyright (c) 2003-2005 Andrew Dolgov <cthulhoo@gmail.com>
3 Licensed under GPL v.2 or (at your preference) any later version.
7 var xmlhttp_rpc = false;
8 var xmlhttp_view = false;
13 var active_post_id = false;
14 var active_feed_id = false;
15 var active_offset = false;
17 var total_feed_entries = false;
19 var _viewfeed_autoselect_first = false;
20 var _viewfeed_autoselect_last = false;
25 var search_query = "";
28 /*@if (@_jscript_version >= 5)
29 // JScript gives us Conditional compilation, we can cope with old IE versions.
30 // and security blocked creation of the objects.
32 xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
35 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
36 xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
37 xmlhttp_view = new ActiveXObject("Microsoft.XMLHTTP");
46 if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
47 xmlhttp = new XMLHttpRequest();
48 xmlhttp_rpc = new XMLHttpRequest();
49 xmlhttp_view = new XMLHttpRequest();
52 function feedlist_callback() {
53 var container = document.getElementById('feeds');
54 if (xmlhttp.readyState == 4) {
55 container.innerHTML=xmlhttp.responseText;
58 scheduleFeedUpdate(false);
66 function feed_update_callback() {
67 if (xmlhttp_rpc.readyState == 4) {
68 var result = xmlhttp_rpc.responseText;
70 updateFeed(_update_ids.shift());
74 function viewfeed_callback() {
75 var container = document.getElementById('headlines');
76 if (xmlhttp.readyState == 4) {
77 container.innerHTML = xmlhttp.responseText;
79 var factive = document.getElementById("FACTIVE");
80 var funread = document.getElementById("FUNREAD");
81 var ftotal = document.getElementById("FTOTAL");
83 if (_viewfeed_autoselect_first == true) {
84 _viewfeed_autoselect_first = false;
85 view(getFirstVisibleHeadlineId(), active_feed_id);
88 if (_viewfeed_autoselect_last == true) {
89 _viewfeed_autoselect_last = false;
90 view(getLastVisibleHeadlineId(), active_feed_id);
93 if (ftotal && factive && funread) {
94 var feed_id = factive.innerHTML;
96 var feedr = document.getElementById("FEEDR-" + feed_id);
97 var feedt = document.getElementById("FEEDT-" + feed_id);
98 var feedu = document.getElementById("FEEDU-" + feed_id);
100 feedt.innerHTML = ftotal.innerHTML;
101 feedu.innerHTML = funread.innerHTML;
103 total_feed_entries = ftotal.innerHTML;
105 if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
106 feedr.className = feedr.className + "Unread";
107 } else if (feedu.innerHTML <= 0) {
108 feedr.className = feedr.className.replace("Unread", "");
111 cleanSelected("feedsList");
113 feedr.className = feedr.className + "Selected";
116 var searchbox = document.getElementById("searchbox");
117 searchbox.value = search_query;
119 markHeadline(active_post_id);
126 function view_callback() {
127 var container = document.getElementById('content');
128 if (xmlhttp_view.readyState == 4) {
129 container.innerHTML=xmlhttp_view.responseText;
130 markHeadline(active_post_id);
134 function refetch_callback() {
136 if (xmlhttp_rpc.readyState == 4) {
137 notify("All feeds updated");
138 var container = document.getElementById('feeds');
139 container.innerHTML = xmlhttp_rpc.responseText;
140 document.title = "Tiny Tiny RSS";
144 function updateFeed(feed_id) {
146 var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
148 if (xmlhttp_ready(xmlhttp_rpc)) {
149 xmlhttp_rpc.open("GET", query_str, true);
150 xmlhttp_rpc.onreadystatechange=feed_update_callback;
151 xmlhttp_rpc.send(null);
158 function scheduleSepFeedUpdate(force) {
159 notify("Updating feeds in background (M2)...");
161 _update_ids = getFeedIds();
162 _update_num_ids = _update_ids.length;
164 updateFeed(_update_ids.pop());
168 function scheduleFeedUpdate(force) {
170 notify("Updating feeds in background...");
172 document.title = "Tiny Tiny RSS - Updating...";
174 var query_str = "backend.php?op=rpc&subop=";
177 query_str = query_str + "forceUpdateAllFeeds";
179 query_str = query_str + "updateAllFeeds";
182 if (xmlhttp_ready(xmlhttp_rpc)) {
183 xmlhttp_rpc.open("GET", query_str, true);
184 xmlhttp_rpc.onreadystatechange=refetch_callback;
185 xmlhttp_rpc.send(null);
191 function updateFeedList(silent, fetch) {
193 if (silent != true) {
194 notify("Loading feed list...");
197 var query_str = "backend.php?op=feeds";
199 if (fetch) query_str = query_str + "&fetch=yes";
201 if (xmlhttp_ready(xmlhttp)) {
202 xmlhttp.open("GET", query_str, true);
203 xmlhttp.onreadystatechange=feedlist_callback;
210 function catchupPage(feed) {
212 if (!xmlhttp_ready(xmlhttp)) {
217 var content = document.getElementById("headlinesList");
219 var rows = new Array();
221 for (i = 0; i < content.rows.length; i++) {
222 var row_id = content.rows[i].id.replace("RROW-", "");
223 if (row_id.length > 0) {
224 if (content.rows[i].className.match("Unread")) {
226 content.rows[i].className = content.rows[i].className.replace("Unread", "");
231 if (rows.length > 0) {
233 var feedr = document.getElementById("FEEDR-" + feed);
234 var feedu = document.getElementById("FEEDU-" + feed);
236 feedu.innerHTML = feedu.innerHTML - rows.length;
238 if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
239 feedr.className = feedr.className + "Unread";
240 } else if (feedu.innerHTML <= 0) {
241 feedr.className = feedr.className.replace("Unread", "");
244 var query_str = "backend.php?op=rpc&subop=catchupPage&ids=" +
245 param_escape(rows.toString());
247 notify("Marking this page as read...");
249 var button = document.getElementById("btnCatchupPage");
252 button.className = "disabledButton";
256 xmlhttp.open("GET", query_str, true);
257 xmlhttp.onreadystatechange=notify_callback;
261 notify("No unread items on this page.");
266 function catchupAllFeeds() {
268 if (!xmlhttp_ready(xmlhttp)) {
272 var query_str = "backend.php?op=feeds&subop=catchupAll";
274 notify("Marking all feeds as read...");
276 xmlhttp.open("GET", query_str, true);
277 xmlhttp.onreadystatechange=feedlist_callback;
282 function viewfeed(feed, skip, subop) {
286 var searchbox = document.getElementById("searchbox");
289 search_query = searchbox.value;
294 /* if (active_feed_id == feed && subop != "ForceUpdate") {
295 notify("This feed is currently selected.");
299 if (skip < 0 || skip > total_feed_entries) {
303 if (!xmlhttp_ready(xmlhttp)) {
308 if (active_feed_id != feed || skip != active_offset) {
309 active_post_id = false;
312 active_feed_id = feed;
313 active_offset = skip;
315 var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
316 "&skip=" + param_escape(skip) + "&subop=" + param_escape(subop);
318 if (search_query != "") {
319 query = query + "&search=" + param_escape(search_query);
322 xmlhttp.open("GET", query, true);
323 xmlhttp.onreadystatechange=viewfeed_callback;
326 notify("Loading headlines...");
330 function markHeadline(id) {
331 var row = document.getElementById("RROW-" + id);
333 row.className = row.className + "Selected";
337 function getFeedIds() {
338 var content = document.getElementById("feedsList");
340 var rows = new Array();
342 for (i = 0; i < content.rows.length; i++) {
343 var id = content.rows[i].id.replace("FEEDR-", "");
352 function cleanSelected(element) {
353 var content = document.getElementById(element);
355 var rows = new Array();
357 for (i = 0; i < content.rows.length; i++) {
358 content.rows[i].className = content.rows[i].className.replace("Selected", "");
363 function view(id,feed_id) {
367 if (!xmlhttp_ready(xmlhttp_view)) {
372 var crow = document.getElementById("RROW-" + id);
374 if (crow.className.match("Unread")) {
375 var umark = document.getElementById("FEEDU-" + feed_id);
376 umark.innerHTML = umark.innerHTML - 1;
377 crow.className = crow.className.replace("Unread", "");
379 if (umark.innerHTML == "0") {
380 var feedr = document.getElementById("FEEDR-" + feed_id);
381 feedr.className = feedr.className.replace("Unread", "");
387 cleanSelected("headlinesList");
388 // crow.className = crow.className + "Selected";
390 var upd_img_pic = document.getElementById("FUPDPIC-" + id);
393 upd_img_pic.innerHTML = "";
396 // document.getElementById('content').innerHTML='Loading, please wait...';
398 var unread_rows = getVisibleUnreadHeadlines();
400 if (unread_rows.length == 0) {
401 var button = document.getElementById("btnCatchupPage");
403 button.className = "disabledButton";
410 xmlhttp_view.open("GET", "backend.php?op=view&id=" + param_escape(id), true);
411 xmlhttp_view.onreadystatechange=view_callback;
412 xmlhttp_view.send(null);
418 scheduleFeedUpdate(true);
419 setTimeout("timeout()", 1800*1000);
422 function resetSearch() {
423 document.getElementById("searchbox").value = "";
424 viewfeed(active_feed_id, 0, "");
427 function search(feed) {
428 viewfeed(feed, 0, "");
431 function localPiggieFunction(enable) {
433 var query_str = "backend.php?op=feeds&subop=piggie";
435 if (xmlhttp_ready(xmlhttp)) {
437 xmlhttp.open("GET", query_str, true);
438 xmlhttp.onreadystatechange=feedlist_callback;
444 function relativeid_callback() {
446 if (xmlhttp_rpc.readyState == 4) {
447 notify(xmlhttp_rpc.responseText);
452 function getVisibleUnreadHeadlines() {
453 var content = document.getElementById("headlinesList");
455 var rows = new Array();
457 for (i = 0; i < content.rows.length; i++) {
458 var row_id = content.rows[i].id.replace("RROW-", "");
459 if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
466 function getVisibleHeadlineIds() {
468 var content = document.getElementById("headlinesList");
470 var rows = new Array();
472 for (i = 0; i < content.rows.length; i++) {
473 var row_id = content.rows[i].id.replace("RROW-", "");
474 if (row_id.length > 0) {
481 function getFirstVisibleHeadlineId() {
482 var rows = getVisibleHeadlineIds();
486 function getLastVisibleHeadlineId() {
487 var rows = getVisibleHeadlineIds();
488 return rows[rows.length-1];
491 function moveToPost(mode) {
493 var rows = getVisibleHeadlineIds();
498 if (active_post_id == false) {
499 next_id = getFirstVisibleHeadlineId();
500 prev_id = getLastVisibleHeadlineId();
502 for (var i = 0; i < rows.length; i++) {
503 if (rows[i] == active_post_id) {
510 if (mode == "next") {
511 if (next_id != undefined) {
512 view(next_id, active_feed_id);
514 _viewfeed_autoselect_first = true;
515 viewfeed(active_feed_id, active_offset+15);
519 if (mode == "prev") {
520 if ( prev_id != undefined) {
521 view(prev_id, active_feed_id);
523 _viewfeed_autoselect_last = true;
524 viewfeed(active_feed_id, active_offset-15);
530 function localHotkeyHandler(keycode) {
533 return moveToPost('next');
537 return moveToPost('prev');
541 return scheduleFeedUpdate(true);
545 return viewfeed(active_feed_id, active_offset, "ForceUpdate");
548 // notify("KC: " + keycode);
557 if (xmlhttp && !xmlhttp_rpc) {
558 xmlhttp_rpc = xmlhttp;
559 xmlhttp_view = xmlhttp;
562 if (!xmlhttp || !xmlhttp_rpc || !xmlhttp_view) {
563 document.getElementById("headlines").innerHTML =
564 "<b>Fatal error:</b> This program needs XmlHttpRequest " +
565 "to function properly. Your browser doesn't seem to support it.";
569 updateFeedList(false, false);
570 document.onkeydown = hotkey_handler;
571 setTimeout("timeout()", 1800*1000);