2018-11-29 18:03:55 +00:00
|
|
|
/* global dijit, __ */
|
|
|
|
|
2018-12-01 15:08:09 +00:00
|
|
|
const App = {
|
|
|
|
init: function() {
|
|
|
|
window.onerror = function (message, filename, lineno, colno, error) {
|
|
|
|
report_error(message, filename, lineno, colno, error);
|
|
|
|
};
|
|
|
|
|
|
|
|
require(["dojo/_base/kernel",
|
|
|
|
"dojo/ready",
|
|
|
|
"dojo/parser",
|
|
|
|
"dojo/_base/loader",
|
|
|
|
"dojo/_base/html",
|
|
|
|
"dijit/ColorPalette",
|
|
|
|
"dijit/Dialog",
|
|
|
|
"dijit/form/Button",
|
|
|
|
"dijit/form/CheckBox",
|
|
|
|
"dijit/form/DropDownButton",
|
|
|
|
"dijit/form/FilteringSelect",
|
|
|
|
"dijit/form/MultiSelect",
|
|
|
|
"dijit/form/Form",
|
|
|
|
"dijit/form/RadioButton",
|
|
|
|
"dijit/form/ComboButton",
|
|
|
|
"dijit/form/Select",
|
|
|
|
"dijit/form/SimpleTextarea",
|
|
|
|
"dijit/form/TextBox",
|
|
|
|
"dijit/form/ValidationTextBox",
|
|
|
|
"dijit/InlineEditBox",
|
|
|
|
"dijit/layout/AccordionContainer",
|
|
|
|
"dijit/layout/AccordionPane",
|
|
|
|
"dijit/layout/BorderContainer",
|
|
|
|
"dijit/layout/ContentPane",
|
|
|
|
"dijit/layout/TabContainer",
|
|
|
|
"dijit/Menu",
|
|
|
|
"dijit/ProgressBar",
|
|
|
|
"dijit/Toolbar",
|
|
|
|
"dijit/Tree",
|
|
|
|
"dijit/tree/dndSource",
|
|
|
|
"dojo/data/ItemFileWriteStore",
|
|
|
|
"lib/CheckBoxStoreModel",
|
|
|
|
"lib/CheckBoxTree",
|
|
|
|
"fox/PrefFeedStore",
|
|
|
|
"fox/PrefFilterStore",
|
|
|
|
"fox/PrefFeedTree",
|
|
|
|
"fox/PrefFilterTree",
|
|
|
|
"fox/PrefLabelTree"], function (dojo, ready, parser) {
|
|
|
|
|
|
|
|
ready(function () {
|
|
|
|
try {
|
|
|
|
parser.parse();
|
|
|
|
|
2018-12-01 15:25:32 +00:00
|
|
|
Utils.setLoadingProgress(50);
|
2018-12-01 15:08:09 +00:00
|
|
|
|
|
|
|
const clientTzOffset = new Date().getTimezoneOffset() * 60;
|
|
|
|
const params = {op: "rpc", method: "sanityCheck", clientTzOffset: clientTzOffset};
|
|
|
|
|
|
|
|
xhrPost("backend.php", params, (transport) => {
|
|
|
|
Utils.backendSanityCallback(transport);
|
|
|
|
});
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
initSecondStage: function() {
|
2018-12-01 18:51:00 +00:00
|
|
|
document.onkeydown = () => { App.hotkeyHandler(event) };
|
2018-12-01 15:25:32 +00:00
|
|
|
Utils.setLoadingProgress(50);
|
2018-12-01 15:08:09 +00:00
|
|
|
notify("");
|
|
|
|
|
2018-12-02 07:33:58 +00:00
|
|
|
let tab = Utils.urlParam('tab');
|
2018-12-01 15:08:09 +00:00
|
|
|
|
|
|
|
if (tab) {
|
|
|
|
tab = dijit.byId(tab + "Tab");
|
2018-12-02 08:25:32 +00:00
|
|
|
if (tab) {
|
|
|
|
dijit.byId("pref-tabs").selectChild(tab);
|
|
|
|
|
|
|
|
switch (Utils.urlParam('method')) {
|
|
|
|
case "editfeed":
|
|
|
|
window.setTimeout(function () {
|
|
|
|
CommonDialogs.editFeed(Utils.urlParam('methodparam'))
|
|
|
|
}, 100);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.warn("initSecondStage, unknown method:", Utils.urlParam("method"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let tab = localStorage.getItem("ttrss:prefs-tab");
|
2018-12-01 15:08:09 +00:00
|
|
|
|
2018-12-02 08:25:32 +00:00
|
|
|
if (tab) {
|
|
|
|
tab = dijit.byId(tab);
|
|
|
|
if (tab) {
|
|
|
|
dijit.byId("pref-tabs").selectChild(tab);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-01 15:08:09 +00:00
|
|
|
|
2018-12-02 08:25:32 +00:00
|
|
|
dojo.connect(dijit.byId("pref-tabs"), "selectChild", function (elem) {
|
|
|
|
localStorage.setItem("ttrss:prefs-tab", elem.id);
|
|
|
|
});
|
2018-12-01 15:08:09 +00:00
|
|
|
|
2018-12-01 15:10:30 +00:00
|
|
|
},
|
|
|
|
hotkeyHandler: function (event) {
|
|
|
|
if (event.target.nodeName == "INPUT" || event.target.nodeName == "TEXTAREA") return;
|
|
|
|
|
2018-12-01 15:25:32 +00:00
|
|
|
const action_name = Utils.keyeventToAction(event);
|
2018-12-01 15:10:30 +00:00
|
|
|
|
|
|
|
if (action_name) {
|
|
|
|
switch (action_name) {
|
|
|
|
case "feed_subscribe":
|
2018-12-01 15:25:32 +00:00
|
|
|
CommonDialogs.quickAddFeed();
|
2018-12-01 15:10:30 +00:00
|
|
|
return false;
|
|
|
|
case "create_label":
|
2018-12-01 19:19:20 +00:00
|
|
|
CommonDialogs.addLabel();
|
2018-12-01 15:10:30 +00:00
|
|
|
return false;
|
|
|
|
case "create_filter":
|
2018-12-01 19:39:29 +00:00
|
|
|
Filters.quickAddFilter();
|
2018-12-01 15:10:30 +00:00
|
|
|
return false;
|
|
|
|
case "help_dialog":
|
|
|
|
Utils.helpDialog("main");
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
console.log("unhandled action: " + action_name + "; keycode: " + event.which);
|
|
|
|
}
|
|
|
|
}
|
2018-12-01 18:51:00 +00:00
|
|
|
},
|
|
|
|
isPrefs: function() {
|
|
|
|
return true;
|
2018-12-01 15:08:09 +00:00
|
|
|
}
|
2018-12-01 18:51:00 +00:00
|
|
|
};
|
2010-11-11 15:59:21 +00:00
|
|
|
|
2018-12-02 13:29:00 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2018-12-02 12:30:07 +00:00
|
|
|
const Prefs = {
|
2018-12-02 13:17:36 +00:00
|
|
|
clearFeedAccessKeys: function() {
|
|
|
|
if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) {
|
|
|
|
notify_progress("Clearing URLs...");
|
|
|
|
|
|
|
|
xhrPost("backend.php", {op: "pref-feeds", method: "clearKeys"}, () => {
|
|
|
|
notify_info("Generated URLs cleared.");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
2018-12-02 13:29:00 +00:00
|
|
|
updateEventLog: function() {
|
|
|
|
xhrPost("backend.php", { op: "pref-system" }, (transport) => {
|
|
|
|
dijit.byId('systemConfigTab').attr('content', transport.responseText);
|
|
|
|
notify("");
|
|
|
|
});
|
|
|
|
},
|
2018-12-02 12:30:07 +00:00
|
|
|
clearEventLog: function() {
|
|
|
|
if (confirm(__("Clear event log?"))) {
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
|
|
|
xhrPost("backend.php", {op: "pref-system", method: "clearLog"}, () => {
|
2018-12-02 13:29:00 +00:00
|
|
|
this.updateEventLog();
|
2018-12-02 12:30:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
editProfiles: function() {
|
|
|
|
|
|
|
|
if (dijit.byId("profileEditDlg"))
|
|
|
|
dijit.byId("profileEditDlg").destroyRecursive();
|
|
|
|
|
|
|
|
const query = "backend.php?op=pref-prefs&method=editPrefProfiles";
|
|
|
|
|
2018-12-02 13:29:00 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2018-12-02 12:30:07 +00:00
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "profileEditDlg",
|
|
|
|
title: __("Settings Profiles"),
|
|
|
|
style: "width: 600px",
|
|
|
|
getSelectedProfiles: function () {
|
|
|
|
return Tables.getSelected("prefFeedProfileList");
|
|
|
|
},
|
|
|
|
removeSelected: function () {
|
|
|
|
const sel_rows = this.getSelectedProfiles();
|
|
|
|
|
|
|
|
if (sel_rows.length > 0) {
|
|
|
|
if (confirm(__("Remove selected profiles? Active and default profiles will not be removed."))) {
|
|
|
|
notify_progress("Removing selected profiles...", true);
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "remprofiles",
|
|
|
|
ids: sel_rows.toString()
|
|
|
|
};
|
|
|
|
|
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
notify('');
|
|
|
|
Prefs.editProfiles();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No profiles selected."));
|
2018-12-02 12:30:07 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
activateProfile: function () {
|
|
|
|
const sel_rows = this.getSelectedProfiles();
|
|
|
|
|
|
|
|
if (sel_rows.length == 1) {
|
|
|
|
if (confirm(__("Activate selected profile?"))) {
|
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
|
|
|
xhrPost("backend.php", {op: "rpc", method: "setprofile", id: sel_rows.toString()}, () => {
|
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
alert(__("Please choose a profile to activate."));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
addProfile: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
notify_progress("Creating profile...", true);
|
|
|
|
|
|
|
|
const query = {op: "rpc", method: "addprofile", title: dialog.attr('value').newprofile};
|
|
|
|
|
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
notify('');
|
|
|
|
Prefs.editProfiles();
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
customizeCSS: function() {
|
|
|
|
const query = "backend.php?op=pref-prefs&method=customizeCSS";
|
|
|
|
|
|
|
|
if (dijit.byId("cssEditDlg"))
|
|
|
|
dijit.byId("cssEditDlg").destroyRecursive();
|
|
|
|
|
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "cssEditDlg",
|
|
|
|
title: __("Customize stylesheet"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function () {
|
|
|
|
notify_progress('Saving data...', true);
|
|
|
|
|
|
|
|
xhrPost("backend.php", this.attr('value'), () => {
|
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
confirmReset: function() {
|
|
|
|
if (confirm(__("Reset to defaults?"))) {
|
|
|
|
xhrPost("backend.php", {op: "pref-prefs", method: "resetconfig"}, (transport) => {
|
|
|
|
Prefs.refresh();
|
|
|
|
notify_info(transport.responseText);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
clearPluginData: function(name) {
|
|
|
|
if (confirm(__("Clear stored data for this plugin?"))) {
|
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
|
|
|
xhrPost("backend.php", {op: "pref-prefs", method: "clearplugindata", name: name}, () => {
|
|
|
|
Prefs.refresh();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
refresh: function() {
|
|
|
|
xhrPost("backend.php", { op: "pref-prefs" }, (transport) => {
|
|
|
|
dijit.byId('genConfigTab').attr('content', transport.responseText);
|
|
|
|
notify("");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-02 13:29:00 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2018-12-02 13:17:36 +00:00
|
|
|
const Users = {
|
|
|
|
reload: function(sort) {
|
|
|
|
const user_search = $("user_search");
|
|
|
|
const search = user_search ? user_search.value : "";
|
2009-01-24 07:17:00 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
xhrPost("backend.php", { op: "pref-users", sort: sort, search: search }, (transport) => {
|
|
|
|
dijit.byId('userConfigTab').attr('content', transport.responseText);
|
|
|
|
notify("");
|
|
|
|
});
|
|
|
|
},
|
|
|
|
add: function() {
|
|
|
|
const login = prompt(__("Please enter username:"), "");
|
2011-04-20 09:32:40 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (login) {
|
|
|
|
notify_progress("Adding user...");
|
2011-04-20 09:32:40 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
xhrPost("backend.php", {op: "pref-users", method: "add", login: login}, (transport) => {
|
|
|
|
alert(transport.responseText);
|
|
|
|
Users.reload();
|
|
|
|
});
|
2005-08-22 01:17:12 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
edit: function(id) {
|
|
|
|
const query = "backend.php?op=pref-users&method=edit&id=" +
|
|
|
|
param_escape(id);
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (dijit.byId("userEditDlg"))
|
|
|
|
dijit.byId("userEditDlg").destroyRecursive();
|
2005-11-18 09:00:18 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "userEditDlg",
|
|
|
|
title: __("User Editor"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
notify_progress("Saving data...", true);
|
2005-11-18 09:00:18 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
xhrPost("backend.php", dojo.formToObject("user_edit_form"), (transport) => {
|
|
|
|
dialog.hide();
|
|
|
|
Users.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
2005-11-18 09:00:18 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
resetSelected: function() {
|
|
|
|
const rows = this.getSelection();
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (rows.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No users selected."));
|
2018-12-02 13:17:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (rows.length > 1) {
|
|
|
|
alert(__("Please select one user."));
|
|
|
|
return;
|
|
|
|
}
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (confirm(__("Reset password of selected user?"))) {
|
|
|
|
notify_progress("Resetting password for selected user...");
|
2005-11-18 09:00:18 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
const id = rows[0];
|
2005-11-18 09:00:18 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
xhrPost("backend.php", {op: "pref-users", method: "resetPass", id: id}, (transport) => {
|
|
|
|
notify('');
|
|
|
|
alert(transport.responseText);
|
|
|
|
});
|
2005-11-18 09:00:18 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
removeSelected: function() {
|
|
|
|
const sel_rows = this.getSelection();
|
2013-06-11 08:04:29 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (sel_rows.length > 0) {
|
|
|
|
if (confirm(__("Remove selected users? Neither default admin nor your account will be removed."))) {
|
|
|
|
notify_progress("Removing selected users...");
|
2013-06-11 08:04:29 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
const query = {
|
|
|
|
op: "pref-users", method: "remove",
|
|
|
|
ids: sel_rows.toString()
|
|
|
|
};
|
2013-06-11 08:04:29 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
this.reload();
|
2018-11-30 12:07:44 +00:00
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
} else {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No users selected."));
|
2005-12-11 07:56:57 +00:00
|
|
|
}
|
2018-12-02 13:17:36 +00:00
|
|
|
},
|
|
|
|
editSelected: function() {
|
|
|
|
const rows = this.getSelection();
|
2005-11-18 09:00:18 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (rows.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No users selected."));
|
2018-12-02 13:17:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
if (rows.length > 1) {
|
|
|
|
alert(__("Please select one user."));
|
|
|
|
return;
|
|
|
|
}
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-12-02 13:17:36 +00:00
|
|
|
this.edit(rows[0]);
|
|
|
|
},
|
|
|
|
getSelection :function() {
|
|
|
|
return Tables.getSelected("prefUserList");
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2018-12-02 13:17:36 +00:00
|
|
|
};
|
2005-11-19 19:06:42 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
function opmlImportComplete(iframe) {
|
|
|
|
if (!iframe.contentDocument.body.innerHTML) return false;
|
|
|
|
|
|
|
|
Element.show(iframe);
|
|
|
|
|
|
|
|
notify('');
|
|
|
|
|
|
|
|
if (dijit.byId('opmlImportDlg'))
|
|
|
|
dijit.byId('opmlImportDlg').destroyRecursive();
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const content = iframe.contentDocument.body.innerHTML;
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const dialog = new dijit.Dialog({
|
2017-03-04 11:34:44 +00:00
|
|
|
id: "opmlImportDlg",
|
|
|
|
title: __("OPML Import"),
|
|
|
|
style: "width: 600px",
|
|
|
|
onCancel: function () {
|
2018-11-30 12:07:44 +00:00
|
|
|
window.location.reload();
|
2017-03-04 11:34:44 +00:00
|
|
|
},
|
|
|
|
execute: function () {
|
2017-07-02 17:26:18 +00:00
|
|
|
window.location.reload();
|
2017-03-04 11:34:44 +00:00
|
|
|
},
|
|
|
|
content: content
|
|
|
|
});
|
2010-11-21 15:01:14 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
dialog.show();
|
2010-11-21 15:01:14 +00:00
|
|
|
}
|
|
|
|
|
2010-01-13 20:59:02 +00:00
|
|
|
function opmlImport() {
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const opml_file = $("opml_file");
|
2005-09-02 11:49:47 +00:00
|
|
|
|
|
|
|
if (opml_file.value.length == 0) {
|
2010-11-21 10:13:34 +00:00
|
|
|
alert(__("Please choose an OPML file first."));
|
2005-09-02 11:49:47 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2010-11-07 16:41:28 +00:00
|
|
|
notify_progress("Importing, please wait...", true);
|
2011-12-27 19:10:04 +00:00
|
|
|
|
|
|
|
Element.show("upload_iframe");
|
|
|
|
|
2005-09-02 11:49:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-10 00:04:57 +00:00
|
|
|
function opmlRegenKey() {
|
2018-11-30 10:00:26 +00:00
|
|
|
if (confirm(__("Replace current OPML publishing address with a new one?"))) {
|
2017-03-04 11:34:44 +00:00
|
|
|
notify_progress("Trying to change address...", true);
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-11-30 10:00:26 +00:00
|
|
|
xhrJson("backend.php", { op: "pref-feeds", method: "regenOPMLKey" }, (reply) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
if (reply) {
|
|
|
|
const new_link = reply.link;
|
|
|
|
const e = $('pub_opml_url');
|
2010-11-29 13:44:50 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (new_link) {
|
|
|
|
e.href = new_link;
|
|
|
|
e.innerHTML = new_link;
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
new Effect.Highlight(e);
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
notify('');
|
2011-03-18 11:15:06 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
} else {
|
|
|
|
notify_error("Could not change feed URL.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2010-04-10 00:04:57 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2007-10-18 04:51:29 +00:00
|
|
|
|
2011-12-28 05:46:54 +00:00
|
|
|
function gotoExportOpml(filename, settings) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const tmp = settings ? 1 : 0;
|
2012-08-15 11:47:13 +00:00
|
|
|
document.location.href = "backend.php?op=opml&method=export&filename=" + filename + "&settings=" + tmp;
|
2011-12-28 05:46:54 +00:00
|
|
|
}
|