2005-08-21 12:13:10 +02:00
|
|
|
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-09-09 09:45:54 +02:00
|
|
|
var display_tags = false;
|
2005-11-29 14:09:47 +01:00
|
|
|
var global_unread = -1;
|
2005-11-25 09:20:32 +01:00
|
|
|
var active_title_text = "";
|
|
|
|
var current_subtitle = "";
|
2006-02-12 08:50:35 +01:00
|
|
|
var daemon_enabled = false;
|
2006-06-08 14:03:09 +02:00
|
|
|
var daemon_refresh_only = false;
|
2005-12-20 09:00:11 +01:00
|
|
|
var _qfd_deleted_feed = 0;
|
2006-02-18 07:38:08 +01:00
|
|
|
var firsttime_update = true;
|
2006-03-02 18:07:46 +01:00
|
|
|
var last_refetch = 0;
|
2006-03-20 17:53:11 +01:00
|
|
|
var cookie_lifetime = 0;
|
2006-05-23 08:15:49 +02:00
|
|
|
var active_feed_id = 0;
|
2006-08-01 06:13:48 +02:00
|
|
|
var active_feed_is_cat = false;
|
2006-08-12 16:36:39 +02:00
|
|
|
var number_of_feeds = 0;
|
2005-12-20 09:00:11 +01:00
|
|
|
|
2006-05-20 15:01:11 +02:00
|
|
|
var xmlhttp = Ajax.getTransport();
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2006-05-24 05:55:13 +02:00
|
|
|
var init_params = new Object();
|
2006-05-23 07:34:50 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
function toggleTags() {
|
|
|
|
display_tags = !display_tags;
|
|
|
|
|
|
|
|
var p = document.getElementById("dispSwitchPrompt");
|
|
|
|
|
|
|
|
if (display_tags) {
|
|
|
|
p.innerHTML = "display feeds";
|
|
|
|
} else {
|
|
|
|
p.innerHTML = "display tags";
|
|
|
|
}
|
|
|
|
|
|
|
|
updateFeedList();
|
|
|
|
}
|
|
|
|
|
2005-10-28 08:21:16 +02:00
|
|
|
function dlg_frefresh_callback() {
|
2005-08-21 12:13:10 +02:00
|
|
|
if (xmlhttp.readyState == 4) {
|
2005-12-09 20:48:13 +01:00
|
|
|
notify(xmlhttp.responseText);
|
2005-10-28 07:38:06 +02:00
|
|
|
updateFeedList(false, false);
|
2005-12-20 09:00:11 +01:00
|
|
|
if (_qfd_deleted_feed) {
|
|
|
|
var hframe = document.getElementById("headlines-frame");
|
|
|
|
if (hframe) {
|
|
|
|
hframe.src = "backend.php?op=error&msg=No%20feed%20selected.";
|
|
|
|
}
|
|
|
|
}
|
2006-05-18 14:20:51 +02:00
|
|
|
closeInfoBox();
|
2005-08-25 17:15:27 +02:00
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
2005-10-28 07:38:06 +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-11-26 11:06:56 +01:00
|
|
|
try {
|
2005-09-07 09:33:33 +02:00
|
|
|
|
2006-03-02 18:07:46 +01:00
|
|
|
var date = new Date();
|
|
|
|
|
|
|
|
last_refetch = date.getTime() / 1000;
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
if (!xmlhttp.responseXML) {
|
2006-05-18 14:37:52 +02:00
|
|
|
notify("refetch_callback: backend did not return valid XML", true, true);
|
2005-11-26 11:06:56 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var reply = xmlhttp.responseXML.firstChild;
|
2005-11-19 15:46:23 +01:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
if (!reply) {
|
2006-05-18 14:37:52 +02:00
|
|
|
notify("refetch_callback: backend did not return expected XML object", true, true);
|
2006-02-11 05:34:15 +01:00
|
|
|
updateTitle("");
|
2005-11-26 11:06:56 +01:00
|
|
|
return;
|
|
|
|
}
|
2005-11-19 15:46:23 +01:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
var error_code = reply.getAttribute("error-code");
|
|
|
|
|
|
|
|
if (error_code && error_code != 0) {
|
2006-03-31 07:18:55 +02:00
|
|
|
return fatalError(error_code, reply.getAttribute("error-msg"));
|
2005-11-26 11:06:56 +01:00
|
|
|
}
|
2006-05-23 10:59:00 +02:00
|
|
|
|
|
|
|
var counters = reply.firstChild;
|
2005-11-26 11:06:56 +01:00
|
|
|
|
2006-05-23 10:59:00 +02:00
|
|
|
parse_counters(counters, true);
|
2006-02-12 08:50:35 +01:00
|
|
|
|
2006-05-23 11:08:16 +02:00
|
|
|
var runtime_info = counters.nextSibling;
|
|
|
|
|
|
|
|
parse_runtime_info(runtime_info);
|
|
|
|
|
2006-02-28 17:25:38 +01:00
|
|
|
debug("refetch_callback: done");
|
|
|
|
|
2006-06-08 14:03:09 +02:00
|
|
|
if (!daemon_enabled && !daemon_refresh_only) {
|
2006-02-12 08:50:35 +01:00
|
|
|
notify("All feeds updated.");
|
2006-02-12 10:55:16 +01:00
|
|
|
updateTitle("");
|
2006-02-26 17:38:03 +01:00
|
|
|
} else {
|
|
|
|
notify("");
|
2006-02-12 08:50:35 +01:00
|
|
|
}
|
2005-11-26 11:06:56 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("refetch_callback", e);
|
2006-02-11 05:34:15 +01:00
|
|
|
updateTitle("");
|
2005-11-26 11:06:56 +01:00
|
|
|
}
|
2005-09-08 14:10:07 +02:00
|
|
|
}
|
|
|
|
}
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2005-11-16 08:59:46 +01:00
|
|
|
function backend_sanity_check_callback() {
|
|
|
|
|
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
try {
|
|
|
|
|
|
|
|
if (!xmlhttp.responseXML) {
|
2006-03-31 07:33:03 +02:00
|
|
|
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
|
2005-11-26 11:06:56 +01:00
|
|
|
return;
|
|
|
|
}
|
2005-11-16 08:59:46 +01:00
|
|
|
|
2006-05-23 07:34:50 +02:00
|
|
|
var reply = xmlhttp.responseXML.firstChild.firstChild;
|
2005-11-26 11:06:56 +01:00
|
|
|
|
|
|
|
if (!reply) {
|
2006-03-31 07:18:55 +02:00
|
|
|
fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
|
2005-11-26 11:06:56 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var error_code = reply.getAttribute("error-code");
|
|
|
|
|
|
|
|
if (error_code && error_code != 0) {
|
2006-03-31 07:18:55 +02:00
|
|
|
return fatalError(error_code, reply.getAttribute("error-msg"));
|
2005-11-26 11:06:56 +01:00
|
|
|
}
|
|
|
|
|
2006-02-28 17:25:38 +01:00
|
|
|
debug("sanity check ok");
|
|
|
|
|
2006-05-23 07:34:50 +02:00
|
|
|
var params = reply.nextSibling;
|
|
|
|
|
|
|
|
if (params) {
|
|
|
|
debug('reading init-params...');
|
|
|
|
var param = params.firstChild;
|
|
|
|
|
|
|
|
while (param) {
|
|
|
|
var k = param.getAttribute("key");
|
|
|
|
var v = param.getAttribute("value");
|
|
|
|
debug(k + " => " + v);
|
|
|
|
init_params[k] = v;
|
|
|
|
param = param.nextSibling;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
init_second_stage();
|
2005-11-16 08:59:46 +01:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("backend_sanity_check_callback", e);
|
|
|
|
}
|
2005-11-16 08:59:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-23 08:30:20 +02:00
|
|
|
function scheduleFeedUpdate(force) {
|
2005-08-23 08:13:28 +02:00
|
|
|
|
2006-06-08 14:03:09 +02:00
|
|
|
if (!daemon_enabled && !daemon_refresh_only) {
|
2006-05-18 14:32:28 +02:00
|
|
|
notify("Updating feeds, please wait.", true);
|
2006-02-12 08:50:35 +01:00
|
|
|
updateTitle("Updating");
|
|
|
|
}
|
2005-08-23 16:16:32 +02:00
|
|
|
|
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-11-08 05:53:59 +01:00
|
|
|
var omode;
|
|
|
|
|
2006-02-26 07:55:34 +01:00
|
|
|
if (firsttime_update && !navigator.userAgent.match("Opera")) {
|
2006-02-18 07:38:08 +01:00
|
|
|
firsttime_update = false;
|
|
|
|
omode = "T";
|
2005-11-08 05:53:59 +01:00
|
|
|
} else {
|
2006-02-18 07:38:08 +01:00
|
|
|
if (display_tags) {
|
|
|
|
omode = "t";
|
|
|
|
} else {
|
|
|
|
omode = "flc";
|
|
|
|
}
|
2005-11-08 05:53:59 +01:00
|
|
|
}
|
2006-02-18 07:38:08 +01:00
|
|
|
|
2005-11-08 05:53:59 +01:00
|
|
|
query_str = query_str + "&omode=" + omode;
|
2006-02-12 09:04:27 +01:00
|
|
|
query_str = query_str + "&uctr=" + global_unread;
|
2005-11-08 05:53:59 +01:00
|
|
|
|
2006-02-28 17:25:38 +01:00
|
|
|
debug("in scheduleFeedUpdate");
|
2006-02-18 07:38:08 +01:00
|
|
|
|
2006-03-02 18:07:46 +01:00
|
|
|
var date = new Date();
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp) && last_refetch < date.getTime() / 1000 - 60) {
|
2006-05-23 09:15:48 +02:00
|
|
|
debug("<b>xmlhttp seems to be stuck, aborting</b>");
|
2006-03-02 18:07:46 +01:00
|
|
|
xmlhttp.abort();
|
|
|
|
}
|
|
|
|
|
2006-08-20 16:32:16 +02:00
|
|
|
debug("REFETCH query: " + query_str);
|
|
|
|
|
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 {
|
2006-03-02 18:07:46 +01:00
|
|
|
debug("xmlhttp busy");
|
2006-08-01 10:10:10 +02:00
|
|
|
//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-09 09:45:54 +02:00
|
|
|
if (display_tags) {
|
|
|
|
query_str = query_str + "&tags=1";
|
|
|
|
}
|
|
|
|
|
2006-08-01 15:18:05 +02:00
|
|
|
if (getActiveFeedId() && !activeFeedIsCat()) {
|
2005-09-08 07:29:45 +02:00
|
|
|
query_str = query_str + "&actid=" + getActiveFeedId();
|
2005-08-22 13:43:07 +02:00
|
|
|
}
|
|
|
|
|
2006-02-26 15:07:22 +01:00
|
|
|
if (navigator.userAgent.match("Opera")) {
|
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
|
|
|
query_str = query_str + "&ts=" + timestamp
|
|
|
|
}
|
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
if (fetch) query_str = query_str + "&fetch=yes";
|
2005-08-26 08:18:48 +02:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
// var feeds_frame = document.getElementById("feeds-frame");
|
|
|
|
// feeds_frame.src = query_str;
|
|
|
|
|
|
|
|
debug("updateFeedList");
|
|
|
|
|
|
|
|
if (xmlhttp_ready(xmlhttp)) {
|
|
|
|
xmlhttp.open("GET", query_str, true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
} else {
|
|
|
|
debug("xmlhttp busy");
|
|
|
|
//printLockingError();
|
|
|
|
}
|
2005-08-26 08:18:48 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
}
|
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-10-23 17:40:55 +02:00
|
|
|
global_unread = 0;
|
2005-11-25 09:20:32 +01:00
|
|
|
updateTitle("");
|
2005-10-23 17:40:55 +02:00
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2006-08-01 14:53:41 +02:00
|
|
|
function viewCurrentFeed(subop) {
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2006-08-01 14:57:34 +02:00
|
|
|
// if (getActiveFeedId()) {
|
|
|
|
if (getActiveFeedId() != undefined) {
|
2006-08-01 14:53:41 +02:00
|
|
|
viewfeed(getActiveFeedId(), subop);
|
2005-10-28 08:51:34 +02:00
|
|
|
} else {
|
|
|
|
disableContainerChildren("headlinesToolbar", false, document);
|
2006-08-01 14:57:34 +02:00
|
|
|
// viewfeed(-1, subop); // FIXME
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
2006-05-21 14:09:55 +02:00
|
|
|
return false; // block unneeded form submits
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
2006-08-01 14:53:41 +02:00
|
|
|
function viewfeed(feed, subop) {
|
2005-11-16 06:25:13 +01:00
|
|
|
var f = window.frames["feeds-frame"];
|
2006-08-01 14:53:41 +02:00
|
|
|
f.viewfeed(feed, subop);
|
2005-08-25 13:20:50 +02:00
|
|
|
}
|
|
|
|
|
2005-08-21 17:35:22 +02:00
|
|
|
function timeout() {
|
2005-11-19 09:18:34 +01:00
|
|
|
scheduleFeedUpdate(false);
|
2006-02-03 09:35:30 +01:00
|
|
|
|
2006-05-23 07:34:50 +02:00
|
|
|
var refresh_time = getInitParam("feeds_frame_refresh");
|
2006-02-03 09:35:30 +01:00
|
|
|
|
2006-05-23 07:34:50 +02:00
|
|
|
if (!refresh_time) refresh_time = 600;
|
2006-02-03 09:35:30 +01:00
|
|
|
|
|
|
|
setTimeout("timeout()", refresh_time*1000);
|
2005-08-21 18:16:41 +02:00
|
|
|
}
|
|
|
|
|
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 = "";
|
2006-08-01 14:53:41 +02:00
|
|
|
viewfeed(getActiveFeedId(), "");
|
2005-09-06 06:14:17 +02:00
|
|
|
}
|
2005-08-25 15:27:12 +02:00
|
|
|
}
|
2005-08-21 18:16:41 +02:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
function searchCancel() {
|
|
|
|
closeInfoBox(true);
|
|
|
|
}
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
function search() {
|
2006-05-18 14:20:51 +02:00
|
|
|
closeInfoBox();
|
2005-09-11 05:02:23 +02:00
|
|
|
viewCurrentFeed(0, "");
|
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-11-29 14:09:47 +01:00
|
|
|
// if argument is undefined, current subtitle is not updated
|
|
|
|
// use blank string to clear subtitle
|
2005-10-23 17:40:55 +02:00
|
|
|
function updateTitle(s) {
|
|
|
|
var tmp = "Tiny Tiny RSS";
|
2005-11-25 09:20:32 +01:00
|
|
|
|
2006-02-12 09:36:20 +01:00
|
|
|
if (s != undefined) {
|
2005-11-25 09:20:32 +01:00
|
|
|
current_subtitle = s;
|
|
|
|
}
|
|
|
|
|
2005-10-23 17:40:55 +02:00
|
|
|
if (global_unread > 0) {
|
|
|
|
tmp = tmp + " (" + global_unread + ")";
|
|
|
|
}
|
|
|
|
|
2006-02-12 09:36:20 +01:00
|
|
|
if (current_subtitle) {
|
2005-11-25 09:20:32 +01:00
|
|
|
tmp = tmp + " - " + current_subtitle;
|
2005-10-23 17:40:55 +02:00
|
|
|
}
|
2005-11-25 09:20:32 +01:00
|
|
|
|
|
|
|
if (active_title_text.length > 0) {
|
|
|
|
tmp = tmp + " > " + active_title_text;
|
|
|
|
}
|
|
|
|
|
2005-10-23 17:40:55 +02:00
|
|
|
document.title = tmp;
|
|
|
|
}
|
|
|
|
|
2005-09-08 07:36:28 +02:00
|
|
|
function genericSanityCheck() {
|
2005-09-06 06:14:17 +02:00
|
|
|
|
2005-11-16 08:59:46 +01:00
|
|
|
if (!xmlhttp) fatalError(1);
|
|
|
|
|
|
|
|
setCookie("ttrss_vf_test", "TEST");
|
|
|
|
|
|
|
|
if (getCookie("ttrss_vf_test") != "TEST") {
|
|
|
|
fatalError(2);
|
|
|
|
}
|
|
|
|
|
2005-09-08 07:36:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
try {
|
2005-10-14 05:43:44 +02:00
|
|
|
|
2006-02-24 11:15:30 +01:00
|
|
|
// this whole shebang is based on http://www.birnamdesigns.com/misc/busted2.html
|
|
|
|
|
|
|
|
if (arguments.callee.done) return;
|
|
|
|
arguments.callee.done = true;
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
disableContainerChildren("headlinesToolbar", true);
|
2005-09-05 11:09:10 +02:00
|
|
|
|
2006-05-21 06:28:51 +02:00
|
|
|
Form.disable("main_toolbar_form");
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
if (!genericSanityCheck())
|
|
|
|
return;
|
2005-09-06 06:14:17 +02:00
|
|
|
|
2006-02-28 17:25:38 +01:00
|
|
|
if (getURLParam('debug')) {
|
|
|
|
document.getElementById('debug_output').style.display = 'block';
|
|
|
|
debug('debug mode activated');
|
|
|
|
}
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
|
|
|
|
xmlhttp.onreadystatechange=backend_sanity_check_callback;
|
|
|
|
xmlhttp.send(null);
|
2005-09-06 06:30:11 +02:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("init", e);
|
2005-09-06 06:39:31 +02:00
|
|
|
}
|
2005-11-26 11:06:56 +01:00
|
|
|
}
|
2005-09-08 07:29:45 +02:00
|
|
|
|
2006-02-25 05:46:08 +01:00
|
|
|
function resize_feeds_frame() {
|
|
|
|
var f = document.getElementById("feeds-frame");
|
|
|
|
var tf = document.getElementById("mainFooter");
|
|
|
|
var th = document.getElementById("mainHeader");
|
2006-06-01 16:24:17 +02:00
|
|
|
|
|
|
|
var footer_height = 0;
|
|
|
|
var header_height = 0;
|
|
|
|
|
|
|
|
if (tf) {
|
|
|
|
footer_height = tf.scrollHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (th) {
|
|
|
|
header_height = th.scrollHeight;
|
|
|
|
}
|
2006-09-28 14:00:03 +02:00
|
|
|
|
|
|
|
if (f) {
|
|
|
|
f.style.height = document.body.scrollHeight - footer_height -
|
|
|
|
header_height - 50 + "px";
|
|
|
|
}
|
2006-02-25 05:46:08 +01:00
|
|
|
}
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
function init_second_stage() {
|
2005-11-16 08:59:46 +01:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
try {
|
2005-11-16 09:45:00 +01:00
|
|
|
|
2006-03-20 17:53:11 +01:00
|
|
|
cookie_lifetime = getCookie("ttrss_cltime");
|
|
|
|
|
|
|
|
delCookie("ttrss_vf_test");
|
2005-11-26 11:06:56 +01:00
|
|
|
|
|
|
|
updateFeedList(false, false);
|
|
|
|
document.onkeydown = hotkey_handler;
|
2005-12-20 12:14:24 +01:00
|
|
|
|
2006-05-22 10:56:52 +02:00
|
|
|
var tb = parent.document.forms["main_toolbar_form"];
|
|
|
|
|
2006-05-23 07:34:50 +02:00
|
|
|
dropboxSelect(tb.view_mode, getInitParam("toolbar_view_mode"));
|
|
|
|
dropboxSelect(tb.limit, getInitParam("toolbar_limit"));
|
2006-02-12 08:50:35 +01:00
|
|
|
|
2006-06-08 14:03:09 +02:00
|
|
|
daemon_enabled = getInitParam("daemon_enabled") == 1;
|
|
|
|
daemon_refresh_only = getInitParam("daemon_refresh_only") == 1;
|
2006-02-24 12:01:50 +01:00
|
|
|
|
2006-02-25 05:46:08 +01:00
|
|
|
// FIXME should be callled after window resize
|
|
|
|
|
2006-05-19 04:58:00 +02:00
|
|
|
var h = document.getElementById("headlines");
|
|
|
|
var c = document.getElementById("content");
|
|
|
|
|
2006-02-24 12:01:50 +01:00
|
|
|
if (navigator.userAgent.match("Opera")) {
|
2006-02-25 05:46:08 +01:00
|
|
|
resize_feeds_frame();
|
2006-02-24 12:01:50 +01:00
|
|
|
}
|
2006-02-28 17:25:38 +01:00
|
|
|
|
|
|
|
debug("second stage ok");
|
2005-11-26 11:06:56 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("init_second_stage", e);
|
2005-11-16 09:45:00 +01:00
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
2005-09-06 06:14:17 +02:00
|
|
|
|
2006-01-12 14:42:00 +01:00
|
|
|
function quickMenuChange() {
|
2005-11-16 06:16:43 +01:00
|
|
|
var chooser = document.getElementById("quickMenuChooser");
|
2006-05-21 06:28:51 +02:00
|
|
|
var opid = chooser[chooser.selectedIndex].value;
|
2005-10-28 07:38:06 +02:00
|
|
|
|
2006-01-12 14:42:00 +01:00
|
|
|
chooser.selectedIndex = 0;
|
|
|
|
quickMenuGo(opid);
|
|
|
|
}
|
|
|
|
|
|
|
|
function quickMenuGo(opid) {
|
2006-03-30 08:27:03 +02:00
|
|
|
try {
|
2006-01-12 14:42:00 +01:00
|
|
|
|
2006-03-30 08:27:03 +02:00
|
|
|
if (opid == "qmcPrefs") {
|
|
|
|
gotoPreferences();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opid == "qmcSearch") {
|
2006-08-01 06:13:48 +02:00
|
|
|
displayDlg("search", getActiveFeedId() + ":" + activeFeedIsCat());
|
2005-10-28 08:21:16 +02:00
|
|
|
return;
|
|
|
|
}
|
2006-03-30 08:27:03 +02:00
|
|
|
|
|
|
|
if (opid == "qmcAddFeed") {
|
|
|
|
displayDlg("quickAddFeed");
|
|
|
|
return;
|
2005-12-11 08:56:57 +01:00
|
|
|
}
|
2005-10-28 08:21:16 +02:00
|
|
|
|
2006-03-30 08:27:03 +02:00
|
|
|
if (opid == "qmcRemoveFeed") {
|
|
|
|
var actid = getActiveFeedId();
|
|
|
|
|
2006-08-01 15:18:05 +02:00
|
|
|
if (!actid || activeFeedIsCat()) {
|
2006-05-18 14:37:52 +02:00
|
|
|
alert("Please select some feed first.");
|
2006-03-30 08:27:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2006-05-24 05:15:04 +02:00
|
|
|
|
|
|
|
var fn = getFeedName(actid);
|
2006-03-30 08:27:03 +02:00
|
|
|
|
2006-05-24 05:15:04 +02:00
|
|
|
if (confirm("Unsubscribe from " + fn + "?")) {
|
2006-03-30 08:27:03 +02:00
|
|
|
qfdDelete(actid);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opid == "qmcUpdateFeeds") {
|
|
|
|
scheduleFeedUpdate(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opid == "qmcCatchupAll") {
|
|
|
|
catchupAllFeeds();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opid == "qmcShowOnlyUnread") {
|
|
|
|
toggleDispRead();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opid == "qmcAddFilter") {
|
|
|
|
displayDlg("quickAddFilter", getActiveFeedId());
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("quickMenuGo", e);
|
2005-12-09 20:48:13 +01:00
|
|
|
}
|
2005-10-28 07:38:06 +02:00
|
|
|
}
|
|
|
|
|
2005-10-28 08:21:16 +02:00
|
|
|
function qfdDelete(feed_id) {
|
|
|
|
|
|
|
|
notify("Removing feed...");
|
|
|
|
|
2006-01-05 16:12:40 +01:00
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-12-20 09:00:11 +01:00
|
|
|
_qfd_deleted_feed = feed_id;
|
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id);
|
2005-10-28 08:21:16 +02:00
|
|
|
xmlhttp.onreadystatechange=dlg_frefresh_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
}
|
2005-10-28 08:51:34 +02:00
|
|
|
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2005-11-25 09:20:32 +01:00
|
|
|
function updateFeedTitle(t) {
|
|
|
|
active_title_text = t;
|
|
|
|
updateTitle();
|
|
|
|
}
|
|
|
|
|
2005-11-15 10:13:49 +01:00
|
|
|
function toggleDispRead() {
|
2006-01-05 16:12:40 +01:00
|
|
|
try {
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2006-01-05 16:12:40 +01:00
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2006-05-23 08:32:22 +02:00
|
|
|
var hide_read_feeds = (getInitParam("hide_read_feeds") == "1");
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2006-01-05 16:12:40 +01:00
|
|
|
hide_read_feeds = !hide_read_feeds;
|
2006-05-23 08:32:22 +02:00
|
|
|
|
|
|
|
debug("toggle_disp_read => " + hide_read_feeds);
|
|
|
|
|
|
|
|
hideOrShowFeeds(getFeedsContext().document, hide_read_feeds);
|
|
|
|
|
2006-01-05 16:12:40 +01:00
|
|
|
var query = "backend.php?op=rpc&subop=setpref" +
|
|
|
|
"&key=HIDE_READ_FEEDS&value=" + param_escape(hide_read_feeds);
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2006-05-23 08:32:22 +02:00
|
|
|
storeInitParam("hide_read_feeds", hide_read_feeds, true);
|
|
|
|
|
|
|
|
new Ajax.Request(query);
|
2006-01-05 16:12:40 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleDispRead", e);
|
2005-11-15 10:13:49 +01:00
|
|
|
}
|
|
|
|
}
|
2005-11-16 08:59:46 +01:00
|
|
|
|
2006-05-23 11:08:16 +02:00
|
|
|
function parse_runtime_info(elem) {
|
|
|
|
var param = elem.firstChild;
|
|
|
|
|
2006-08-20 16:32:16 +02:00
|
|
|
debug("parse_runtime_info: " + param);
|
2006-05-24 05:22:48 +02:00
|
|
|
|
2006-05-23 11:08:16 +02:00
|
|
|
while (param) {
|
|
|
|
var k = param.getAttribute("key");
|
|
|
|
var v = param.getAttribute("value");
|
2006-05-23 07:34:50 +02:00
|
|
|
|
2006-05-24 05:22:48 +02:00
|
|
|
debug("RI: " + k + " => " + v);
|
|
|
|
|
2006-05-23 11:08:16 +02:00
|
|
|
var w = document.getElementById("noDaemonWarning");
|
|
|
|
|
|
|
|
if (w) {
|
|
|
|
if (k == "daemon_is_running" && v != 1) {
|
|
|
|
w.style.display = "block";
|
|
|
|
} else {
|
|
|
|
w.style.display = "none";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
param = param.nextSibling;
|
|
|
|
}
|
|
|
|
}
|
2006-07-18 04:46:27 +02:00
|
|
|
|
|
|
|
function catchupCurrentFeed() {
|
|
|
|
|
2006-08-01 06:59:21 +02:00
|
|
|
var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
|
2006-07-18 04:46:27 +02:00
|
|
|
|
2006-08-01 06:59:21 +02:00
|
|
|
var str = "Mark all articles in " + fn + " as read?";
|
|
|
|
|
|
|
|
/* if (active_feed_is_cat) {
|
|
|
|
str = "Mark all articles in this category as read?";
|
|
|
|
} */
|
|
|
|
|
2006-08-28 06:03:26 +02:00
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
|
2006-08-01 15:01:15 +02:00
|
|
|
return viewCurrentFeed('MarkAllRead')
|
2006-07-18 04:46:27 +02:00
|
|
|
}
|
|
|
|
}
|
2006-08-01 09:54:46 +02:00
|
|
|
|