ttrss/prefs.js

312 lines
5.9 KiB
JavaScript
Raw Normal View History

2005-08-22 03:17:12 +02:00
/*
This program is Copyright (c) 2003-2005 Andrew Dolgov <cthulhoo@gmail.com>
Licensed under GPL v.2 or (at your preference) any later version.
*/
var xmlhttp = false;
2005-08-26 08:09:12 +02:00
var active_feed = false;
2005-08-22 03:17:12 +02:00
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript gives us Conditional compilation, we can cope with old IE versions.
// and security blocked creation of the objects.
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
function feedlist_callback() {
var container = document.getElementById('feeds');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
2005-08-26 08:09:12 +02:00
if (active_feed) {
var row = document.getElementById("FEEDR-" + active_feed);
if (row) {
if (!row.className.match("Selected")) {
row.className = row.className + "Selected";
}
}
var checkbox = document.getElementById("FRCHK-" + active_feed);
if (checkbox) {
checkbox.checked = true;
}
}
2005-08-22 03:17:12 +02:00
}
}
2005-08-22 07:38:07 +02:00
function notify_callback() {
var container = document.getElementById('notify');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
}
}
2005-08-22 07:38:07 +02:00
function updateFeedList() {
2005-08-22 03:17:12 +02:00
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 03:17:12 +02:00
document.getElementById("feeds").innerHTML = "Loading feeds, please wait...";
xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
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", "");
}
}
}
2005-08-22 05:20:00 +02:00
function addFeed() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 06:56:40 +02:00
var link = document.getElementById("fadd_link");
2005-08-22 07:23:49 +02:00
if (link.value.length == 0) {
2005-08-23 13:38:56 +02:00
notify("Missing feed URL.");
2005-08-22 06:56:40 +02:00
} else {
notify("Adding feed...");
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&link=" +
param_escape(link.value), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
link.value = "";
}
}
function editFeed(feed) {
// notify("Editing feed...");
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 06:56:40 +02:00
2005-08-26 08:09:12 +02:00
active_feed = feed;
2005-08-22 06:56:40 +02:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
param_escape(feed), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
2005-08-22 07:23:49 +02:00
function getSelectedFeeds() {
2005-08-22 06:56:40 +02:00
var content = document.getElementById("prefFeedList");
var sel_rows = new Array();
for (i = 0; i < content.rows.length; i++) {
if (content.rows[i].className.match("Selected")) {
var row_id = content.rows[i].id.replace("FEEDR-", "");
sel_rows.push(row_id);
}
}
2005-08-22 07:23:49 +02:00
return sel_rows;
}
function readSelectedFeeds() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 07:23:49 +02:00
var sel_rows = getSelectedFeeds();
if (sel_rows.length > 0) {
notify("Marking selected feeds as read...");
2005-08-22 07:38:07 +02:00
xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=unread&ids="+
2005-08-22 07:23:49 +02:00
param_escape(sel_rows.toString()), true);
2005-08-22 07:38:07 +02:00
xmlhttp.onreadystatechange=notify_callback;
2005-08-22 07:23:49 +02:00
xmlhttp.send(null);
} else {
2005-08-23 13:38:56 +02:00
notify("Please select some feeds first.");
2005-08-22 07:23:49 +02:00
}
}
function unreadSelectedFeeds() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 07:23:49 +02:00
var sel_rows = getSelectedFeeds();
if (sel_rows.length > 0) {
notify("Marking selected feeds as unread...");
2005-08-22 07:38:07 +02:00
xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=unread&ids="+
2005-08-22 07:23:49 +02:00
param_escape(sel_rows.toString()), true);
2005-08-22 07:38:07 +02:00
xmlhttp.onreadystatechange=notify_callback;
2005-08-22 07:23:49 +02:00
xmlhttp.send(null);
} else {
2005-08-23 13:38:56 +02:00
notify("Please select some feeds first.");
2005-08-22 07:23:49 +02:00
}
}
function removeSelectedFeeds() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 07:23:49 +02:00
var sel_rows = getSelectedFeeds();
2005-08-22 06:56:40 +02:00
if (sel_rows.length > 0) {
notify("Removing selected feeds...");
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
param_escape(sel_rows.toString()), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
2005-08-22 05:20:00 +02:00
} else {
2005-08-22 06:56:40 +02:00
2005-08-23 13:38:56 +02:00
notify("Please select some feeds first.");
2005-08-22 06:56:40 +02:00
2005-08-22 05:20:00 +02:00
}
}
2005-08-22 03:17:12 +02:00
function feedEditCancel() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-26 08:09:12 +02:00
active_feed = false;
notify("Operation cancelled.");
xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
function feedEditSave(feed) {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
notify("Saving feed.");
var link = document.getElementById("fedit_link").value;
var title = document.getElementById("fedit_title").value;
if (link.length == 0) {
notify("Feed link cannot be blank.");
return;
}
if (title.length == 0) {
notify("Feed title cannot be blank.");
return;
}
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editSave&id=" +
feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) ,true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
function editSelectedFeed() {
var rows = getSelectedFeeds();
if (rows.length == 0) {
notify("No feeds are selected.");
return;
}
if (rows.length > 1) {
notify("Please select one feed.");
return;
}
editFeed(rows[0]);
}
2005-08-25 08:57:51 +02:00
function localPiggieFunction(enable) {
if (enable) {
piggie.style.display = "block";
seq = "";
notify("I loveded it!!!");
} else {
piggie.style.display = "none";
notify("");
}
}
2005-08-22 03:17:12 +02:00
function init() {
2005-08-25 17:26:33 +02:00
// IE kludge
2005-08-25 17:27:27 +02:00
if (!xmlhttp) {
2005-08-25 17:26:33 +02:00
document.getElementById("prefContent").innerHTML =
"<b>Fatal error:</b> This program needs XmlHttpRequest " +
"to function properly. Your browser doesn't seem to support it.";
return;
}
2005-08-22 07:38:07 +02:00
updateFeedList();
document.onkeydown = hotkey_handler;
2005-08-22 05:26:07 +02:00
notify("");
2005-08-22 03:17:12 +02:00
}