1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 05:35:55 +00:00

rename google reader import plugin; fix owner_uid being 0

This commit is contained in:
Andrew Dolgov
2013-03-28 19:37:34 +04:00
parent 250b2e10cb
commit 93e79595bd
2 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,53 @@
function starredImportComplete(iframe) {
try {
if (!iframe.contentDocument.body.innerHTML) return false;
Element.show(iframe);
notify('');
if (dijit.byId('starredImportDlg'))
dijit.byId('starredImportDlg').destroyRecursive();
var content = iframe.contentDocument.body.innerHTML;
if (content) Element.hide(iframe);
dialog = new dijit.Dialog({
id: "starredImportDlg",
title: __("OPML Import"),
style: "width: 600px",
onCancel: function() {
Element.hide(iframe);
this.hide();
},
execute: function() {
Element.hide(iframe);
this.hide();
},
content: content});
dialog.show();
} catch (e) {
exception_error("starredImportComplete", e);
}
}
function starredImport() {
var starred_file = $("starred_file");
if (starred_file.value.length == 0) {
alert(__("Please choose a file first."));
return false;
} else {
notify_progress("Importing, please wait...", true);
Element.show("starred_upload_iframe");
return true;
}
}