1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:25:56 +00:00

rework OPML import process

This commit is contained in:
Andrew Dolgov
2010-11-21 18:01:14 +03:00
parent 9fe80bcdad
commit e121848048
4 changed files with 44 additions and 36 deletions

View File

@@ -782,6 +782,33 @@ function piggie(enable) {
}
}
function opmlImportComplete(iframe) {
try {
if (!iframe.contentDocument.body.innerHTML) return false;
notify('');
if (dijit.byId('opmlImportDlg'))
dijit.byId('opmlImportDlg').destroyRecursive();
var content = iframe.contentDocument.body.innerHTML;
dialog = new dijit.Dialog({
id: "opmlImportDlg",
title: __("OPML Import"),
style: "width: 600px",
onCancel: function() {
updateFeedList();
},
content: content});
dialog.show();
} catch (e) {
exception_error("opmlImportComplete", e);
}
}
function opmlImport() {
var opml_file = $("opml_file");
@@ -1512,22 +1539,6 @@ function activatePrefProfile() {
return false;
}
function opmlImportDone() {
closeInfoBox();
updateFeedList();
}
function opmlImportHandler(iframe) {
try {
var tmp = new Object();
tmp.responseText = iframe.document.body.innerHTML;
notify('');
infobox_callback2(tmp);
} catch (e) {
exception_error("opml_import_handler", e);
}
}
function clearFeedAccessKeys() {
var ok = confirm(__("This will invalidate all previously generated feed URLs. Continue?"));