ttrss/tt-rss.js

233 lines
5.6 KiB
JavaScript
Raw Normal View History

2005-08-21 12:13:10 +02:00
/*
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;
2005-08-22 07:58:37 +02:00
var total_unread = 0;
2005-08-21 12:13:10 +02:00
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript gives us Conditional compilation, we can cope with old IE versions.
// and security blocked creation of the objects.
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
function notify_callback() {
var container = document.getElementById('notify');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
}
}
2005-08-21 12:13:10 +02:00
function feedlist_callback() {
2005-08-21 15:46:43 +02:00
var container = document.getElementById('feeds');
2005-08-21 12:13:10 +02:00
if (xmlhttp.readyState == 4) {
2005-08-21 15:46:43 +02:00
container.innerHTML=xmlhttp.responseText;
2005-08-22 07:58:37 +02:00
var feedtu = document.getElementById("FEEDTU");
if (feedtu) {
total_unread = feedtu.innerHTML;
update_title();
}
notify("");
2005-08-21 12:13:10 +02:00
}
}
function viewfeed_callback() {
2005-08-21 15:46:43 +02:00
var container = document.getElementById('headlines');
2005-08-21 12:13:10 +02:00
if (xmlhttp.readyState == 4) {
2005-08-21 15:46:43 +02:00
container.innerHTML = xmlhttp.responseText;
2005-08-21 17:01:18 +02:00
var factive = document.getElementById("FACTIVE");
var funread = document.getElementById("FUNREAD");
var ftotal = document.getElementById("FTOTAL");
if (ftotal && factive && funread) {
var feed_id = factive.innerHTML;
var feedr = document.getElementById("FEEDR-" + feed_id);
var feedt = document.getElementById("FEEDT-" + feed_id);
var feedu = document.getElementById("FEEDU-" + feed_id);
feedt.innerHTML = ftotal.innerHTML;
feedu.innerHTML = funread.innerHTML;
if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
feedr.className = feedr.className + "Unread";
} else if (feedu.innerHTML <= 0) {
feedr.className = feedr.className.replace("Unread", "");
}
}
2005-08-22 11:27:32 +02:00
notify("");
}
2005-08-21 12:13:10 +02:00
}
function view_callback() {
2005-08-21 15:46:43 +02:00
var container = document.getElementById('content');
2005-08-21 12:13:10 +02:00
if (xmlhttp.readyState == 4) {
2005-08-21 15:46:43 +02:00
container.innerHTML=xmlhttp.responseText;
2005-08-21 12:13:10 +02:00
}
}
function updateFeedList(called_from_timer, fetch) {
2005-08-21 12:13:10 +02:00
2005-08-21 17:35:22 +02:00
if (called_from_timer != true) {
//document.getElementById("feeds").innerHTML = "Loading feeds, please wait...";
notify("Updating feeds...");
2005-08-21 17:35:22 +02:00
}
2005-08-21 17:23:44 +02:00
2005-08-22 06:56:40 +02:00
var query_str = "backend.php?op=feeds";
if (fetch) query_str = query_str + "&fetch=yes";
xmlhttp.open("GET", query_str, true);
2005-08-21 12:13:10 +02:00
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
function catchupPage(feed) {
var content = document.getElementById("headlinesList");
var rows = new Array();
for (i = 0; i < content.rows.length; i++) {
var row_id = content.rows[i].id.replace("RROW-", "");
if (row_id.length > 0) {
rows.push(row_id);
content.rows[i].className = content.rows[i].className.replace("Unread", "");
}
}
var feedr = document.getElementById("FEEDR-" + feed);
var feedu = document.getElementById("FEEDU-" + feed);
feedu.innerHTML = feedu.innerHTML - rows.length;
if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
feedr.className = feedr.className + "Unread";
} else if (feedu.innerHTML <= 0) {
feedr.className = feedr.className.replace("Unread", "");
}
var query_str = "backend.php?op=rpc&subop=catchupPage&ids=" +
param_escape(rows.toString());
notify("Marking this page as read...");
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=notify_callback;
xmlhttp.send(null);
}
function catchupAllFeeds() {
var query_str = "backend.php?op=feeds&subop=catchupAll";
notify("Marking all feeds as read...");
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
2005-08-21 12:13:10 +02:00
function viewfeed(feed, skip, subop) {
2005-08-21 12:13:10 +02:00
2005-08-22 11:27:32 +02:00
// document.getElementById('headlines').innerHTML='Loading headlines, please wait...';
// document.getElementById('content').innerHTML='&nbsp;';
2005-08-21 15:46:43 +02:00
xmlhttp.open("GET", "backend.php?op=viewfeed&feed=" + param_escape(feed) +
"&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) , true);
2005-08-21 12:13:10 +02:00
xmlhttp.onreadystatechange=viewfeed_callback;
xmlhttp.send(null);
2005-08-22 11:27:32 +02:00
notify("Loading headlines...");
2005-08-21 12:13:10 +02:00
}
2005-08-21 17:01:18 +02:00
function view(id,feed_id) {
2005-08-21 15:46:43 +02:00
var crow = document.getElementById("RROW-" + id);
2005-08-21 17:01:18 +02:00
if (crow.className.match("Unread")) {
var umark = document.getElementById("FEEDU-" + feed_id);
umark.innerHTML = umark.innerHTML - 1;
2005-08-21 15:46:43 +02:00
crow.className = crow.className.replace("Unread", "");
2005-08-21 17:01:18 +02:00
if (umark.innerHTML == "0") {
var feedr = document.getElementById("FEEDR-" + feed_id);
feedr.className = feedr.className.replace("Unread", "");
}
2005-08-22 11:04:38 +02:00
2005-08-22 07:58:37 +02:00
total_unread--;
2005-08-22 11:04:38 +02:00
update_title();
2005-08-22 07:58:37 +02:00
}
2005-08-21 12:13:10 +02:00
2005-08-22 11:04:38 +02:00
var upd_img_pic = document.getElementById("FUPDPIC-" + id);
if (upd_img_pic) {
upd_img_pic.innerHTML = "";
}
2005-08-21 15:46:43 +02:00
document.getElementById('content').innerHTML='Loading, please wait...';
2005-08-21 12:13:10 +02:00
2005-08-21 15:46:43 +02:00
xmlhttp.open("GET", "backend.php?op=view&id=" + param_escape(id), true);
2005-08-21 12:13:10 +02:00
xmlhttp.onreadystatechange=view_callback;
xmlhttp.send(null);
}
2005-08-21 17:35:22 +02:00
function timeout() {
updateFeedList(true, true);
2005-08-21 17:35:22 +02:00
2005-08-21 18:16:41 +02:00
setTimeout("timeout()", 1800*1000);
}
function search(feed, sender) {
notify("Search: " + feed + ", " + sender.value)
document.getElementById('headlines').innerHTML='Loading headlines, please wait...';
document.getElementById('content').innerHTML='&nbsp;';
xmlhttp.open("GET", "backend.php?op=viewfeed&feed=" + param_escape(feed) +
"&search=" + param_escape(sender.value) + "&ext=SEARCH", true);
xmlhttp.onreadystatechange=viewfeed_callback;
xmlhttp.send(null);
2005-08-21 17:35:22 +02:00
}
2005-08-22 07:58:37 +02:00
function update_title() {
//document.title = "Tiny Tiny RSS (" + total_unread + " unread)";
}
2005-08-21 12:13:10 +02:00
2005-08-22 07:58:37 +02:00
function init() {
updateFeedList(false, false);
2005-08-21 18:16:41 +02:00
setTimeout("timeout()", 1800*1000);
2005-08-21 12:13:10 +02:00
}