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-23 08:13:28 +02:00
|
|
|
var xmlhttp_rpc = false;
|
2005-08-25 15:04:57 +02:00
|
|
|
var xmlhttp_view = false;
|
2005-08-21 12:13:10 +02:00
|
|
|
|
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 13:20:50 +02:00
|
|
|
var active_feed_id = false;
|
2005-08-25 15:04:57 +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");
|
2005-08-24 10:02:58 +02:00
|
|
|
xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
|
2005-08-25 15:04:57 +02:00
|
|
|
xmlhttp_view = new ActiveXObject("Microsoft.XMLHTTP");
|
2005-08-21 12:13:10 +02:00
|
|
|
} catch (E) {
|
|
|
|
xmlhttp = false;
|
2005-08-24 10:02:58 +02:00
|
|
|
xmlhttp_rpc = false;
|
2005-08-25 15:04:57 +02:00
|
|
|
xmlhttp_view = false;
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@end @*/
|
|
|
|
|
|
|
|
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
|
|
|
|
xmlhttp = new XMLHttpRequest();
|
2005-08-23 08:13:28 +02:00
|
|
|
xmlhttp_rpc = new XMLHttpRequest();
|
2005-08-25 15:04:57 +02:00
|
|
|
xmlhttp_view = new XMLHttpRequest();
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
|
|
|
|
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-08-21 12:13:10 +02:00
|
|
|
|
2005-08-23 08:13:28 +02:00
|
|
|
function refetch_callback() {
|
2005-08-25 17:15:27 +02:00
|
|
|
|
2005-08-23 08:13:28 +02:00
|
|
|
if (xmlhttp_rpc.readyState == 4) {
|
2005-09-06 06:33:50 +02:00
|
|
|
|
2005-09-07 09:33:33 +02:00
|
|
|
var actfeedid = frames["feeds-frame"].document.getElementById("ACTFEEDID");
|
|
|
|
|
|
|
|
if (actfeedid) {
|
|
|
|
active_feed_id = actfeedid.innerHTML;
|
|
|
|
}
|
|
|
|
|
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-07 05:53:29 +02:00
|
|
|
updateFeedList();
|
2005-09-06 06:33:50 +02:00
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
}
|
2005-08-23 08:13:28 +02:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
xmlhttp_rpc.open("GET", query_str, true);
|
|
|
|
xmlhttp_rpc.onreadystatechange=feed_update_callback;
|
|
|
|
xmlhttp_rpc.send(null);
|
|
|
|
} 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-08-25 17:15:27 +02:00
|
|
|
if (xmlhttp_ready(xmlhttp_rpc)) {
|
2005-08-23 08:13:28 +02:00
|
|
|
xmlhttp_rpc.open("GET", query_str, true);
|
|
|
|
xmlhttp_rpc.onreadystatechange=refetch_callback;
|
|
|
|
xmlhttp_rpc.send(null);
|
|
|
|
} 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-07 05:53:29 +02:00
|
|
|
if (active_feed_id) {
|
|
|
|
query_str = query_str + "&actid=" + active_feed_id;
|
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
|
|
|
|
|
|
|
active_feed_id = frames["feeds-frame"].document.getElementById("ACTFEEDID").innerHTML;
|
|
|
|
|
|
|
|
if (active_feed_id) {
|
2005-09-05 14:02:00 +02:00
|
|
|
viewfeed(active_feed_id, skip, subop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
function viewfeed(feed, skip, subop) {
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-09-07 05:53:29 +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) {
|
|
|
|
view_mode = viewbox.value;
|
|
|
|
} 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) {
|
|
|
|
limit = limitbox.value;
|
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-08-25 13:20:50 +02:00
|
|
|
active_feed_id = feed;
|
2005-09-07 05:53:29 +02:00
|
|
|
|
|
|
|
var f_doc = frames["feeds-frame"].document;
|
|
|
|
|
|
|
|
f_doc.getElementById("ACTFEEDID").innerHTML = feed;
|
2005-08-22 13:53:39 +02:00
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
setCookie("ttrss_vf_actfeed", feed);
|
|
|
|
|
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);
|
|
|
|
var feedt = f_doc.getElementById("FEEDT-" + feed);
|
|
|
|
var feedu = f_doc.getElementById("FEEDU-" + feed);
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
feedu.innerHTML = "0";
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
|
|
|
if (searchbox.value != "" && active_feed_id) {
|
|
|
|
searchbox.value = "";
|
2005-09-06 06:14:17 +02:00
|
|
|
viewfeed(active_feed_id, 0, "");
|
|
|
|
}
|
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() {
|
|
|
|
if (active_feed_id) {
|
|
|
|
viewfeed(active_feed_id, 0, "");
|
|
|
|
} 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) {
|
|
|
|
return viewfeed(active_feed_id, active_offset, "ForceUpdate");
|
|
|
|
}
|
|
|
|
|
|
|
|
// notify("KC: " + keycode);
|
|
|
|
|
2005-08-25 13:20:50 +02:00
|
|
|
}
|
|
|
|
|
2005-08-22 07:58:37 +02:00
|
|
|
function init() {
|
2005-08-25 17:15:27 +02:00
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
disableContainerChildren("headlinesToolbar", true);
|
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
// IE kludge
|
|
|
|
|
|
|
|
if (xmlhttp && !xmlhttp_rpc) {
|
|
|
|
xmlhttp_rpc = xmlhttp;
|
|
|
|
xmlhttp_view = xmlhttp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xmlhttp || !xmlhttp_rpc || !xmlhttp_view) {
|
2005-08-25 15:04:57 +02:00
|
|
|
document.getElementById("headlines").innerHTML =
|
|
|
|
"<b>Fatal error:</b> This program needs XmlHttpRequest " +
|
|
|
|
"to function properly. Your browser doesn't seem to support it.";
|
|
|
|
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-08-21 18:16:41 +02:00
|
|
|
setTimeout("timeout()", 1800*1000);
|
2005-09-05 11:09:10 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
scheduleFeedUpdate(true);
|
|
|
|
|
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-08-21 12:13:10 +02:00
|
|
|
}
|
2005-09-06 06:14:17 +02:00
|
|
|
|
|
|
|
|