2005-08-25 15:31:52 +02:00
|
|
|
var hotkeys_enabled = true;
|
2008-05-19 09:37:44 +02:00
|
|
|
var notify_silent = false;
|
2008-05-19 10:03:53 +02:00
|
|
|
var last_progress_point = 0;
|
2008-05-21 06:38:28 +02:00
|
|
|
var async_counters_work = false;
|
2008-05-15 06:21:00 +02:00
|
|
|
|
2007-05-15 13:41:39 +02:00
|
|
|
/* add method to remove element from array */
|
|
|
|
|
|
|
|
Array.prototype.remove = function(s) {
|
|
|
|
for (var i=0; i < this.length; i++) {
|
|
|
|
if (s == this[i]) this.splice(i, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
/* create console.log if it doesn't exist */
|
|
|
|
|
|
|
|
if (!window.console) console = {};
|
|
|
|
console.log = console.log || function(msg) { debug(msg); };
|
|
|
|
console.warn = console.warn || function(msg) { debug(msg); };
|
|
|
|
console.error = console.error || function(msg) { debug(msg); };
|
2007-02-18 08:30:16 +01:00
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
function exception_error(location, e, ext_info) {
|
2009-01-23 15:20:36 +01:00
|
|
|
var msg = format_exception_error(location, e);
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
if (!ext_info) ext_info = false;
|
2009-02-04 21:19:16 +01:00
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
disableHotkeys();
|
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
try {
|
2009-01-23 15:20:36 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ebc = $("xebContent");
|
2009-01-23 18:19:17 +01:00
|
|
|
|
|
|
|
if (ebc) {
|
|
|
|
|
|
|
|
Element.show("dialog_overlay");
|
|
|
|
Element.show("errorBoxShadow");
|
|
|
|
|
|
|
|
if (ext_info) {
|
|
|
|
if (ext_info.responseText) {
|
|
|
|
ext_info = ext_info.responseText;
|
|
|
|
}
|
2009-01-23 15:20:36 +01:00
|
|
|
}
|
2009-01-23 18:19:17 +01:00
|
|
|
|
|
|
|
ebc.innerHTML =
|
|
|
|
"<div><b>Error message:</b></div>" +
|
2010-09-05 11:41:19 +02:00
|
|
|
"<pre>" + msg + "</pre>";
|
|
|
|
|
|
|
|
if (ext_info) {
|
|
|
|
ebc.innerHTML += "<div><b>Additional information:</b></div>" +
|
2010-09-13 12:43:38 +02:00
|
|
|
"<textarea readonly=\"1\">" + ext_info + "</textarea>";
|
2010-09-05 11:41:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ebc.innerHTML += "<div><b>Stack trace:</b></div>" +
|
|
|
|
"<textarea readonly=\"1\">" + e.stack + "</textarea>";
|
2010-09-13 12:43:38 +02:00
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
} else {
|
|
|
|
alert(msg);
|
2009-01-23 15:20:36 +01:00
|
|
|
}
|
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
} catch (e) {
|
2009-01-23 15:20:36 +01:00
|
|
|
alert(msg);
|
|
|
|
|
|
|
|
}
|
2009-01-23 18:19:17 +01:00
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function format_exception_error(location, e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
var msg;
|
|
|
|
|
|
|
|
if (e.fileName) {
|
|
|
|
var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
|
|
|
|
|
|
|
|
msg = "Exception: " + e.name + ", " + e.message +
|
|
|
|
"\nFunction: " + location + "()" +
|
|
|
|
"\nLocation: " + base_fname + ":" + e.lineNumber;
|
2008-05-20 12:39:48 +02:00
|
|
|
|
|
|
|
} else if (e.description) {
|
|
|
|
msg = "Exception: " + e.description + "\nFunction: " + location + "()";
|
2005-12-14 08:29:38 +01:00
|
|
|
} else {
|
|
|
|
msg = "Exception: " + e + "\nFunction: " + location + "()";
|
|
|
|
}
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.error("EXCEPTION: " + msg);
|
2006-05-23 08:55:26 +02:00
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
return msg;
|
2005-11-26 11:06:56 +01:00
|
|
|
}
|
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
|
2005-08-25 15:31:52 +02:00
|
|
|
function disableHotkeys() {
|
|
|
|
hotkeys_enabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function enableHotkeys() {
|
|
|
|
hotkeys_enabled = true;
|
|
|
|
}
|
|
|
|
|
2005-08-22 07:28:27 +02:00
|
|
|
function param_escape(arg) {
|
|
|
|
if (typeof encodeURIComponent != 'undefined')
|
|
|
|
return encodeURIComponent(arg);
|
|
|
|
else
|
|
|
|
return escape(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
function param_unescape(arg) {
|
|
|
|
if (typeof decodeURIComponent != 'undefined')
|
|
|
|
return decodeURIComponent(arg);
|
|
|
|
else
|
|
|
|
return unescape(arg);
|
|
|
|
}
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
function delay(gap) {
|
|
|
|
var then,now;
|
|
|
|
then=new Date().getTime();
|
|
|
|
now=then;
|
|
|
|
while((now-then)<gap) {
|
|
|
|
now=new Date().getTime();
|
|
|
|
}
|
|
|
|
}
|
2005-08-22 07:28:27 +02:00
|
|
|
|
2006-05-18 14:01:09 +02:00
|
|
|
var notify_hide_timerid = false;
|
2006-05-20 18:00:41 +02:00
|
|
|
|
2006-05-18 14:01:09 +02:00
|
|
|
function hide_notify() {
|
2009-02-10 10:06:15 +01:00
|
|
|
var n = $("notify");
|
2007-03-02 20:58:58 +01:00
|
|
|
if (n) {
|
2006-09-29 09:23:41 +02:00
|
|
|
n.style.display = "none";
|
2005-11-19 19:01:06 +01:00
|
|
|
}
|
2006-09-29 09:23:41 +02:00
|
|
|
}
|
2005-09-05 17:49:39 +02:00
|
|
|
|
2008-05-19 09:37:44 +02:00
|
|
|
function notify_silent_next() {
|
|
|
|
notify_silent = true;
|
|
|
|
}
|
|
|
|
|
2007-03-02 20:58:58 +01:00
|
|
|
function notify_real(msg, no_hide, n_type) {
|
2005-08-22 07:28:27 +02:00
|
|
|
|
2008-05-19 09:37:44 +02:00
|
|
|
if (notify_silent) {
|
|
|
|
notify_silent = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var n = $("notify");
|
|
|
|
var nb = $("notify_body");
|
2005-08-22 07:28:27 +02:00
|
|
|
|
2005-09-05 17:49:39 +02:00
|
|
|
if (!n || !nb) return;
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2006-05-19 07:44:23 +02:00
|
|
|
if (notify_hide_timerid) {
|
|
|
|
window.clearTimeout(notify_hide_timerid);
|
|
|
|
}
|
|
|
|
|
2005-11-19 19:01:06 +01:00
|
|
|
if (msg == "") {
|
2006-05-19 07:44:23 +02:00
|
|
|
if (n.style.display == "block") {
|
|
|
|
notify_hide_timerid = window.setTimeout("hide_notify()", 0);
|
|
|
|
}
|
|
|
|
return;
|
2005-08-22 07:28:27 +02:00
|
|
|
} else {
|
2006-05-18 09:56:52 +02:00
|
|
|
n.style.display = "block";
|
2005-11-19 19:01:06 +01:00
|
|
|
}
|
2005-08-22 07:28:27 +02:00
|
|
|
|
2007-03-02 20:58:58 +01:00
|
|
|
/* types:
|
|
|
|
|
|
|
|
1 - generic
|
|
|
|
2 - progress
|
|
|
|
3 - error
|
|
|
|
4 - info
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-06 07:54:47 +01:00
|
|
|
if (typeof __ != 'undefined') {
|
|
|
|
msg = __(msg);
|
|
|
|
}
|
|
|
|
|
2007-03-02 20:58:58 +01:00
|
|
|
if (n_type == 1) {
|
|
|
|
n.className = "notify";
|
|
|
|
} else if (n_type == 2) {
|
|
|
|
n.className = "notifyProgress";
|
2010-01-14 21:09:23 +01:00
|
|
|
msg = "<img src='"+getInitParam("sign_progress")+"'> " + msg;
|
2007-03-02 20:58:58 +01:00
|
|
|
} else if (n_type == 3) {
|
2006-10-01 11:08:55 +02:00
|
|
|
n.className = "notifyError";
|
2010-01-14 21:09:23 +01:00
|
|
|
msg = "<img src='"+getInitParam("sign_excl")+"'> " + msg;
|
2007-03-02 20:58:58 +01:00
|
|
|
} else if (n_type == 4) {
|
|
|
|
n.className = "notifyInfo";
|
2010-01-14 21:09:23 +01:00
|
|
|
msg = "<img src='"+getInitParam("sign_info")+"'> " + msg;
|
2006-05-18 14:37:52 +02:00
|
|
|
}
|
|
|
|
|
2006-09-29 08:51:40 +02:00
|
|
|
// msg = "<img src='images/live_com_loading.gif'> " + msg;
|
|
|
|
|
2006-05-18 09:56:52 +02:00
|
|
|
nb.innerHTML = msg;
|
|
|
|
|
2006-05-18 14:32:28 +02:00
|
|
|
if (!no_hide) {
|
2006-05-18 15:51:15 +02:00
|
|
|
notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
|
2006-05-18 14:32:28 +02:00
|
|
|
}
|
2006-05-18 14:01:09 +02:00
|
|
|
}
|
|
|
|
|
2007-03-02 20:58:58 +01:00
|
|
|
function notify(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 1);
|
2006-05-18 14:01:09 +02:00
|
|
|
}
|
|
|
|
|
2007-03-02 20:58:58 +01:00
|
|
|
function notify_progress(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_error(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 3);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_info(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 4);
|
2005-08-22 07:28:27 +02:00
|
|
|
}
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
function printLockingError() {
|
2007-03-02 20:58:58 +01:00
|
|
|
notify_info("Please wait until operation finishes.");
|
|
|
|
}
|
2005-08-24 10:02:58 +02:00
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
function cleanSelected(element) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var content = $(element);
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
|
|
|
content.rows[i].className = content.rows[i].className.replace("Selected", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVisibleUnreadHeadlines() {
|
2009-02-10 10:06:15 +01:00
|
|
|
var content = $("headlinesList");
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
var rows = new Array();
|
|
|
|
|
2008-05-19 12:24:46 +02:00
|
|
|
if (!content) return rows;
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
|
|
|
var row_id = content.rows[i].id.replace("RROW-", "");
|
|
|
|
if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
|
|
|
|
rows.push(row_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVisibleHeadlineIds() {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var content = $("headlinesList");
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
var rows = new Array();
|
|
|
|
|
2008-05-19 12:24:46 +02:00
|
|
|
if (!content) return rows;
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getFirstVisibleHeadlineId() {
|
2008-05-16 04:06:57 +02:00
|
|
|
if (isCdmMode()) {
|
|
|
|
var rows = cdmGetVisibleArticles();
|
|
|
|
return rows[0];
|
|
|
|
} else {
|
|
|
|
var rows = getVisibleHeadlineIds();
|
|
|
|
return rows[0];
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function getLastVisibleHeadlineId() {
|
2008-05-16 04:06:57 +02:00
|
|
|
if (isCdmMode()) {
|
|
|
|
var rows = cdmGetVisibleArticles();
|
|
|
|
return rows[rows.length-1];
|
|
|
|
} else {
|
|
|
|
var rows = getVisibleHeadlineIds();
|
|
|
|
return rows[rows.length-1];
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function markHeadline(id) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + id);
|
2005-09-05 14:02:00 +02:00
|
|
|
if (row) {
|
2005-11-25 16:14:45 +01:00
|
|
|
var is_active = false;
|
|
|
|
|
|
|
|
if (row.className.match("Active")) {
|
|
|
|
is_active = true;
|
|
|
|
}
|
|
|
|
row.className = row.className.replace("Selected", "");
|
|
|
|
row.className = row.className.replace("Active", "");
|
|
|
|
row.className = row.className.replace("Insensitive", "");
|
|
|
|
|
|
|
|
if (is_active) {
|
|
|
|
row.className = row.className = "Active";
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var check = $("RCHK-" + id);
|
2006-03-10 12:08:19 +01:00
|
|
|
|
|
|
|
if (check) {
|
|
|
|
check.checked = true;
|
|
|
|
}
|
|
|
|
|
2005-11-25 16:14:45 +01:00
|
|
|
row.className = row.className + "Selected";
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getFeedIds() {
|
2009-02-10 10:06:15 +01:00
|
|
|
var content = $("feedsList");
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
var rows = new Array();
|
|
|
|
|
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
|
|
|
var id = content.rows[i].id.replace("FEEDR-", "");
|
|
|
|
if (id.length > 0) {
|
|
|
|
rows.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rows;
|
|
|
|
}
|
2005-08-25 08:57:51 +02:00
|
|
|
|
2006-03-20 17:53:11 +01:00
|
|
|
function setCookie(name, value, lifetime, path, domain, secure) {
|
|
|
|
|
|
|
|
var d = false;
|
|
|
|
|
|
|
|
if (lifetime) {
|
|
|
|
d = new Date();
|
2007-03-21 16:36:24 +01:00
|
|
|
d.setTime(d.getTime() + (lifetime * 1000));
|
2006-03-20 17:53:11 +01:00
|
|
|
}
|
2007-03-22 07:46:49 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("setCookie: " + name + " => " + value + ": " + d);
|
2006-03-20 17:53:11 +01:00
|
|
|
|
|
|
|
int_setCookie(name, value, d, path, domain, secure);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function int_setCookie(name, value, expires, path, domain, secure) {
|
2005-09-06 06:14:17 +02:00
|
|
|
document.cookie= name + "=" + escape(value) +
|
|
|
|
((expires) ? "; expires=" + expires.toGMTString() : "") +
|
|
|
|
((path) ? "; path=" + path : "") +
|
|
|
|
((domain) ? "; domain=" + domain : "") +
|
|
|
|
((secure) ? "; secure" : "");
|
|
|
|
}
|
|
|
|
|
2006-03-20 17:53:11 +01:00
|
|
|
function delCookie(name, path, domain) {
|
|
|
|
if (getCookie(name)) {
|
|
|
|
document.cookie = name + "=" +
|
|
|
|
((path) ? ";path=" + path : "") +
|
|
|
|
((domain) ? ";domain=" + domain : "" ) +
|
|
|
|
";expires=Thu, 01-Jan-1970 00:00:01 GMT";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
function getCookie(name) {
|
|
|
|
|
|
|
|
var dc = document.cookie;
|
|
|
|
var prefix = name + "=";
|
|
|
|
var begin = dc.indexOf("; " + prefix);
|
|
|
|
if (begin == -1) {
|
|
|
|
begin = dc.indexOf(prefix);
|
|
|
|
if (begin != 0) return null;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
begin += 2;
|
|
|
|
}
|
|
|
|
var end = document.cookie.indexOf(";", begin);
|
|
|
|
if (end == -1) {
|
|
|
|
end = dc.length;
|
|
|
|
}
|
|
|
|
return unescape(dc.substring(begin + prefix.length, end));
|
|
|
|
}
|
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
function gotoPreferences() {
|
|
|
|
document.location.href = "prefs.php";
|
|
|
|
}
|
|
|
|
|
|
|
|
function gotoMain() {
|
|
|
|
document.location.href = "tt-rss.php";
|
|
|
|
}
|
|
|
|
|
2005-09-07 15:31:21 +02:00
|
|
|
function gotoExportOpml() {
|
|
|
|
document.location.href = "opml.php?op=Export";
|
|
|
|
}
|
2005-09-08 07:29:45 +02:00
|
|
|
|
2006-05-23 08:03:08 +02:00
|
|
|
function parse_counters(reply, scheduled_call) {
|
2005-12-13 16:59:43 +01:00
|
|
|
try {
|
2006-05-23 08:03:08 +02:00
|
|
|
|
2006-08-12 16:36:39 +02:00
|
|
|
var feeds_found = 0;
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
var elems = reply.getElementsByTagName("counter");
|
2006-05-23 10:59:00 +02:00
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
for (var l = 0; l < elems.length; l++) {
|
2005-12-22 13:51:12 +01:00
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
var id = elems[l].getAttribute("id");
|
|
|
|
var t = elems[l].getAttribute("type");
|
|
|
|
var ctr = elems[l].getAttribute("counter");
|
|
|
|
var error = elems[l].getAttribute("error");
|
|
|
|
var has_img = elems[l].getAttribute("hi");
|
|
|
|
var updated = elems[l].getAttribute("updated");
|
2007-08-25 09:38:18 +02:00
|
|
|
var title = elems[l].getAttribute("title");
|
2008-05-20 08:37:33 +02:00
|
|
|
var xmsg = elems[l].getAttribute("xmsg");
|
|
|
|
|
2005-12-13 16:59:43 +01:00
|
|
|
if (id == "global-unread") {
|
2009-02-12 11:59:00 +01:00
|
|
|
|
2009-02-16 11:16:05 +01:00
|
|
|
if (ctr > global_unread) {
|
|
|
|
offlineDownloadStart(1);
|
2009-02-12 11:59:00 +01:00
|
|
|
}
|
|
|
|
|
2006-09-29 07:09:18 +02:00
|
|
|
global_unread = ctr;
|
|
|
|
updateTitle();
|
2005-12-13 16:59:43 +01:00
|
|
|
continue;
|
|
|
|
}
|
2006-08-13 11:45:30 +02:00
|
|
|
|
|
|
|
if (id == "subscribed-feeds") {
|
|
|
|
feeds_found = ctr;
|
|
|
|
continue;
|
|
|
|
}
|
2005-12-13 16:59:43 +01:00
|
|
|
|
|
|
|
if (t == "category") {
|
2009-02-10 10:06:15 +01:00
|
|
|
var catctr = $("FCATCTR-" + id);
|
2005-12-13 16:59:43 +01:00
|
|
|
if (catctr) {
|
2006-12-06 10:11:59 +01:00
|
|
|
catctr.innerHTML = "(" + ctr + ")";
|
|
|
|
if (ctr > 0) {
|
|
|
|
catctr.className = "catCtrHasUnread";
|
|
|
|
} else {
|
|
|
|
catctr.className = "catCtrNoUnread";
|
|
|
|
}
|
2005-12-13 16:59:43 +01:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var feedctr = $("FEEDCTR-" + id);
|
|
|
|
var feedu = $("FEEDU-" + id);
|
|
|
|
var feedr = $("FEEDR-" + id);
|
|
|
|
var feed_img = $("FIMG-" + id);
|
|
|
|
var feedlink = $("FEEDL-" + id);
|
|
|
|
var feedupd = $("FLUPD-" + id);
|
2006-03-28 08:12:45 +02:00
|
|
|
|
|
|
|
if (updated && feedlink) {
|
|
|
|
if (error) {
|
|
|
|
feedlink.title = "Error: " + error + " (" + updated + ")";
|
|
|
|
} else {
|
|
|
|
feedlink.title = "Updated: " + updated;
|
|
|
|
}
|
|
|
|
}
|
2005-12-16 18:35:04 +01:00
|
|
|
|
2008-05-20 08:37:33 +02:00
|
|
|
if (feedupd) {
|
|
|
|
if (!updated) updated = "";
|
|
|
|
|
2006-06-06 08:51:00 +02:00
|
|
|
if (error) {
|
2008-05-20 08:37:33 +02:00
|
|
|
if (xmsg) {
|
|
|
|
feedupd.innerHTML = updated + " " + xmsg + " (Error)";
|
|
|
|
} else {
|
|
|
|
feedupd.innerHTML = updated + " (Error)";
|
|
|
|
}
|
2006-06-06 08:51:00 +02:00
|
|
|
} else {
|
2008-05-20 08:37:33 +02:00
|
|
|
if (xmsg) {
|
|
|
|
feedupd.innerHTML = updated + " " + xmsg;
|
|
|
|
} else {
|
|
|
|
feedupd.innerHTML = updated;
|
|
|
|
}
|
2006-06-06 08:51:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-20 12:39:48 +02:00
|
|
|
if (has_img && feed_img) {
|
2007-08-18 09:19:25 +02:00
|
|
|
if (!feed_img.src.match(id + ".ico")) {
|
|
|
|
feed_img.src = getInitParam("icons_location") + "/" + id + ".ico";
|
|
|
|
}
|
2007-08-17 18:15:14 +02:00
|
|
|
}
|
|
|
|
|
2007-08-25 09:38:18 +02:00
|
|
|
if (feedlink && title) {
|
|
|
|
feedlink.innerHTML = title;
|
|
|
|
}
|
|
|
|
|
2005-12-13 16:59:43 +01:00
|
|
|
if (feedctr && feedu && feedr) {
|
2006-03-04 18:29:37 +01:00
|
|
|
|
2009-10-14 07:38:04 +02:00
|
|
|
if (parseInt(ctr) > 0 &&
|
|
|
|
parseInt(feedu.innerHTML) < parseInt(ctr) &&
|
|
|
|
id == getActiveFeedId() && scheduled_call) {
|
|
|
|
|
2009-10-13 17:05:36 +02:00
|
|
|
displayNewContentPrompt(id);
|
2006-03-04 18:29:37 +01:00
|
|
|
}
|
2007-08-10 19:15:24 +02:00
|
|
|
|
|
|
|
var row_needs_hl = (ctr > 0 && ctr > parseInt(feedu.innerHTML));
|
|
|
|
|
2005-12-13 16:59:43 +01:00
|
|
|
feedu.innerHTML = ctr;
|
2005-12-16 18:35:04 +01:00
|
|
|
|
2005-12-19 06:44:05 +01:00
|
|
|
if (error) {
|
|
|
|
feedr.className = feedr.className.replace("feed", "error");
|
|
|
|
} else if (id > 0) {
|
|
|
|
feedr.className = feedr.className.replace("error", "feed");
|
2005-12-16 18:35:04 +01:00
|
|
|
}
|
2005-12-13 16:59:43 +01:00
|
|
|
|
|
|
|
if (ctr > 0) {
|
2008-08-08 06:33:23 +02:00
|
|
|
feedctr.className = "feedCtrHasUnread";
|
2005-12-13 16:59:43 +01:00
|
|
|
if (!feedr.className.match("Unread")) {
|
|
|
|
var is_selected = feedr.className.match("Selected");
|
|
|
|
|
|
|
|
feedr.className = feedr.className.replace("Selected", "");
|
|
|
|
feedr.className = feedr.className.replace("Unread", "");
|
|
|
|
|
|
|
|
feedr.className = feedr.className + "Unread";
|
|
|
|
|
|
|
|
if (is_selected) {
|
|
|
|
feedr.className = feedr.className + "Selected";
|
2007-08-10 19:15:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-01-15 09:46:20 +01:00
|
|
|
if (row_needs_hl &&
|
2010-01-15 09:51:36 +01:00
|
|
|
!getInitParam("theme_options").match('no_highlights')) {
|
2007-08-24 06:04:55 +02:00
|
|
|
new Effect.Highlight(feedr, {duration: 1, startcolor: "#fff7d5",
|
|
|
|
queue: { position:'end', scope: 'EFQ-' + id, limit: 1 } } );
|
2009-10-14 21:38:31 +02:00
|
|
|
|
|
|
|
cache_invalidate("F:" + id);
|
2005-12-13 16:59:43 +01:00
|
|
|
}
|
|
|
|
} else {
|
2008-08-08 06:33:23 +02:00
|
|
|
feedctr.className = "feedCtrNoUnread";
|
2005-12-13 16:59:43 +01:00
|
|
|
feedr.className = feedr.className.replace("Unread", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-08-12 16:36:39 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
2006-08-24 07:59:01 +02:00
|
|
|
|
2006-09-29 07:09:18 +02:00
|
|
|
var feeds_stored = number_of_feeds;
|
2006-08-12 16:36:39 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("Feed counters, C: " + feeds_found + ", S:" + feeds_stored);
|
2006-08-12 16:36:39 +02:00
|
|
|
|
|
|
|
if (feeds_stored != feeds_found) {
|
2006-09-29 07:09:18 +02:00
|
|
|
number_of_feeds = feeds_found;
|
2006-08-13 11:45:30 +02:00
|
|
|
|
2007-08-20 14:49:38 +02:00
|
|
|
if (feeds_stored != 0 && feeds_found != 0) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("Subscribed feed number changed, refreshing feedlist");
|
2006-09-29 05:15:31 +02:00
|
|
|
setTimeout('updateFeedList(false, false)', 50);
|
2006-08-12 16:36:39 +02:00
|
|
|
}
|
2009-02-02 14:29:41 +01:00
|
|
|
} else {
|
2009-02-10 10:06:15 +01:00
|
|
|
/* var fl = $("feeds-frame").innerHTML;
|
2009-02-02 14:36:37 +01:00
|
|
|
if (fl) {
|
|
|
|
cache_invalidate("FEEDLIST");
|
|
|
|
cache_inject("FEEDLIST", fl, getInitParam("num_feeds"));
|
2009-02-03 13:28:37 +01:00
|
|
|
} */
|
2006-08-12 16:36:39 +02:00
|
|
|
}
|
|
|
|
|
2005-12-13 16:59:43 +01:00
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("parse_counters", e);
|
2005-12-13 16:59:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
function parse_counters_reply(transport, scheduled_call) {
|
2006-12-06 09:55:58 +01:00
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
if (!transport.responseXML) {
|
2007-03-02 20:58:58 +01:00
|
|
|
notify_error("Backend did not return valid XML", true);
|
2006-12-06 09:55:58 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
var reply = transport.responseXML.firstChild;
|
2006-12-06 09:55:58 +01:00
|
|
|
|
|
|
|
if (!reply) {
|
2007-03-02 20:58:58 +01:00
|
|
|
notify_error("Backend did not return expected XML object", true);
|
2006-12-06 09:55:58 +01:00
|
|
|
updateTitle("");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-31 21:03:40 +01:00
|
|
|
if (!transport_error_check(transport)) return;
|
2006-12-06 09:55:58 +01:00
|
|
|
|
2007-08-20 14:58:11 +02:00
|
|
|
var counters = reply.getElementsByTagName("counters")[0];
|
2006-12-06 09:55:58 +01:00
|
|
|
|
2006-12-06 09:59:59 +01:00
|
|
|
parse_counters(counters, scheduled_call);
|
2006-12-06 09:55:58 +01:00
|
|
|
|
2007-08-20 14:58:11 +02:00
|
|
|
var runtime_info = reply.getElementsByTagName("runtime-info")[0];
|
2006-12-06 09:55:58 +01:00
|
|
|
|
|
|
|
parse_runtime_info(runtime_info);
|
|
|
|
|
2008-05-20 14:04:30 +02:00
|
|
|
if (feedsSortByUnread()) {
|
|
|
|
resort_feedlist();
|
|
|
|
}
|
2006-12-06 09:55:58 +01:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
2006-12-06 09:55:58 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-05-21 06:38:28 +02:00
|
|
|
function all_counters_callback2(transport, async_call) {
|
2007-08-24 06:04:55 +02:00
|
|
|
try {
|
2008-05-21 06:38:28 +02:00
|
|
|
if (async_call) async_counters_work = true;
|
2009-02-04 07:51:31 +01:00
|
|
|
|
|
|
|
if (offline_mode) return;
|
2008-05-21 06:38:28 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("<b>all_counters_callback2 IN: " + transport + "</b>");
|
2007-08-24 06:04:55 +02:00
|
|
|
parse_counters_reply(transport);
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("<b>all_counters_callback2 OUT: " + transport + "</b>");
|
2007-08-24 06:04:55 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("all_counters_callback2", e, transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-22 06:05:24 +01:00
|
|
|
function get_feed_unread(id) {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
return parseInt($("FEEDU-" + id).innerHTML);
|
2007-11-22 06:05:24 +01:00
|
|
|
} catch (e) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-04 15:57:29 +02:00
|
|
|
function get_cat_unread(id) {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var ctr = $("FCATCTR-" + id).innerHTML;
|
2008-06-04 15:57:29 +02:00
|
|
|
ctr = ctr.replace("(", "");
|
|
|
|
ctr = ctr.replace(")", "");
|
|
|
|
return parseInt(ctr);
|
|
|
|
} catch (e) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
function get_feed_entry_unread(elem) {
|
2006-06-05 10:33:19 +02:00
|
|
|
|
|
|
|
var id = elem.id.replace("FEEDR-", "");
|
|
|
|
|
|
|
|
if (id <= 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
return parseInt($("FEEDU-" + id).innerHTML);
|
2006-06-05 10:33:19 +02:00
|
|
|
} catch (e) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-20 14:04:30 +02:00
|
|
|
function get_feed_entry_name(elem) {
|
|
|
|
var id = elem.id.replace("FEEDR-", "");
|
|
|
|
return getFeedName(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-22 13:46:56 +02:00
|
|
|
function resort_category(node, cat_mode) {
|
2006-06-05 10:33:19 +02:00
|
|
|
|
2008-05-20 14:25:17 +02:00
|
|
|
try {
|
2008-05-20 14:04:30 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("resort_category: " + node + " CM=" + cat_mode);
|
2008-05-20 14:25:17 +02:00
|
|
|
|
|
|
|
var by_unread = feedsSortByUnread();
|
|
|
|
|
|
|
|
var list = node.getElementsByTagName("LI");
|
|
|
|
|
|
|
|
for (i = 0; i < list.length; i++) {
|
|
|
|
|
|
|
|
for (j = i+1; j < list.length; j++) {
|
|
|
|
|
|
|
|
var tmp_val = get_feed_entry_unread(list[i]);
|
|
|
|
var cur_val = get_feed_entry_unread(list[j]);
|
|
|
|
|
|
|
|
var tmp_name = get_feed_entry_name(list[i]);
|
|
|
|
var cur_name = get_feed_entry_name(list[j]);
|
2009-10-22 13:46:56 +02:00
|
|
|
|
|
|
|
var valid_pair = cat_mode || (list[i].id.match(/FEEDR-[0-9]/) &&
|
|
|
|
list[j].id.match(/FEEDR-[0-9]/));
|
|
|
|
|
|
|
|
if (valid_pair && ((by_unread && (cur_val > tmp_val)) || (!by_unread && (cur_name < tmp_name)))) {
|
2008-05-20 14:25:17 +02:00
|
|
|
tempnode_i = list[i].cloneNode(true);
|
|
|
|
tempnode_j = list[j].cloneNode(true);
|
|
|
|
node.replaceChild(tempnode_i, list[j]);
|
|
|
|
node.replaceChild(tempnode_j, list[i]);
|
2006-06-05 10:33:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-05-20 14:25:17 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("resort_category", e);
|
2006-06-05 10:33:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function resort_feedlist() {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("resort_feedlist");
|
2006-06-05 10:33:19 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("FCATLIST--1")) {
|
2006-06-05 10:33:19 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
var lists = document.getElementsByTagName("UL");
|
2006-06-05 10:33:19 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
for (var i = 0; i < lists.length; i++) {
|
|
|
|
if (lists[i].id && lists[i].id.match("FCATLIST-")) {
|
2009-10-22 13:46:56 +02:00
|
|
|
resort_category(lists[i], true);
|
2006-06-05 10:33:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2009-10-22 13:46:56 +02:00
|
|
|
resort_category($("feedList"), false);
|
2006-06-05 10:33:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-17 05:24:40 +02:00
|
|
|
/** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
|
|
|
|
* * @author Sundar Dorai-Raj
|
|
|
|
* * Email: sdoraira@vt.edu
|
|
|
|
* * This program is free software; you can redistribute it and/or
|
|
|
|
* * modify it under the terms of the GNU General Public License
|
|
|
|
* * as published by the Free Software Foundation; either version 2
|
|
|
|
* * of the License, or (at your option) any later version,
|
|
|
|
* * provided that any use properly credits the author.
|
|
|
|
* * This program is distributed in the hope that it will be useful,
|
|
|
|
* * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* * GNU General Public License for more details at http://www.gnu.org * * */
|
|
|
|
|
|
|
|
var numbers=".0123456789";
|
|
|
|
function isNumeric(x) {
|
|
|
|
// is x a String or a character?
|
|
|
|
if(x.length>1) {
|
|
|
|
// remove negative sign
|
|
|
|
x=Math.abs(x)+"";
|
|
|
|
for(j=0;j<x.length;j++) {
|
|
|
|
// call isNumeric recursively for each character
|
|
|
|
number=isNumeric(x.substring(j,j+1));
|
|
|
|
if(!number) return number;
|
|
|
|
}
|
|
|
|
return number;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// if x is number return true
|
|
|
|
if(numbers.indexOf(x)>=0) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
function hideOrShowFeeds(hide) {
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
try {
|
2006-06-08 06:05:11 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("hideOrShowFeeds: " + hide);
|
2006-06-08 06:05:11 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("FCATLIST--1")) {
|
2006-06-08 06:05:11 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
var lists = document.getElementsByTagName("UL");
|
2006-06-08 06:05:11 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
for (var i = 0; i < lists.length; i++) {
|
|
|
|
if (lists[i].id && lists[i].id.match("FCATLIST-")) {
|
2006-06-08 06:05:11 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
var id = lists[i].id.replace("FCATLIST-", "");
|
|
|
|
hideOrShowFeedsCategory(id, hide);
|
2006-06-08 06:05:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2008-05-20 13:46:40 +02:00
|
|
|
hideOrShowFeedsCategory(null, hide);
|
2006-06-08 06:05:11 +02:00
|
|
|
}
|
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("hideOrShowFeeds", e);
|
2006-11-09 11:00:24 +01:00
|
|
|
}
|
2008-05-20 13:46:40 +02:00
|
|
|
}
|
2006-11-09 11:00:24 +01:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
function hideOrShowFeedsCategory(id, hide) {
|
2007-11-21 04:45:58 +01:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
try {
|
|
|
|
|
|
|
|
var node = null;
|
|
|
|
var cat_node = null;
|
2005-12-20 16:49:52 +01:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
if (id) {
|
2009-02-10 10:06:15 +01:00
|
|
|
node = $("FCATLIST-" + id);
|
|
|
|
cat_node = $("FCAT-" + id);
|
2008-05-20 13:46:40 +02:00
|
|
|
} else {
|
2009-02-10 10:06:15 +01:00
|
|
|
node = $("feedList"); // no categories
|
2008-05-20 13:46:40 +02:00
|
|
|
}
|
2006-06-08 06:05:11 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log("hideOrShowFeedsCategory: " + node + " (" + hide + ")");
|
2006-08-12 19:14:33 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
var cat_unread = 0;
|
2006-08-12 19:14:33 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
if (!node) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("hideOrShowFeeds: passed node is null, aborting");
|
2008-05-20 13:46:40 +02:00
|
|
|
return;
|
|
|
|
}
|
2006-08-12 19:14:33 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log("cat: " + node.id);
|
2008-05-20 13:46:40 +02:00
|
|
|
|
|
|
|
if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
|
|
|
|
for (i = 0; i < node.childNodes.length; i++) {
|
|
|
|
if (node.childNodes[i].nodeName != "LI") { continue; }
|
2006-08-12 19:14:33 +02:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
if (node.childNodes[i].style != undefined) {
|
|
|
|
|
|
|
|
var has_unread = (node.childNodes[i].className != "feed" &&
|
|
|
|
node.childNodes[i].className != "label" &&
|
|
|
|
!(!getInitParam("hide_read_shows_special") &&
|
|
|
|
node.childNodes[i].className == "virt") &&
|
|
|
|
node.childNodes[i].className != "error" &&
|
|
|
|
node.childNodes[i].className != "tag");
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log(node.childNodes[i].id + " --> " + has_unread);
|
2008-05-20 13:46:40 +02:00
|
|
|
|
|
|
|
if (hide && !has_unread) {
|
|
|
|
//node.childNodes[i].style.display = "none";
|
|
|
|
var id = node.childNodes[i].id;
|
|
|
|
Effect.Fade(node.childNodes[i], {duration : 0.3,
|
|
|
|
queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!hide) {
|
|
|
|
node.childNodes[i].style.display = "list-item";
|
|
|
|
//Effect.Appear(node.childNodes[i], {duration : 0.3});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (has_unread) {
|
|
|
|
node.childNodes[i].style.display = "list-item";
|
|
|
|
cat_unread++;
|
|
|
|
//Effect.Appear(node.childNodes[i], {duration : 0.3});
|
|
|
|
//Effect.Highlight(node.childNodes[i]);
|
|
|
|
}
|
2006-08-12 19:14:33 +02:00
|
|
|
}
|
2006-06-08 06:05:11 +02:00
|
|
|
}
|
2008-05-20 13:46:40 +02:00
|
|
|
}
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log("end cat: " + node.id + " unread " + cat_unread);
|
2009-02-03 19:28:30 +01:00
|
|
|
|
|
|
|
if (cat_node) {
|
|
|
|
|
|
|
|
if (cat_unread == 0) {
|
|
|
|
if (cat_node.style == undefined) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("ERROR: supplied cat_node " + cat_node +
|
2009-02-03 19:28:30 +01:00
|
|
|
" has no styles. WTF?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (hide) {
|
|
|
|
//cat_node.style.display = "none";
|
|
|
|
Effect.Fade(cat_node, {duration : 0.3,
|
|
|
|
queue: { position: 'end', scope: 'CFADE-' + node.id, limit: 1 }});
|
|
|
|
} else {
|
|
|
|
cat_node.style.display = "list-item";
|
|
|
|
}
|
2008-05-20 13:46:40 +02:00
|
|
|
} else {
|
2009-02-03 19:28:30 +01:00
|
|
|
try {
|
|
|
|
cat_node.style.display = "list-item";
|
|
|
|
} catch (e) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(e);
|
2009-02-03 19:28:30 +01:00
|
|
|
}
|
2008-05-20 13:46:40 +02:00
|
|
|
}
|
2006-08-26 17:26:17 +02:00
|
|
|
}
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log("unread for category: " + cat_unread);
|
2008-05-20 13:46:40 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hideOrShowFeedsCategory", e);
|
|
|
|
}
|
2005-11-15 10:13:49 +01:00
|
|
|
}
|
|
|
|
|
2005-11-25 16:14:45 +01:00
|
|
|
function selectTableRow(r, do_select) {
|
|
|
|
r.className = r.className.replace("Selected", "");
|
|
|
|
|
|
|
|
if (do_select) {
|
|
|
|
r.className = r.className + "Selected";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-25 14:43:31 +01:00
|
|
|
function selectTableRowById(elem_id, check_id, do_select) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $(elem_id);
|
2005-12-25 14:43:31 +01:00
|
|
|
|
|
|
|
if (row) {
|
|
|
|
selectTableRow(row, do_select);
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var check = $(check_id);
|
2005-12-25 14:43:31 +01:00
|
|
|
|
|
|
|
if (check) {
|
|
|
|
check.checked = do_select;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectTableRowById", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
|
2005-12-29 15:31:20 +01:00
|
|
|
classcheck, reset_others) {
|
2005-11-15 10:13:49 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var content = $(content_id);
|
2005-11-25 16:14:45 +01:00
|
|
|
|
|
|
|
if (!content) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("[selectTableRows] Element " + content_id + " not found.");
|
2005-11-25 16:14:45 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
2008-05-04 08:46:32 +02:00
|
|
|
if (Element.visible(content.rows[i])) {
|
|
|
|
if (!classcheck || content.rows[i].className.match(classcheck)) {
|
|
|
|
|
|
|
|
if (content.rows[i].id.match(prefix)) {
|
|
|
|
selectTableRow(content.rows[i], do_select);
|
|
|
|
|
|
|
|
var row_id = content.rows[i].id.replace(prefix, "");
|
2009-02-10 10:06:15 +01:00
|
|
|
var check = $(check_prefix + row_id);
|
2008-05-04 08:46:32 +02:00
|
|
|
|
|
|
|
if (check) {
|
|
|
|
check.checked = do_select;
|
|
|
|
}
|
|
|
|
} else if (reset_others) {
|
|
|
|
selectTableRow(content.rows[i], false);
|
|
|
|
|
|
|
|
var row_id = content.rows[i].id.replace(prefix, "");
|
2009-02-10 10:06:15 +01:00
|
|
|
var check = $(check_prefix + row_id);
|
2008-05-04 08:46:32 +02:00
|
|
|
|
|
|
|
if (check) {
|
|
|
|
check.checked = false;
|
|
|
|
}
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2005-12-29 15:31:20 +01:00
|
|
|
}
|
|
|
|
} else if (reset_others) {
|
|
|
|
selectTableRow(content.rows[i], false);
|
2008-05-04 08:46:32 +02:00
|
|
|
|
2005-12-30 21:47:07 +01:00
|
|
|
var row_id = content.rows[i].id.replace(prefix, "");
|
2009-02-10 10:06:15 +01:00
|
|
|
var check = $(check_prefix + row_id);
|
2008-05-04 08:46:32 +02:00
|
|
|
|
2005-12-30 21:47:07 +01:00
|
|
|
if (check) {
|
|
|
|
check.checked = false;
|
|
|
|
}
|
2008-05-04 08:46:32 +02:00
|
|
|
|
2005-12-30 21:47:07 +01:00
|
|
|
}
|
2005-11-25 16:48:24 +01:00
|
|
|
}
|
2005-11-25 16:14:45 +01:00
|
|
|
}
|
2005-11-16 08:59:46 +01:00
|
|
|
}
|
2005-11-23 08:07:04 +01:00
|
|
|
|
|
|
|
function getSelectedTableRowIds(content_id, prefix) {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var content = $(content_id);
|
2005-11-23 08:07:04 +01:00
|
|
|
|
|
|
|
if (!content) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("[getSelectedTableRowIds] Element " + content_id + " not found.");
|
2010-05-27 14:10:35 +02:00
|
|
|
return new Array();
|
2005-11-23 08:07:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var sel_rows = new Array();
|
|
|
|
|
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
2005-11-27 15:56:10 +01:00
|
|
|
if (content.rows[i].id.match(prefix) &&
|
|
|
|
content.rows[i].className.match("Selected")) {
|
|
|
|
|
2005-11-23 08:07:04 +01:00
|
|
|
var row_id = content.rows[i].id.replace(prefix + "-", "");
|
|
|
|
sel_rows.push(row_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sel_rows;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
function toggleSelectRowById(sender, id) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $(id);
|
2005-12-13 06:52:32 +01:00
|
|
|
|
|
|
|
if (sender.checked) {
|
|
|
|
if (!row.className.match("Selected")) {
|
|
|
|
row.className = row.className + "Selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (row.className.match("Selected")) {
|
|
|
|
row.className = row.className.replace("Selected", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-30 05:22:07 +01:00
|
|
|
function toggleSelectListRow(sender) {
|
|
|
|
var parent_row = sender.parentNode;
|
|
|
|
|
|
|
|
if (sender.checked) {
|
|
|
|
if (!parent_row.className.match("Selected")) {
|
|
|
|
parent_row.className = parent_row.className + "Selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (parent_row.className.match("Selected")) {
|
|
|
|
parent_row.className = parent_row.className.replace("Selected", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-15 09:51:57 +02:00
|
|
|
function tSR(sender) {
|
|
|
|
return toggleSelectRow(sender);
|
|
|
|
}
|
2005-12-13 06:52:32 +01:00
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
function toggleSelectRow(sender) {
|
|
|
|
var parent_row = sender.parentNode.parentNode;
|
|
|
|
|
|
|
|
if (sender.checked) {
|
|
|
|
if (!parent_row.className.match("Selected")) {
|
|
|
|
parent_row.className = parent_row.className + "Selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (parent_row.className.match("Selected")) {
|
|
|
|
parent_row.className = parent_row.className.replace("Selected", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-01 06:06:55 +02:00
|
|
|
function getNextUnreadCat(id) {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var rows = $("feedList").getElementsByTagName("LI");
|
2008-10-01 06:06:55 +02:00
|
|
|
var feeds = new Array();
|
|
|
|
|
|
|
|
var unread_only = true;
|
|
|
|
var is_cat = true;
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
if (rows[i].id.match("FCAT-")) {
|
|
|
|
if (rows[i].id == "FCAT-" + id && is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
|
|
|
|
|
|
|
|
var cat_id = parseInt(rows[i].id.replace("FCAT-", ""));
|
|
|
|
|
|
|
|
if (cat_id >= 0) {
|
|
|
|
if (!unread_only || get_cat_unread(cat_id) > 0) {
|
|
|
|
feeds.push(cat_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var idx = feeds.indexOf(id);
|
|
|
|
if (idx != -1 && idx < feeds.length) {
|
|
|
|
return feeds[idx+1];
|
|
|
|
} else {
|
|
|
|
return feeds.shift();
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getNextUnreadCat", e);
|
|
|
|
}
|
|
|
|
}
|
2008-06-04 15:57:29 +02:00
|
|
|
|
|
|
|
function getRelativeFeedId2(id, is_cat, direction, unread_only) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// alert(id + " IC: " + is_cat + " D: " + direction + " U: " + unread_only);
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var rows = $("feedList").getElementsByTagName("LI");
|
2008-06-04 15:57:29 +02:00
|
|
|
var feeds = new Array();
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
if (rows[i].id.match("FEEDR-")) {
|
|
|
|
|
|
|
|
if (rows[i].id == "FEEDR-" + id && !is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
|
|
|
|
|
|
|
|
if (!unread_only ||
|
|
|
|
(rows[i].className.match("Unread") || rows[i].id == "FEEDR-" + id)) {
|
|
|
|
feeds.push(rows[i].id.replace("FEEDR-", ""));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows[i].id.match("FCAT-")) {
|
|
|
|
if (rows[i].id == "FCAT-" + id && is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
|
|
|
|
|
|
|
|
var cat_id = parseInt(rows[i].id.replace("FCAT-", ""));
|
|
|
|
|
|
|
|
if (cat_id >= 0) {
|
|
|
|
if (!unread_only || get_cat_unread(cat_id) > 0) {
|
|
|
|
feeds.push("CAT:"+cat_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// alert(feeds.toString());
|
|
|
|
|
|
|
|
if (!id) {
|
|
|
|
if (direction == "next") {
|
|
|
|
return feeds.shift();
|
|
|
|
} else {
|
|
|
|
return feeds.pop();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (direction == "next") {
|
|
|
|
if (is_cat) id = "CAT:" + id;
|
|
|
|
var idx = feeds.indexOf(id);
|
|
|
|
if (idx != -1 && idx < feeds.length) {
|
|
|
|
return feeds[idx+1];
|
|
|
|
} else {
|
|
|
|
return getRelativeFeedId2(false, is_cat, direction, unread_only);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (is_cat) id = "CAT:" + id;
|
|
|
|
var idx = feeds.indexOf(id);
|
|
|
|
if (idx > 0) {
|
|
|
|
return feeds[idx-1];
|
|
|
|
} else {
|
|
|
|
return getRelativeFeedId2(false, is_cat, direction, unread_only);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getRelativeFeedId2", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-17 14:09:22 +02:00
|
|
|
function getRelativeFeedId(list, id, direction, unread_only) {
|
2007-08-11 05:29:51 +02:00
|
|
|
var rows = list.getElementsByTagName("LI");
|
|
|
|
var feeds = new Array();
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
if (rows[i].id.match("FEEDR-")) {
|
|
|
|
|
2007-08-11 05:38:18 +02:00
|
|
|
if (rows[i].id == "FEEDR-" + id || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
|
2007-08-11 05:29:51 +02:00
|
|
|
|
|
|
|
if (!unread_only ||
|
|
|
|
(rows[i].className.match("Unread") || rows[i].id == "FEEDR-" + id)) {
|
|
|
|
feeds.push(rows[i].id.replace("FEEDR-", ""));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-28 07:28:33 +01:00
|
|
|
if (!id) {
|
2007-08-11 05:29:51 +02:00
|
|
|
if (direction == "next") {
|
|
|
|
return feeds.shift();
|
|
|
|
} else {
|
|
|
|
return feeds.pop();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (direction == "next") {
|
|
|
|
var idx = feeds.indexOf(id);
|
|
|
|
if (idx != -1 && idx < feeds.length) {
|
|
|
|
return feeds[idx+1];
|
2007-08-11 05:34:40 +02:00
|
|
|
} else {
|
|
|
|
return getRelativeFeedId(list, false, direction, unread_only);
|
2007-08-11 05:29:51 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var idx = feeds.indexOf(id);
|
|
|
|
if (idx > 0) {
|
|
|
|
return feeds[idx-1];
|
2007-08-11 05:34:40 +02:00
|
|
|
} else {
|
|
|
|
return getRelativeFeedId(list, false, direction, unread_only);
|
2007-08-11 05:29:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2005-11-28 07:28:33 +01:00
|
|
|
}
|
2005-11-29 10:50:18 +01:00
|
|
|
|
2007-04-25 17:00:08 +02:00
|
|
|
function showBlockElement(id, h_id) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var elem = $(id);
|
2005-11-29 10:50:18 +01:00
|
|
|
|
|
|
|
if (elem) {
|
|
|
|
elem.style.display = "block";
|
2007-04-25 17:00:08 +02:00
|
|
|
|
|
|
|
if (h_id) {
|
2009-02-10 10:06:15 +01:00
|
|
|
elem = $(h_id);
|
2007-04-25 17:00:08 +02:00
|
|
|
if (elem) {
|
|
|
|
elem.style.display = "none";
|
|
|
|
}
|
|
|
|
}
|
2005-11-29 10:50:18 +01:00
|
|
|
} else {
|
|
|
|
alert("[showBlockElement] can't find element with id " + id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-11 18:43:45 +02:00
|
|
|
function appearBlockElement_afh(effect) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkboxToggleElement(elem, id) {
|
|
|
|
if (elem.checked) {
|
2008-08-06 09:51:28 +02:00
|
|
|
Effect.Appear(id, {duration : 0.5});
|
2007-08-11 18:43:45 +02:00
|
|
|
} else {
|
2008-08-06 09:51:28 +02:00
|
|
|
Effect.Fade(id, {duration : 0.5});
|
2007-08-11 18:43:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function appearBlockElement(id, h_id) {
|
|
|
|
|
|
|
|
try {
|
2007-10-18 04:55:44 +02:00
|
|
|
if (h_id) {
|
|
|
|
Effect.Fade(h_id);
|
|
|
|
}
|
2007-08-11 18:43:45 +02:00
|
|
|
Effect.SlideDown(id, {duration : 1.0, afterFinish: appearBlockElement_afh});
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("appearBlockElement", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-12-20 11:39:20 +01:00
|
|
|
function hideParentElement(e) {
|
|
|
|
e.parentNode.style.display = "none";
|
|
|
|
}
|
2005-12-20 12:14:24 +01:00
|
|
|
|
|
|
|
function dropboxSelect(e, v) {
|
|
|
|
for (i = 0; i < e.length; i++) {
|
|
|
|
if (e[i].value == v) {
|
|
|
|
e.selectedIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-28 17:25:38 +01:00
|
|
|
|
|
|
|
// originally stolen from http://www.11tmr.com/11tmr.nsf/d6plinks/MWHE-695L9Z
|
|
|
|
// bugfixed just a little bit :-)
|
|
|
|
function getURLParam(strParamName){
|
|
|
|
var strReturn = "";
|
|
|
|
var strHref = window.location.href;
|
|
|
|
|
|
|
|
if (strHref.indexOf("#") == strHref.length-1) {
|
|
|
|
strHref = strHref.substring(0, strHref.length-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strHref.indexOf("?") > -1 ){
|
|
|
|
var strQueryString = strHref.substr(strHref.indexOf("?"));
|
|
|
|
var aQueryString = strQueryString.split("&");
|
|
|
|
for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
|
|
|
|
if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
|
|
|
|
var aParam = aQueryString[iParam].split("=");
|
|
|
|
strReturn = aParam[1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return strReturn;
|
|
|
|
}
|
|
|
|
|
2006-03-04 11:35:47 +01:00
|
|
|
function leading_zero(p) {
|
|
|
|
var s = String(p);
|
|
|
|
if (s.length == 1) s = "0" + s;
|
|
|
|
return s;
|
|
|
|
}
|
2006-03-20 12:24:34 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
function make_timestamp() {
|
|
|
|
var d = new Date();
|
|
|
|
|
|
|
|
return leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
|
|
|
|
":" + leading_zero(d.getSeconds());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
function closeErrorBox() {
|
2007-05-14 10:08:18 +02:00
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
if (Element.visible("errorBoxShadow")) {
|
2009-01-23 15:20:36 +01:00
|
|
|
Element.hide("dialog_overlay");
|
2009-01-23 18:19:17 +01:00
|
|
|
Element.hide("errorBoxShadow");
|
2006-05-18 06:58:31 +02:00
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
enableHotkeys();
|
2006-05-18 06:58:31 +02:00
|
|
|
}
|
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
return false;
|
|
|
|
}
|
2006-05-21 06:28:51 +02:00
|
|
|
|
2009-01-23 15:20:36 +01:00
|
|
|
function closeInfoBox(cleanup) {
|
|
|
|
|
2009-10-08 10:36:27 +02:00
|
|
|
try {
|
|
|
|
enableHotkeys();
|
2009-01-23 15:20:36 +01:00
|
|
|
|
2009-10-08 10:36:27 +02:00
|
|
|
if (Element.visible("infoBoxShadow")) {
|
|
|
|
Element.hide("dialog_overlay");
|
|
|
|
Element.hide("infoBoxShadow");
|
2009-01-23 15:20:36 +01:00
|
|
|
|
2010-02-03 13:01:33 +01:00
|
|
|
if (cleanup) $("infoBox").innerHTML = " ";
|
2009-10-08 10:36:27 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("closeInfoBox", e);
|
2009-01-23 15:20:36 +01:00
|
|
|
}
|
2009-10-08 10:36:27 +02:00
|
|
|
|
2006-07-25 12:47:51 +02:00
|
|
|
return false;
|
2006-05-18 06:58:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-06 12:17:28 +01:00
|
|
|
function displayDlg(id, param, callback) {
|
2006-05-18 04:48:33 +02:00
|
|
|
|
2007-05-17 15:07:34 +02:00
|
|
|
notify_progress("Loading, please wait...", true);
|
2006-05-18 04:48:33 +02:00
|
|
|
|
|
|
|
disableHotkeys();
|
2006-05-18 10:29:17 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=dlg&id=" +
|
2007-08-25 14:11:54 +02:00
|
|
|
param_escape(id) + "¶m=" + param_escape(param);
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-25 14:11:54 +02:00
|
|
|
onComplete: function (transport) {
|
|
|
|
infobox_callback2(transport);
|
2010-01-06 12:17:28 +01:00
|
|
|
if (callback) callback(transport);
|
2007-08-25 14:11:54 +02:00
|
|
|
} });
|
|
|
|
|
2006-07-25 12:47:51 +02:00
|
|
|
return false;
|
2006-05-18 04:48:33 +02:00
|
|
|
}
|
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
function infobox_submit_callback2(transport) {
|
|
|
|
closeInfoBox();
|
2006-05-20 13:39:22 +02:00
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
try {
|
|
|
|
// called from prefs, reload tab
|
2008-05-17 18:25:41 +02:00
|
|
|
if (typeof active_tab != 'undefined' && active_tab) {
|
2007-08-25 14:11:54 +02:00
|
|
|
selectTab(active_tab, false);
|
2007-03-05 14:45:34 +01:00
|
|
|
}
|
2007-08-25 14:11:54 +02:00
|
|
|
} catch (e) { }
|
2006-05-20 13:39:22 +02:00
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
if (transport.responseText) {
|
|
|
|
notify_info(transport.responseText);
|
|
|
|
}
|
2006-05-18 04:48:33 +02:00
|
|
|
}
|
|
|
|
|
2007-08-24 06:36:00 +02:00
|
|
|
function infobox_callback2(transport) {
|
|
|
|
try {
|
2007-05-14 10:08:18 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("infobox_callback2");
|
2007-05-14 10:08:18 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var box = $('infoBox');
|
2009-10-07 14:33:45 +02:00
|
|
|
|
2007-08-24 06:36:00 +02:00
|
|
|
if (box) {
|
2007-08-11 06:14:27 +02:00
|
|
|
|
2009-10-07 14:33:45 +02:00
|
|
|
if (!getInitParam("infobox_disable_overlay")) {
|
|
|
|
Element.show("dialog_overlay");
|
2007-06-14 08:34:35 +02:00
|
|
|
}
|
2009-10-07 14:33:45 +02:00
|
|
|
|
|
|
|
box.innerHTML=transport.responseText;
|
|
|
|
Element.show("infoBoxShadow");
|
|
|
|
//Effect.SlideDown("infoBoxShadow", {duration : 1.0});
|
|
|
|
|
|
|
|
|
2007-08-24 06:36:00 +02:00
|
|
|
}
|
2007-08-10 09:35:55 +02:00
|
|
|
|
2008-05-16 08:33:19 +02:00
|
|
|
disableHotkeys();
|
|
|
|
|
2007-08-24 06:36:00 +02:00
|
|
|
notify("");
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("infobox_callback2", e);
|
2007-05-14 07:41:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-25 14:16:26 +02:00
|
|
|
function createFilter() {
|
2006-05-18 04:48:33 +02:00
|
|
|
|
2008-05-17 18:25:41 +02:00
|
|
|
try {
|
2008-05-16 08:33:19 +02:00
|
|
|
|
2008-05-17 18:25:41 +02:00
|
|
|
var form = document.forms['filter_add_form'];
|
|
|
|
var reg_exp = form.reg_exp.value;
|
|
|
|
|
|
|
|
if (reg_exp == "") {
|
|
|
|
alert(__("Can't add filter: nothing to match on."));
|
|
|
|
return false;
|
|
|
|
}
|
2007-08-25 14:11:54 +02:00
|
|
|
|
2008-05-17 18:25:41 +02:00
|
|
|
var query = Form.serialize("filter_add_form");
|
|
|
|
|
|
|
|
// we can be called from some other tab in Prefs
|
|
|
|
if (typeof active_tab != 'undefined' && active_tab) {
|
|
|
|
active_tab = "filterConfig";
|
|
|
|
}
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php?" + query, {
|
|
|
|
onComplete: function (transport) {
|
|
|
|
infobox_submit_callback2(transport);
|
|
|
|
} });
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("createFilter", e);
|
|
|
|
}
|
2006-05-18 04:48:33 +02:00
|
|
|
}
|
|
|
|
|
2006-05-19 05:10:58 +02:00
|
|
|
function isValidURL(s) {
|
2007-03-02 20:16:45 +01:00
|
|
|
return s.match("http://") != null || s.match("https://") != null || s.match("feed://") != null;
|
2006-05-19 05:10:58 +02:00
|
|
|
}
|
2006-05-20 16:53:41 +02:00
|
|
|
|
2007-08-25 14:16:26 +02:00
|
|
|
function subscribeToFeed() {
|
2006-05-20 16:53:41 +02:00
|
|
|
|
2010-01-13 10:48:49 +01:00
|
|
|
try {
|
|
|
|
|
2006-10-01 09:00:04 +02:00
|
|
|
var form = document.forms['feed_add_form'];
|
|
|
|
var feed_url = form.feed_url.value;
|
|
|
|
|
|
|
|
if (feed_url == "") {
|
2007-08-10 18:16:43 +02:00
|
|
|
alert(__("Can't subscribe: no feed URL given."));
|
2006-10-01 09:00:04 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-05-17 09:56:08 +02:00
|
|
|
notify_progress(__("Subscribing to feed..."), true);
|
2006-05-20 16:53:41 +02:00
|
|
|
|
|
|
|
var query = Form.serialize("feed_add_form");
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("subscribe q: " + query);
|
2007-04-25 17:00:08 +02:00
|
|
|
|
2010-01-13 10:48:49 +01:00
|
|
|
Form.disable("feed_add_form");
|
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
2010-01-13 10:48:49 +01:00
|
|
|
//dlg_frefresh_callback(transport);
|
|
|
|
|
|
|
|
notify('');
|
|
|
|
|
|
|
|
var result = transport.responseXML.getElementsByTagName('result')[0];
|
|
|
|
var rc = parseInt(result.getAttribute('code'));
|
|
|
|
|
|
|
|
Form.enable("feed_add_form");
|
|
|
|
|
|
|
|
switch (rc) {
|
|
|
|
case 1:
|
|
|
|
closeInfoBox();
|
|
|
|
notify_info(__("Subscribed to %s").replace("%s", feed_url));
|
|
|
|
|
|
|
|
if (inPreferences()) {
|
|
|
|
updateFeedList();
|
|
|
|
} else {
|
|
|
|
setTimeout('updateFeedList(false, false)', 50);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
alert(__("Can't subscribe to the specified URL."));
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
alert(__("You are already subscribed to this feed."));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-08-25 14:11:54 +02:00
|
|
|
} });
|
2006-09-29 05:23:14 +02:00
|
|
|
|
2010-01-13 10:48:49 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("subscribeToFeed", e);
|
|
|
|
}
|
|
|
|
|
2006-09-29 05:23:14 +02:00
|
|
|
return false;
|
2006-05-20 16:53:41 +02:00
|
|
|
}
|
|
|
|
|
2006-10-01 08:33:32 +02:00
|
|
|
function filterCR(e, f)
|
2006-05-21 06:28:51 +02:00
|
|
|
{
|
|
|
|
var key;
|
|
|
|
|
|
|
|
if(window.event)
|
|
|
|
key = window.event.keyCode; //IE
|
|
|
|
else
|
|
|
|
key = e.which; //firefox
|
|
|
|
|
2006-10-01 08:33:32 +02:00
|
|
|
if (key == 13) {
|
|
|
|
if (typeof f != 'undefined') {
|
|
|
|
f();
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
2006-05-21 06:28:51 +02:00
|
|
|
}
|
|
|
|
|
2006-06-08 10:12:22 +02:00
|
|
|
var debug_last_class = "even";
|
|
|
|
|
2006-05-23 08:03:08 +02:00
|
|
|
function debug(msg) {
|
|
|
|
|
2006-09-29 07:09:18 +02:00
|
|
|
if (debug_last_class == "even") {
|
|
|
|
debug_last_class = "odd";
|
2006-06-08 10:12:22 +02:00
|
|
|
} else {
|
2006-09-29 07:09:18 +02:00
|
|
|
debug_last_class = "even";
|
2006-06-08 10:12:22 +02:00
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var c = $('debug_output');
|
2008-05-19 13:28:20 +02:00
|
|
|
if (c && Element.visible(c)) {
|
2006-06-05 10:33:19 +02:00
|
|
|
while (c.lastChild != 'undefined' && c.childNodes.length > 100) {
|
2006-05-23 08:03:08 +02:00
|
|
|
c.removeChild(c.lastChild);
|
|
|
|
}
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
var ts = make_timestamp();
|
2006-09-29 07:09:18 +02:00
|
|
|
c.innerHTML = "<li class=\"" + debug_last_class + "\"><span class=\"debugTS\">[" + ts + "]</span> " +
|
2006-06-08 10:12:22 +02:00
|
|
|
msg + "</li>" + c.innerHTML;
|
2006-05-23 08:03:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-23 08:15:49 +02:00
|
|
|
function getInitParam(key) {
|
2007-03-26 07:23:15 +02:00
|
|
|
return init_params[key];
|
2006-05-23 08:15:49 +02:00
|
|
|
}
|
2006-05-23 07:34:50 +02:00
|
|
|
|
2010-01-12 09:48:31 +01:00
|
|
|
function setInitParam(key, value) {
|
2007-05-11 09:50:02 +02:00
|
|
|
init_params[key] = value;
|
2007-03-21 16:36:24 +01:00
|
|
|
}
|
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
function fatalError(code, msg, ext_info) {
|
2006-05-23 09:15:48 +02:00
|
|
|
try {
|
|
|
|
|
2009-02-04 21:19:16 +01:00
|
|
|
if (!ext_info) ext_info = "N/A";
|
|
|
|
|
2007-02-24 18:16:33 +01:00
|
|
|
if (code == 6) {
|
2009-02-12 18:16:10 +01:00
|
|
|
window.location.href = "tt-rss.php";
|
2007-02-24 18:16:33 +01:00
|
|
|
} else if (code == 5) {
|
|
|
|
window.location.href = "update.php";
|
|
|
|
} else {
|
2006-11-09 11:00:24 +01:00
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
if (msg == "") msg = "Unknown error";
|
2007-03-02 20:58:58 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ebc = $("xebContent");
|
2006-11-09 11:00:24 +01:00
|
|
|
|
2009-01-23 18:19:17 +01:00
|
|
|
if (ebc) {
|
|
|
|
|
|
|
|
Element.show("dialog_overlay");
|
|
|
|
Element.show("errorBoxShadow");
|
|
|
|
Element.hide("xebBtn");
|
|
|
|
|
|
|
|
if (ext_info) {
|
|
|
|
if (ext_info.responseText) {
|
|
|
|
ext_info = ext_info.responseText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ebc.innerHTML =
|
|
|
|
"<div><b>Error message:</b></div>" +
|
|
|
|
"<pre>" + msg + "</pre>" +
|
|
|
|
"<div><b>Additional information:</b></div>" +
|
|
|
|
"<textarea readonly=\"1\">" + ext_info + "</textarea>";
|
|
|
|
}
|
2006-11-09 11:00:24 +01:00
|
|
|
}
|
2006-05-23 09:15:48 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("fatalError", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-01 06:59:21 +02:00
|
|
|
function getFeedName(id, is_cat) {
|
|
|
|
var e;
|
|
|
|
|
|
|
|
if (is_cat) {
|
2009-02-10 10:06:15 +01:00
|
|
|
e = $("FCATN-" + id);
|
2006-08-01 06:59:21 +02:00
|
|
|
} else {
|
2009-02-10 10:06:15 +01:00
|
|
|
e = $("FEEDN-" + id);
|
2006-08-01 06:59:21 +02:00
|
|
|
}
|
2006-05-24 05:15:04 +02:00
|
|
|
if (e) {
|
|
|
|
return e.innerHTML.stripTags();
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2006-08-30 13:33:07 +02:00
|
|
|
|
2008-12-13 12:57:53 +01:00
|
|
|
function filterDlgCheckType(sender) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ftype = sender[sender.selectedIndex].value;
|
|
|
|
|
|
|
|
var form = document.forms["filter_add_form"];
|
|
|
|
|
|
|
|
if (!form) {
|
|
|
|
form = document.forms["filter_edit_form"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!form) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("filterDlgCheckType: can't find form!");
|
2008-12-13 12:57:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if selected filter type is 5 (Date) enable the modifier dropbox
|
|
|
|
if (ftype == 5) {
|
|
|
|
Element.show("filter_dlg_date_mod_box");
|
|
|
|
Element.show("filter_dlg_date_chk_box");
|
|
|
|
} else {
|
|
|
|
Element.hide("filter_dlg_date_mod_box");
|
|
|
|
Element.hide("filter_dlg_date_chk_box");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("filterDlgCheckType", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-12-08 09:05:21 +01:00
|
|
|
function filterDlgCheckAction(sender) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var action = sender[sender.selectedIndex].value;
|
|
|
|
|
|
|
|
var form = document.forms["filter_add_form"];
|
|
|
|
|
|
|
|
if (!form) {
|
|
|
|
form = document.forms["filter_edit_form"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!form) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("filterDlgCheckAction: can't find form!");
|
2006-12-08 09:05:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var action_param = $("filter_dlg_param_box");
|
2006-12-08 09:05:21 +01:00
|
|
|
|
|
|
|
if (!action_param) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("filterDlgCheckAction: can't find action param box!");
|
2006-12-08 09:05:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if selected action supports parameters, enable params field
|
2009-01-18 09:28:42 +01:00
|
|
|
if (action == 4 || action == 6 || action == 7) {
|
2008-08-07 05:17:24 +02:00
|
|
|
Element.show(action_param);
|
2009-01-18 09:28:42 +01:00
|
|
|
if (action != 7) {
|
|
|
|
Element.show(form.action_param);
|
|
|
|
Element.hide(form.action_param_label);
|
|
|
|
} else {
|
|
|
|
Element.show(form.action_param_label);
|
|
|
|
Element.hide(form.action_param);
|
|
|
|
}
|
2006-12-08 09:05:21 +01:00
|
|
|
} else {
|
2008-08-07 05:17:24 +02:00
|
|
|
Element.hide(action_param);
|
2006-12-08 09:05:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("filterDlgCheckAction", e);
|
2006-12-08 09:05:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2007-01-27 10:21:55 +01:00
|
|
|
|
2008-12-13 12:57:53 +01:00
|
|
|
function filterDlgCheckDate() {
|
|
|
|
try {
|
|
|
|
var form = document.forms["filter_add_form"];
|
|
|
|
|
|
|
|
if (!form) {
|
|
|
|
form = document.forms["filter_edit_form"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!form) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("filterDlgCheckAction: can't find form!");
|
2008-12-13 12:57:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var reg_exp = form.reg_exp.value;
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=checkDate&date=" + reg_exp;
|
2008-12-13 12:57:53 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2008-12-13 12:57:53 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
|
|
|
|
var form = document.forms["filter_add_form"];
|
|
|
|
|
|
|
|
if (!form) {
|
|
|
|
form = document.forms["filter_edit_form"];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var result = transport.responseXML.getElementsByTagName("result")[0];
|
|
|
|
|
|
|
|
if (result && result.firstChild) {
|
|
|
|
if (result.firstChild.nodeValue == "1") {
|
|
|
|
|
|
|
|
new Effect.Highlight(form.reg_exp, {startcolor : '#00ff00'});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
new Effect.Highlight(form.reg_exp, {startcolor : '#ff0000'});
|
|
|
|
|
|
|
|
} });
|
|
|
|
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("filterDlgCheckDate", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-27 10:21:55 +01:00
|
|
|
function explainError(code) {
|
|
|
|
return displayDlg("explainError", code);
|
|
|
|
}
|
2007-03-01 10:43:54 +01:00
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
// this only searches loaded headlines list, not in CDM
|
2008-05-18 10:51:07 +02:00
|
|
|
function getRelativePostIds(id, limit) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-05-18 10:51:07 +02:00
|
|
|
if (!limit) limit = 3;
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("getRelativePostIds: " + id + " limit=" + limit);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
var ids = new Array();
|
2009-02-10 10:06:15 +01:00
|
|
|
var container = $("headlinesList");
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
if (container) {
|
|
|
|
var rows = container.rows;
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
var r_id = rows[i].id.replace("RROW-", "");
|
|
|
|
|
|
|
|
if (r_id == id) {
|
2008-05-18 10:51:07 +02:00
|
|
|
for (var k = 1; k <= limit; k++) {
|
|
|
|
var nid = false;
|
|
|
|
|
|
|
|
if (i > k-1) var nid = rows[i-k].id.replace("RROW-", "");
|
|
|
|
if (nid) ids.push(nid);
|
|
|
|
|
|
|
|
if (i < rows.length-k) nid = rows[i+k].id.replace("RROW-", "");
|
|
|
|
if (nid) ids.push(nid);
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
return ids;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2007-07-20 08:01:18 +02:00
|
|
|
|
|
|
|
function openArticleInNewWindow(id) {
|
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("openArticleInNewWindow: " + id);
|
2007-07-20 08:01:18 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=getArticleLink&id=" + id;
|
2008-05-16 09:42:30 +02:00
|
|
|
var wname = "ttrss_article_" + id;
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query + " " + wname);
|
2008-05-16 09:42:30 +02:00
|
|
|
|
|
|
|
var w = window.open("", wname);
|
2007-07-20 08:01:18 +02:00
|
|
|
|
2008-05-16 09:42:30 +02:00
|
|
|
if (!w) notify_error("Failed to open window for the article");
|
2007-07-20 08:01:18 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:36:00 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
|
2010-01-13 10:48:49 +01:00
|
|
|
var link = transport.responseXML.getElementsByTagName("link")[0];
|
|
|
|
var id = transport.responseXML.getElementsByTagName("id")[0];
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("open_article received link: " + link);
|
2010-01-13 10:48:49 +01:00
|
|
|
|
|
|
|
if (link && id) {
|
|
|
|
|
|
|
|
var wname = "ttrss_article_" + id.firstChild.nodeValue;
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("link url: " + link.firstChild.nodeValue + ", wname " + wname);
|
2010-01-13 10:48:49 +01:00
|
|
|
|
|
|
|
var w = window.open(link.firstChild.nodeValue, wname);
|
|
|
|
|
|
|
|
if (!w) { notify_error("Failed to load article in new window"); }
|
|
|
|
|
|
|
|
if (id) {
|
|
|
|
id = id.firstChild.nodeValue;
|
|
|
|
if (!$("headlinesList")) {
|
|
|
|
window.setTimeout("toggleUnread(" + id + ", 0)", 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
notify_error("Can't open article: received invalid article link");
|
|
|
|
}
|
|
|
|
} });
|
2007-07-20 08:01:18 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("openArticleInNewWindow", e);
|
|
|
|
}
|
|
|
|
}
|
2007-08-09 08:56:11 +02:00
|
|
|
|
2007-08-20 06:57:01 +02:00
|
|
|
/* http://textsnippets.com/posts/show/835 */
|
|
|
|
|
|
|
|
Position.GetWindowSize = function(w) {
|
|
|
|
w = w ? w : window;
|
|
|
|
var width = w.innerWidth || (w.document.documentElement.clientWidth || w.document.body.clientWidth);
|
|
|
|
var height = w.innerHeight || (w.document.documentElement.clientHeight || w.document.body.clientHeight);
|
|
|
|
return [width, height]
|
|
|
|
}
|
|
|
|
|
|
|
|
/* http://textsnippets.com/posts/show/836 */
|
|
|
|
|
|
|
|
Position.Center = function(element, parent) {
|
|
|
|
var w, h, pw, ph;
|
|
|
|
var d = Element.getDimensions(element);
|
|
|
|
w = d.width;
|
|
|
|
h = d.height;
|
|
|
|
Position.prepare();
|
|
|
|
if (!parent) {
|
|
|
|
var ws = Position.GetWindowSize();
|
|
|
|
pw = ws[0];
|
|
|
|
ph = ws[1];
|
|
|
|
} else {
|
|
|
|
pw = parent.offsetWidth;
|
|
|
|
ph = parent.offsetHeight;
|
|
|
|
}
|
|
|
|
element.style.top = (ph/2) - (h/2) - Position.deltaY + "px";
|
|
|
|
element.style.left = (pw/2) - (w/2) - Position.deltaX + "px";
|
|
|
|
}
|
|
|
|
|
2007-08-20 08:02:11 +02:00
|
|
|
|
2007-09-05 18:10:35 +02:00
|
|
|
function isCdmMode() {
|
2009-02-10 10:06:15 +01:00
|
|
|
return !$("headlinesList");
|
2007-09-05 18:10:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function getSelectedArticleIds2() {
|
|
|
|
var rows = new Array();
|
|
|
|
var cdm_mode = isCdmMode();
|
|
|
|
|
|
|
|
if (cdm_mode) {
|
|
|
|
rows = cdmGetSelectedArticles();
|
|
|
|
} else {
|
|
|
|
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
|
|
|
|
}
|
|
|
|
|
|
|
|
var ids = new Array();
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var chk = $("RCHK-" + rows[i]);
|
2007-09-05 18:10:35 +02:00
|
|
|
if (chk && chk.checked) {
|
|
|
|
ids.push(rows[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ids;
|
|
|
|
}
|
2007-10-18 06:51:29 +02:00
|
|
|
|
2008-01-12 13:05:29 +01:00
|
|
|
function displayHelpInfobox(topic_id) {
|
2007-10-18 06:51:29 +02:00
|
|
|
|
2008-01-12 13:05:29 +01:00
|
|
|
var url = "backend.php?op=help&tid=" + param_escape(topic_id);
|
|
|
|
|
|
|
|
var w = window.open(url, "ttrss_help",
|
|
|
|
"status=0,toolbar=0,location=0,width=450,height=500,scrollbars=1,menubar=0");
|
|
|
|
|
|
|
|
}
|
2008-03-20 06:34:43 +01:00
|
|
|
|
2008-05-17 05:22:38 +02:00
|
|
|
function focus_element(id) {
|
2008-05-15 06:21:00 +02:00
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $(id);
|
2008-05-17 05:22:38 +02:00
|
|
|
if (e) e.focus();
|
2008-05-15 06:21:00 +02:00
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("focus_element", e);
|
2008-05-15 06:21:00 +02:00
|
|
|
}
|
2008-05-17 05:22:38 +02:00
|
|
|
return false;
|
2008-05-15 06:21:00 +02:00
|
|
|
}
|
2008-03-20 06:34:43 +01:00
|
|
|
|
2008-05-19 10:03:53 +02:00
|
|
|
function loading_set_progress(p) {
|
2008-05-19 09:37:44 +02:00
|
|
|
try {
|
2008-05-19 10:12:54 +02:00
|
|
|
if (p < last_progress_point || !Element.visible("overlay")) return;
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("<b>loading_set_progress : " + p + " (" + last_progress_point + ")</b>");
|
2008-05-19 10:03:53 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var o = $("l_progress_i");
|
2008-05-19 10:03:53 +02:00
|
|
|
|
2008-05-19 12:05:43 +02:00
|
|
|
// o.style.width = (p * 2) + "px";
|
|
|
|
|
2008-05-19 10:03:53 +02:00
|
|
|
new Effect.Scale(o, p, {
|
|
|
|
scaleY : false,
|
|
|
|
scaleFrom : last_progress_point,
|
|
|
|
scaleMode: { originalWidth : 200 },
|
2008-05-19 12:05:43 +02:00
|
|
|
queue: { position: 'end', scope: 'LSP-Q', limit: 3 } });
|
2008-05-19 10:03:53 +02:00
|
|
|
|
|
|
|
last_progress_point = p;
|
2008-05-19 09:37:44 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("loading_set_progress", e);
|
|
|
|
}
|
|
|
|
}
|
2008-05-19 14:00:35 +02:00
|
|
|
|
|
|
|
function remove_splash() {
|
|
|
|
if (Element.visible("overlay")) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("about to remove splash, OMG!");
|
2008-05-19 14:00:35 +02:00
|
|
|
Element.hide("overlay");
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("removed splash!");
|
2008-05-19 14:00:35 +02:00
|
|
|
}
|
|
|
|
}
|
2008-08-07 10:06:12 +02:00
|
|
|
|
2009-01-24 06:01:17 +01:00
|
|
|
function getSelectedFeedsFromBrowser() {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var list = $("browseFeedList");
|
2009-01-24 06:01:17 +01:00
|
|
|
|
|
|
|
var selected = new Array();
|
|
|
|
|
|
|
|
for (i = 0; i < list.childNodes.length; i++) {
|
|
|
|
var child = list.childNodes[i];
|
|
|
|
if (child.id && child.id.match("FBROW-")) {
|
|
|
|
var id = child.id.replace("FBROW-", "");
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var cb = $("FBCHK-" + id);
|
2009-01-24 06:01:17 +01:00
|
|
|
|
|
|
|
if (cb.checked) {
|
|
|
|
selected.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return selected;
|
|
|
|
}
|
|
|
|
|
2009-01-24 06:14:06 +01:00
|
|
|
function updateFeedBrowser() {
|
|
|
|
try {
|
|
|
|
|
2010-01-13 11:44:20 +01:00
|
|
|
var query = Form.serialize("feed_browser");
|
2009-10-09 12:30:21 +02:00
|
|
|
|
|
|
|
Element.show('feed_browser_spinner');
|
2009-01-24 06:14:06 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-01-24 06:14:06 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
notify('');
|
|
|
|
|
2009-10-09 12:30:21 +02:00
|
|
|
Element.hide('feed_browser_spinner');
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var c = $("browseFeedList");
|
2009-01-24 06:14:06 +01:00
|
|
|
var r = transport.responseXML.getElementsByTagName("content")[0];
|
|
|
|
var nr = transport.responseXML.getElementsByTagName("num-results")[0];
|
2010-01-13 11:44:20 +01:00
|
|
|
var mode = transport.responseXML.getElementsByTagName("mode")[0];
|
2009-01-24 06:14:06 +01:00
|
|
|
|
|
|
|
if (c && r) {
|
|
|
|
c.innerHTML = r.firstChild.nodeValue;
|
|
|
|
}
|
2010-01-13 11:44:20 +01:00
|
|
|
|
|
|
|
if (parseInt(mode.getAttribute("value")) == 2) {
|
|
|
|
Element.show('feed_archive_remove');
|
|
|
|
} else {
|
|
|
|
Element.hide('feed_archive_remove');
|
|
|
|
}
|
2009-01-24 06:14:06 +01:00
|
|
|
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("updateFeedBrowser", e);
|
|
|
|
}
|
2010-01-11 13:40:35 +01:00
|
|
|
|
2009-01-24 06:14:06 +01:00
|
|
|
}
|
|
|
|
|
2009-01-31 21:03:40 +01:00
|
|
|
function transport_error_check(transport) {
|
|
|
|
try {
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var error = transport.responseXML.getElementsByTagName("error")[0];
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
var code = error.getAttribute("error-code");
|
|
|
|
var msg = error.getAttribute("error-msg");
|
|
|
|
if (code != 0) {
|
|
|
|
fatalError(code, msg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("check_for_error_xml", e);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-24 06:14:06 +01:00
|
|
|
|
2009-02-03 17:09:59 +01:00
|
|
|
function strip_tags(s) {
|
|
|
|
return s.replace(/<\/?[^>]+(>|$)/g, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
function truncate_string(s, length) {
|
|
|
|
if (!length) length = 30;
|
|
|
|
var tmp = s.substring(0, length);
|
|
|
|
if (s.length > length) tmp += "…";
|
|
|
|
return tmp;
|
|
|
|
}
|
2009-10-06 11:01:40 +02:00
|
|
|
|
2009-10-09 11:13:57 +02:00
|
|
|
function hotkey_prefix_timeout() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var date = new Date();
|
|
|
|
var ts = Math.round(date.getTime() / 1000);
|
|
|
|
|
|
|
|
if (hotkey_prefix_pressed && ts - hotkey_prefix_pressed >= 5) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("hotkey_prefix seems to be stuck, aborting");
|
2009-10-09 11:13:57 +02:00
|
|
|
hotkey_prefix_pressed = false;
|
|
|
|
hotkey_prefix = false;
|
|
|
|
Element.hide('cmdline');
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout("hotkey_prefix_timeout()", 1000);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hotkey_prefix_timeout", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-13 17:05:36 +02:00
|
|
|
function hideAuxDlg() {
|
|
|
|
try {
|
|
|
|
Element.hide('auxDlg');
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hideAuxDlg", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function displayNewContentPrompt(id) {
|
|
|
|
try {
|
2009-12-17 11:01:46 +01:00
|
|
|
|
|
|
|
var msg = "<a href='#' onclick='viewfeed("+id+")'>" +
|
2010-01-13 16:49:41 +01:00
|
|
|
__("New articles available in this feed (click to show)") + "</a>";
|
2009-10-09 11:13:57 +02:00
|
|
|
|
2009-10-13 17:05:36 +02:00
|
|
|
msg = msg.replace("%s", getFeedName(id));
|
|
|
|
|
|
|
|
$('auxDlg').innerHTML = msg;
|
|
|
|
|
|
|
|
Element.show('auxDlg');
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("displayNewContentPrompt", e);
|
|
|
|
}
|
|
|
|
}
|
2010-01-13 11:44:20 +01:00
|
|
|
|
|
|
|
function feedBrowserSubscribe() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var selected = getSelectedFeedsFromBrowser();
|
|
|
|
|
|
|
|
var mode = document.forms['feed_browser'].mode;
|
|
|
|
|
|
|
|
mode = mode[mode.selectedIndex].value;
|
|
|
|
|
|
|
|
if (selected.length > 0) {
|
|
|
|
closeInfoBox();
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=massSubscribe&ids="+
|
|
|
|
param_escape(selected.toString()) + "&mode=" + param_escape(mode);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
|
|
|
|
var nf = transport.responseXML.getElementsByTagName('num-feeds')[0];
|
|
|
|
var nf_value = nf.getAttribute("value");
|
|
|
|
|
|
|
|
notify_info(__("Subscribed to %d feed(s).").replace("%d", nf_value));
|
|
|
|
|
|
|
|
if (inPreferences()) {
|
|
|
|
updateFeedList();
|
|
|
|
} else {
|
|
|
|
setTimeout('updateFeedList(false, false)', 50);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
|
|
|
} else {
|
|
|
|
alert(__("No feeds are selected."));
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("feedBrowserSubscribe", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function feedArchiveRemove() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var selected = getSelectedFeedsFromBrowser();
|
|
|
|
|
|
|
|
if (selected.length > 0) {
|
|
|
|
|
2010-01-13 16:31:51 +01:00
|
|
|
var pr = __("Remove selected feeds from the archive? Feeds with stored articles will not be removed.");
|
2010-01-13 11:44:20 +01:00
|
|
|
|
|
|
|
if (confirm(pr)) {
|
|
|
|
Element.show('feed_browser_spinner');
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=remarchived&ids=" +
|
|
|
|
param_escape(selected.toString());;
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
updateFeedBrowser();
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
alert(__("No feeds are selected."));
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("feedArchiveRemove", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-14 10:47:28 +01:00
|
|
|
function uploadIconHandler(rc) {
|
2010-01-14 09:28:57 +01:00
|
|
|
try {
|
2010-01-14 10:47:28 +01:00
|
|
|
switch (rc) {
|
|
|
|
case 0:
|
|
|
|
notify_info("Upload complete.");
|
|
|
|
if (inPreferences()) {
|
|
|
|
updateFeedList();
|
|
|
|
} else {
|
|
|
|
setTimeout('updateFeedList(false, false)', 50);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
notify_error("Upload failed: icon is too big.");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
notify_error("Upload failed.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("uploadIconHandler", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeFeedIcon(id) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (confirm(__("Remove stored feed icon?"))) {
|
|
|
|
var query = "backend.php?op=pref-feeds&subop=removeicon&feed_id=" + param_escape(id);
|
2010-01-14 09:28:57 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2010-01-14 09:28:57 +01:00
|
|
|
|
2010-01-14 10:47:28 +01:00
|
|
|
notify_progress("Removing feed icon...", true);
|
2010-01-14 09:28:57 +01:00
|
|
|
|
2010-01-14 10:47:28 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
notify_info("Feed icon removed.");
|
|
|
|
if (inPreferences()) {
|
|
|
|
updateFeedList();
|
|
|
|
} else {
|
|
|
|
setTimeout('updateFeedList(false, false)', 50);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-01-14 09:28:57 +01:00
|
|
|
} catch (e) {
|
2010-01-14 10:47:28 +01:00
|
|
|
exception_error("uploadFeedIcon", e);
|
2010-01-14 09:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function uploadFeedIcon() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var file = $("icon_file");
|
|
|
|
|
|
|
|
if (file.value.length == 0) {
|
|
|
|
alert(__("Please select an image file to upload."));
|
|
|
|
} else {
|
2010-01-14 10:47:28 +01:00
|
|
|
if (confirm(__("Upload new icon for this feed?"))) {
|
|
|
|
notify_progress("Uploading, please wait...", true);
|
|
|
|
return true;
|
|
|
|
}
|
2010-01-14 09:28:57 +01:00
|
|
|
}
|
|
|
|
|
2010-01-14 10:47:28 +01:00
|
|
|
return false;
|
|
|
|
|
2010-01-14 09:28:57 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("uploadFeedIcon", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-03 14:06:24 +01:00
|
|
|
function addLabel() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var caption = prompt(__("Please enter label caption:"), "");
|
|
|
|
|
|
|
|
if (caption != undefined) {
|
|
|
|
|
|
|
|
if (caption == "") {
|
|
|
|
alert(__("Can't create label: missing caption."));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var query = "?op=pref-labels&subop=add&caption=" +
|
|
|
|
param_escape(caption);
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
if (inPreferences()) active_tab = "labelConfig";
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
if (inPreferences()) {
|
|
|
|
infobox_submit_callback2(transport);
|
|
|
|
} else {
|
|
|
|
updateFeedList();
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("addLabel", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-03 14:54:17 +01:00
|
|
|
function quickAddFeed() {
|
|
|
|
displayDlg('quickAddFeed', '',
|
|
|
|
function () {$('feed_url').focus();});
|
|
|
|
}
|
|
|
|
|
|
|
|
function quickAddFilter() {
|
|
|
|
displayDlg('quickAddFilter', '',
|
|
|
|
function () {document.forms['filter_add_form'].reg_exp.focus();});
|
|
|
|
}
|
2010-02-15 13:16:53 +01:00
|
|
|
|
|
|
|
function unsubscribeFeed(feed_id, title) {
|
|
|
|
|
|
|
|
var msg = __("Unsubscribe from %s?").replace("%s", title);
|
|
|
|
|
|
|
|
if (title == undefined || confirm(msg)) {
|
|
|
|
notify_progress("Removing feed...");
|
|
|
|
|
|
|
|
var query = "?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id;
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
|
|
|
|
closeInfoBox();
|
|
|
|
|
|
|
|
if (inPreferences()) {
|
|
|
|
updateFeedList();
|
|
|
|
} else {
|
|
|
|
dlg_frefresh_callback(transport, feed_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|