blob: a79da073aa4804532b9b15e69f3bb3e04cfbeca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Components.utils.import("resource:///modules/FeedUtils.jsm");
/* Feed account standalone wizard functions */
var FeedAccountWizard = {
accountName: "",
accountSetupPageInit: function() {
this.accountSetupPageValidate();
},
accountSetupPageValidate: function() {
this.accountName = document.getElementById("prettyName").value.trim();
document.documentElement.canAdvance = this.accountName;
},
accountSetupPageUnload: function() {
return;
},
donePageInit: function() {
document.getElementById("account.name.text").value = this.accountName;
},
onCancel: function() {
return true;
},
onFinish: function() {
let account = FeedUtils.createRssAccount(this.accountName);
if ("gFolderTreeView" in window.opener.top)
// Opened from 3pane File->New or Appmenu New Message, or
// Account Central link.
window.opener.top.gFolderTreeView.selectFolder(account.incomingServer.rootMsgFolder);
else if ("selectServer" in window.opener)
// Opened from Account Settings.
window.opener.selectServer(account.incomingServer);
window.close();
}
}
|