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-23 08:13:28 +02:00
|
|
|
var first_run = true;
|
2005-08-22 07:58:37 +02:00
|
|
|
|
2005-08-25 15:27:12 +02:00
|
|
|
var search_query = "";
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
/*
|
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
|
|
|
|
2005-08-23 08:13:28 +02:00
|
|
|
if (first_run) {
|
2005-08-23 08:30:20 +02:00
|
|
|
scheduleFeedUpdate(false);
|
2005-09-06 06:33:50 +02:00
|
|
|
if (getCookie("ttrss_vf_actfeed")) {
|
|
|
|
viewfeed(getCookie("ttrss_vf_actfeed"), 0, "");
|
|
|
|
}
|
2005-08-23 08:13:28 +02:00
|
|
|
first_run = false;
|
|
|
|
} else {
|
|
|
|
notify("");
|
2005-08-25 17:15:27 +02:00
|
|
|
}
|
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
2005-09-07 05:53:29 +02:00
|
|
|
*/
|
|
|
|
|
2005-09-07 15:31:21 +02:00
|
|
|
function refetch_callback() {
|
2005-09-08 05:19:46 +02:00
|
|
|
if (xmlhttp.readyState == 4) {
|
2005-09-07 09:33:33 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
document.title = "Tiny Tiny RSS";
|
2005-09-07 09:33:33 +02:00
|
|
|
notify("All feeds updated.");
|
|
|
|
|
2005-09-08 14:10:07 +02:00
|
|
|
var reply = xmlhttp.responseXML.firstChild;
|
|
|
|
|
|
|
|
var f_document = window.frames["feeds-frame"].document;
|
|
|
|
|
|
|
|
for (var l = 0; l < reply.childNodes.length; l++) {
|
|
|
|
var id = reply.childNodes[l].getAttribute("id");
|
|
|
|
var ctr = reply.childNodes[l].getAttribute("counter");
|
2005-08-23 08:13:28 +02:00
|
|
|
|
2005-09-08 14:10:07 +02:00
|
|
|
var feedctr = f_document.getElementById("FEEDCTR-" + id);
|
|
|
|
var feedu = f_document.getElementById("FEEDU-" + id);
|
|
|
|
var feedr = f_document.getElementById("FEEDR-" + id);
|
|
|
|
|
|
|
|
feedu.innerHTML = ctr;
|
|
|
|
|
|
|
|
if (ctr > 0) {
|
|
|
|
feedctr.className = "odd";
|
2005-09-09 03:21:30 +02:00
|
|
|
if (id != -1 && !feedr.className.match("Unread")) {
|
2005-09-08 14:10:07 +02:00
|
|
|
feedr.className = feedr.className + "Unread";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
feedctr.className = "invisible";
|
|
|
|
feedr.className = feedr.className.replace("Unread", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
function updateFeed(feed_id) {
|
|
|
|
|
|
|
|
var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
|
|
|
|
|
2005-09-08 05:19:46 +02:00
|
|
|
if (xmlhttp_ready(xmlhttp)) {
|
|
|
|
xmlhttp.open("GET", query_str, true);
|
|
|
|
xmlhttp.onreadystatechange=feed_update_callback;
|
|
|
|
xmlhttp.send(null);
|
2005-08-28 07:48:32 +02:00
|
|
|
} else {
|
|
|
|
printLockingError();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-08-23 08:30:20 +02:00
|
|
|
function scheduleFeedUpdate(force) {
|
2005-08-23 08:13:28 +02:00
|
|
|
|
|
|
|
notify("Updating feeds in background...");
|
|
|
|
|
2005-08-23 16:16:32 +02:00
|
|
|
document.title = "Tiny Tiny RSS - Updating...";
|
|
|
|
|
2005-08-23 08:30:20 +02:00
|
|
|
var query_str = "backend.php?op=rpc&subop=";
|
|
|
|
|
|
|
|
if (force) {
|
2005-08-23 08:43:20 +02:00
|
|
|
query_str = query_str + "forceUpdateAllFeeds";
|
2005-08-23 08:30:20 +02:00
|
|
|
} else {
|
2005-08-23 08:43:20 +02:00
|
|
|
query_str = query_str + "updateAllFeeds";
|
2005-08-23 08:30:20 +02:00
|
|
|
}
|
2005-08-23 08:13:28 +02:00
|
|
|
|
2005-09-08 05:19:46 +02:00
|
|
|
if (xmlhttp_ready(xmlhttp)) {
|
|
|
|
xmlhttp.open("GET", query_str, true);
|
|
|
|
xmlhttp.onreadystatechange=refetch_callback;
|
|
|
|
xmlhttp.send(null);
|
2005-08-23 08:13:28 +02:00
|
|
|
} else {
|
|
|
|
printLockingError();
|
2005-08-25 17:15:27 +02:00
|
|
|
}
|
2005-08-23 08:13:28 +02:00
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-23 08:13:28 +02:00
|
|
|
function updateFeedList(silent, fetch) {
|
2005-08-25 17:15:27 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
// if (silent != true) {
|
|
|
|
// notify("Loading feed list...");
|
|
|
|
// }
|
2005-08-21 17:23:44 +02:00
|
|
|
|
2005-08-22 06:56:40 +02:00
|
|
|
var query_str = "backend.php?op=feeds";
|
|
|
|
|
2005-09-08 07:29:45 +02:00
|
|
|
if (getActiveFeedId()) {
|
|
|
|
query_str = query_str + "&actid=" + getActiveFeedId();
|
2005-08-22 13:43:07 +02:00
|
|
|
}
|
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
if (fetch) query_str = query_str + "&fetch=yes";
|
2005-08-26 08:18:48 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
var feeds_frame = document.getElementById("feeds-frame");
|
2005-08-26 08:18:48 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
feeds_frame.src = query_str;
|
|
|
|
}
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
function catchupAllFeeds() {
|
2005-08-22 13:53:39 +02:00
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
var query_str = "backend.php?op=feeds&subop=catchupAll";
|
|
|
|
|
|
|
|
notify("Marking all feeds as read...");
|
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
var feeds_frame = document.getElementById("feeds-frame");
|
|
|
|
|
|
|
|
feeds_frame.src = query_str;
|
2005-08-22 11:23:30 +02:00
|
|
|
|
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
function viewCurrentFeed(skip, subop) {
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2005-09-08 07:29:45 +02:00
|
|
|
if (getActiveFeedId()) {
|
|
|
|
viewfeed(getActiveFeedId(), skip, subop);
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
function viewfeed(feed, skip, subop) {
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-09-07 16:08:19 +02:00
|
|
|
// notify("Loading headlines...");
|
2005-09-05 17:49:39 +02:00
|
|
|
|
2005-08-25 16:12:10 +02:00
|
|
|
enableHotkeys();
|
|
|
|
|
2005-08-25 15:27:12 +02:00
|
|
|
var searchbox = document.getElementById("searchbox");
|
|
|
|
|
|
|
|
if (searchbox) {
|
|
|
|
search_query = searchbox.value;
|
|
|
|
} else {
|
|
|
|
search_query = "";
|
|
|
|
}
|
|
|
|
|
2005-09-05 08:04:02 +02:00
|
|
|
var viewbox = document.getElementById("viewbox");
|
|
|
|
|
|
|
|
var view_mode;
|
|
|
|
|
|
|
|
if (viewbox) {
|
2005-09-08 07:02:49 +02:00
|
|
|
view_mode = viewbox[viewbox.selectedIndex].text;
|
2005-09-05 08:04:02 +02:00
|
|
|
} else {
|
|
|
|
view_mode = "All Posts";
|
|
|
|
}
|
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
setCookie("ttrss_vf_vmode", view_mode);
|
|
|
|
|
2005-09-05 14:54:07 +02:00
|
|
|
var limitbox = document.getElementById("limitbox");
|
|
|
|
|
|
|
|
var limit;
|
|
|
|
|
|
|
|
if (limitbox) {
|
2005-09-08 07:02:49 +02:00
|
|
|
limit = limitbox[limitbox.selectedIndex].text;
|
2005-09-06 06:14:17 +02:00
|
|
|
setCookie("ttrss_vf_limit", limit);
|
2005-09-05 14:54:07 +02:00
|
|
|
} else {
|
|
|
|
limit = "All";
|
|
|
|
}
|
|
|
|
|
2005-09-08 07:29:45 +02:00
|
|
|
setActiveFeedId(feed);
|
2005-09-07 05:53:29 +02:00
|
|
|
|
|
|
|
var f_doc = frames["feeds-frame"].document;
|
|
|
|
|
2005-09-08 07:29:45 +02:00
|
|
|
// f_doc.getElementById("ACTFEEDID").innerHTML = feed;
|
2005-09-07 16:08:19 +02:00
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
if (subop == "MarkAllRead") {
|
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
var feedr = f_doc.getElementById("FEEDR-" + feed);
|
2005-09-07 16:03:30 +02:00
|
|
|
var feedctr = f_doc.getElementById("FEEDCTR-" + feed);
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2005-09-07 16:03:30 +02:00
|
|
|
feedctr.className = "invisible";
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
if (feedr.className.match("Unread")) {
|
|
|
|
feedr.className = feedr.className.replace("Unread", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-25 15:27:12 +02:00
|
|
|
var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
|
2005-09-05 08:04:02 +02:00
|
|
|
"&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) +
|
2005-09-05 14:54:07 +02:00
|
|
|
"&view=" + param_escape(view_mode) + "&limit=" + limit;
|
2005-08-25 15:27:12 +02:00
|
|
|
|
|
|
|
if (search_query != "") {
|
|
|
|
query = query + "&search=" + param_escape(search_query);
|
|
|
|
}
|
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
var headlines_frame = parent.frames["headlines-frame"];
|
|
|
|
|
|
|
|
headlines_frame.location.href = query + "&addheader=true";
|
2005-08-28 07:48:32 +02:00
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
cleanSelected("feedsList");
|
2005-09-06 06:33:50 +02:00
|
|
|
var feedr = document.getElementById("FEEDR-" + feed);
|
|
|
|
if (feedr) {
|
|
|
|
feedr.className = feedr.className + "Selected";
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
disableContainerChildren("headlinesToolbar", false, doc);
|
2005-09-06 06:14:17 +02:00
|
|
|
|
2005-09-05 17:49:39 +02:00
|
|
|
// notify("");
|
2005-08-25 13:20:50 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2005-08-21 17:35:22 +02:00
|
|
|
function timeout() {
|
2005-08-23 08:30:20 +02:00
|
|
|
scheduleFeedUpdate(true);
|
2005-08-21 18:16:41 +02:00
|
|
|
setTimeout("timeout()", 1800*1000);
|
|
|
|
}
|
|
|
|
|
2005-08-25 15:27:12 +02:00
|
|
|
function resetSearch() {
|
2005-09-06 07:55:20 +02:00
|
|
|
var searchbox = document.getElementById("searchbox")
|
|
|
|
|
2005-09-08 07:29:45 +02:00
|
|
|
if (searchbox.value != "" && getActiveFeedId()) {
|
2005-09-06 07:55:20 +02:00
|
|
|
searchbox.value = "";
|
2005-09-08 07:29:45 +02:00
|
|
|
viewfeed(getActiveFeedId(), 0, "");
|
2005-09-06 06:14:17 +02:00
|
|
|
}
|
2005-08-25 15:27:12 +02:00
|
|
|
}
|
2005-08-21 18:16:41 +02:00
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
function search() {
|
2005-09-07 15:31:21 +02:00
|
|
|
checkActiveFeedId();
|
2005-09-08 07:29:45 +02:00
|
|
|
if (getActiveFeedId()) {
|
|
|
|
viewfeed(getActiveFeedId(), 0, "");
|
2005-09-05 14:02:00 +02:00
|
|
|
} else {
|
|
|
|
notify("Please select some feed first.");
|
|
|
|
}
|
2005-08-22 07:58:37 +02:00
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-25 08:57:51 +02:00
|
|
|
function localPiggieFunction(enable) {
|
|
|
|
if (enable) {
|
|
|
|
var query_str = "backend.php?op=feeds&subop=piggie";
|
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
if (xmlhttp_ready(xmlhttp)) {
|
2005-08-25 08:57:51 +02:00
|
|
|
|
|
|
|
xmlhttp.open("GET", query_str, true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-25 13:20:50 +02:00
|
|
|
function localHotkeyHandler(keycode) {
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
/* if (keycode == 78) {
|
2005-08-25 15:04:57 +02:00
|
|
|
return moveToPost('next');
|
2005-08-25 13:20:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (keycode == 80) {
|
2005-08-25 15:04:57 +02:00
|
|
|
return moveToPost('prev');
|
2005-09-05 14:02:00 +02:00
|
|
|
} */
|
2005-08-25 15:04:57 +02:00
|
|
|
|
|
|
|
if (keycode == 82) {
|
|
|
|
return scheduleFeedUpdate(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keycode == 85) {
|
2005-09-08 07:29:45 +02:00
|
|
|
return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
|
2005-08-25 15:04:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// notify("KC: " + keycode);
|
|
|
|
|
2005-08-25 13:20:50 +02:00
|
|
|
}
|
|
|
|
|
2005-09-08 07:36:28 +02:00
|
|
|
function genericSanityCheck() {
|
2005-09-06 06:14:17 +02:00
|
|
|
|
2005-09-08 05:19:46 +02:00
|
|
|
if (!xmlhttp) {
|
2005-08-25 15:04:57 +02:00
|
|
|
document.getElementById("headlines").innerHTML =
|
2005-09-08 05:19:46 +02:00
|
|
|
"<b>Fatal error:</b> This program requires XmlHttpRequest " +
|
2005-08-25 15:04:57 +02:00
|
|
|
"to function properly. Your browser doesn't seem to support it.";
|
2005-09-08 07:36:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
setCookie("ttrss_vf_test", "TEST");
|
|
|
|
if (getCookie("ttrss_vf_test") != "TEST") {
|
|
|
|
|
|
|
|
document.getElementById("headlines").innerHTML =
|
|
|
|
"<b>Fatal error:</b> This program requires cookies " +
|
|
|
|
"to function properly. Your browser doesn't seem to support them.";
|
|
|
|
|
|
|
|
return false;
|
2005-08-25 15:04:57 +02:00
|
|
|
}
|
|
|
|
|
2005-09-08 07:36:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
|
|
|
|
disableContainerChildren("headlinesToolbar", true);
|
|
|
|
|
|
|
|
if (!genericSanityCheck())
|
|
|
|
return;
|
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
updateFeedList(false, false);
|
2005-08-25 08:57:51 +02:00
|
|
|
document.onkeydown = hotkey_handler;
|
2005-09-05 11:09:10 +02:00
|
|
|
|
2005-09-07 15:34:55 +02:00
|
|
|
setTimeout("timeout()", 1800*1000);
|
|
|
|
scheduleFeedUpdate(true);
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2005-09-05 11:09:10 +02:00
|
|
|
var content = document.getElementById("content");
|
2005-09-06 06:14:17 +02:00
|
|
|
|
|
|
|
if (getCookie("ttrss_vf_vmode")) {
|
|
|
|
var viewbox = document.getElementById("viewbox");
|
|
|
|
viewbox.value = getCookie("ttrss_vf_vmode");
|
|
|
|
}
|
2005-09-06 06:30:11 +02:00
|
|
|
|
2005-09-06 06:39:31 +02:00
|
|
|
if (getCookie("ttrss_vf_limit")) {
|
|
|
|
var limitbox = document.getElementById("limitbox");
|
|
|
|
limitbox.value = getCookie("ttrss_vf_limit");
|
|
|
|
}
|
2005-09-08 07:29:45 +02:00
|
|
|
|
|
|
|
// if (getCookie("ttrss_vf_actfeed")) {
|
|
|
|
// viewfeed(getCookie("ttrss_vf_actfeed"), 0, '');
|
|
|
|
// }
|
|
|
|
|
|
|
|
setCookie("ttrss_vf_actfeed", "");
|
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
2005-09-06 06:14:17 +02:00
|
|
|
|
|
|
|
|