mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
420 lines
13 KiB
JavaScript
420 lines
13 KiB
JavaScript
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Peter Annema <disttsc@bart.nl>
|
|
*/
|
|
|
|
var gJVMMgr = Components.classes['@mozilla.org/oji/jvm-mgr;1']
|
|
.getService(Components.interfaces.nsIJVMManager)
|
|
|
|
function toNavigator()
|
|
{
|
|
CycleWindow('navigator:browser', getBrowserURL());
|
|
}
|
|
|
|
// Set up a lame hack to avoid opening two bookmarks.
|
|
// Could otherwise happen with two Ctrl-B's in a row.
|
|
var gDisableHistory = false;
|
|
function enableHistory() {
|
|
gDisableHistory = false;
|
|
}
|
|
|
|
function toHistory()
|
|
{
|
|
// Use a single sidebar history dialog
|
|
|
|
var cwindowManager = Components.classes['@mozilla.org/rdf/datasource;1?name=window-mediator'].getService();
|
|
var iwindowManager = Components.interfaces.nsIWindowMediator;
|
|
var windowManager = cwindowManager.QueryInterface(iwindowManager);
|
|
|
|
var historyWindow = windowManager.getMostRecentWindow('history:manager');
|
|
|
|
if (historyWindow) {
|
|
//debug("Reuse existing history window");
|
|
historyWindow.focus();
|
|
} else {
|
|
//debug("Open a new history dialog");
|
|
|
|
if (true == gDisableHistory) {
|
|
//debug("Recently opened one. Wait a little bit.");
|
|
return;
|
|
}
|
|
gDisableHistory = true;
|
|
|
|
window.open( "chrome://communicator/content/history/history.xul", "_blank", "chrome,menubar,resizable,scrollbars" );
|
|
setTimeout(enableHistory, 2000);
|
|
}
|
|
|
|
}
|
|
|
|
function toJavaScriptConsole()
|
|
{
|
|
toOpenWindowByType("global:console", "chrome://global/content/console.xul");
|
|
}
|
|
|
|
function javaItemEnabling()
|
|
{
|
|
var enabled = gJVMMgr.JavaEnabled();
|
|
var element = document.getElementById("java");
|
|
if (enabled)
|
|
element.removeAttribute("disabled");
|
|
else
|
|
element.setAttribute("disabled", "true");
|
|
}
|
|
|
|
function toJavaConsole()
|
|
{
|
|
gJVMMgr.ShowJavaConsole();
|
|
}
|
|
|
|
function toOpenWindowByType( inType, uri )
|
|
{
|
|
var windowManager = Components.classes['@mozilla.org/rdf/datasource;1?name=window-mediator'].getService();
|
|
|
|
var windowManagerInterface = windowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
|
|
|
|
var topWindow = windowManagerInterface.getMostRecentWindow( inType );
|
|
|
|
if ( topWindow )
|
|
topWindow.focus();
|
|
else
|
|
window.open(uri, "_blank", "chrome,menubar,toolbar,resizable,scrollbars");
|
|
}
|
|
|
|
|
|
function OpenBrowserWindow()
|
|
{
|
|
dump("In OpenBrowserWindw()...\n");
|
|
var charsetArg = new String();
|
|
var handler = Components.classes['@mozilla.org/commandlinehandler/general-startup;1?type=browser'];
|
|
handler = handler.getService();
|
|
handler = handler.QueryInterface(Components.interfaces.nsICmdLineHandler);
|
|
var startpage = handler.defaultArgs;
|
|
var url = handler.chromeUrlForTask;
|
|
var wintype = document.firstChild.getAttribute('windowtype');
|
|
|
|
// if and only if the current window is a browser window and it has a document with a character
|
|
// set, then extract the current charset menu setting from the current document and use it to
|
|
// initialize the new browser window...
|
|
if (window && (wintype == "navigator:browser") && window._content && window._content.document)
|
|
{
|
|
var DocCharset = window._content.document.characterSet;
|
|
charsetArg = "charset="+DocCharset;
|
|
dump("*** Current document charset: " + DocCharset + "\n");
|
|
|
|
//we should "inherit" the charset menu setting in a new window
|
|
window.openDialog(url, "_blank", "chrome,all,dialog=no", startpage, charsetArg);
|
|
}
|
|
else // forget about the charset information.
|
|
{
|
|
window.openDialog(url, "_blank", "chrome,all,dialog=no", startpage);
|
|
}
|
|
}
|
|
|
|
function newWindowOfType( aType )
|
|
{
|
|
switch (aType) {
|
|
case "navigator:browser":
|
|
OpenBrowserWindow();
|
|
break;
|
|
case "composer:html":
|
|
NewEditorWindow();
|
|
break;
|
|
default:
|
|
dump( "Unsupported type of window: " + aType + "\n");
|
|
break;
|
|
}
|
|
}
|
|
|
|
function CycleWindow( aType, aChromeURL )
|
|
{
|
|
var windowManager = Components.classes['@mozilla.org/rdf/datasource;1?name=window-mediator'].getService();
|
|
var windowManagerInterface = windowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
|
|
|
|
var topWindowOfType = windowManagerInterface.getMostRecentWindow( aType );
|
|
var topWindow = windowManagerInterface.getMostRecentWindow( null );
|
|
|
|
if ( topWindowOfType == null )
|
|
newWindowOfType( aType );
|
|
else if ( topWindowOfType != topWindow )
|
|
topWindowOfType.focus();
|
|
else {
|
|
var enumerator = windowManagerInterface.getEnumerator( aType );
|
|
var firstWindow = windowManagerInterface.convertISupportsToDOMWindow ( enumerator.getNext() );
|
|
var iWindow = firstWindow; // ;-)
|
|
while ( iWindow != topWindow && enumerator.hasMoreElements() )
|
|
iWindow = windowManagerInterface.convertISupportsToDOMWindow ( enumerator.getNext() );
|
|
|
|
var desiredWindow = firstWindow;
|
|
if ( enumerator.hasMoreElements() )
|
|
desiredWindow = windowManagerInterface.convertISupportsToDOMWindow ( enumerator.getNext() );
|
|
if ( desiredWindow == topWindow ) // Only one window, open a new one
|
|
newWindowOfType( aType );
|
|
else
|
|
desiredWindow.focus();
|
|
}
|
|
}
|
|
|
|
function toEditor()
|
|
{
|
|
CycleWindow('composer:html', 'chrome://editor/content/editor.xul');
|
|
}
|
|
|
|
function ShowWindowFromResource( node )
|
|
{
|
|
var windowManager = Components.classes['@mozilla.org/rdf/datasource;1?name=window-mediator'].getService();
|
|
dump("got window Manager \n");
|
|
var windowManagerInterface = windowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
|
|
dump("got interface \n");
|
|
|
|
var desiredWindow = null;
|
|
var url = node.getAttribute('id');
|
|
dump( url +" finding \n" );
|
|
desiredWindow = windowManagerInterface.getWindowForResource( url );
|
|
dump( "got window \n");
|
|
if ( desiredWindow )
|
|
{
|
|
dump("focusing \n");
|
|
desiredWindow.focus();
|
|
}
|
|
}
|
|
|
|
function OpenTaskURL( inURL )
|
|
{
|
|
dump("loading "+inURL+"\n");
|
|
|
|
window.open( inURL );
|
|
}
|
|
|
|
function ShowUpdateFromResource( node )
|
|
{
|
|
var url = node.getAttribute('url');
|
|
dump( url +" finding \n" );
|
|
// hack until I get a new interface on xpiflash to do a
|
|
// look up on the name/url pair.
|
|
OpenTaskURL( "http://www.mozilla.org/binaries.html");
|
|
}
|
|
/**
|
|
* WALLET submenu
|
|
*/
|
|
function HideWallet() {
|
|
var element;
|
|
element = document.getElementById("wallet");
|
|
element.setAttribute("style","display: none;" );
|
|
element.setAttribute("disabled","true" );
|
|
}
|
|
|
|
function HideImage() {
|
|
var element;
|
|
element = document.getElementById("image");
|
|
element.setAttribute("style","display: none;" );
|
|
element.setAttribute("disabled","true" );
|
|
}
|
|
|
|
function HideEncryptOrObscure() {
|
|
var elementOn, elementOff;
|
|
try {
|
|
if (this.pref.GetBoolPref("wallet.crypto")) {
|
|
elementOn = document.getElementById("obscure");
|
|
elementOff = document.getElementById("encrypt");
|
|
} else {
|
|
elementOn = document.getElementById("encrypt");
|
|
elementOff = document.getElementById("obscure");
|
|
}
|
|
elementOn.setAttribute("disabled","false");
|
|
elementOff.setAttribute("disabled","true");
|
|
|
|
}
|
|
catch(e) {
|
|
var encrypt = document.getElementById("encrypt");
|
|
if(encrypt)
|
|
encrypt.setAttribute("disabled", "true");
|
|
|
|
var obscure = document.getElementById("obscure");
|
|
if(obscure)
|
|
obscure.setAttribute("disabled", "true");
|
|
dump("wallet.crypto pref is missing from all.js\n");
|
|
}
|
|
|
|
}
|
|
|
|
function CheckForWalletAndImage()
|
|
{
|
|
// remove either encrypt or obscure depending on pref setting
|
|
HideEncryptOrObscure();
|
|
|
|
// remove wallet functions if not in browser
|
|
try {
|
|
if (!appCore) {
|
|
HideWallet();
|
|
}
|
|
} catch(e) {
|
|
HideWallet();
|
|
}
|
|
|
|
// remove wallet functions (unless overruled by the "wallet.enabled" pref)
|
|
try {
|
|
if (!this.pref.GetBoolPref("wallet.enabled")) {
|
|
HideWallet();
|
|
}
|
|
} catch(e) {
|
|
dump("wallet.enabled pref is missing from all.js\n");
|
|
}
|
|
|
|
// remove image functions (unless overruled by the "imageblocker.enabled" pref)
|
|
try {
|
|
if (!this.pref.GetBoolPref("imageblocker.enabled")) {
|
|
HideImage();
|
|
}
|
|
} catch(e) {
|
|
HideImage();
|
|
dump("imageblocker.enabled pref is missing from all.js\n");
|
|
}
|
|
|
|
}
|
|
|
|
// perform a wallet action
|
|
function WalletAction( action )
|
|
{
|
|
var strings = document.getElementById("personalManagers");
|
|
if (action == "password" || action == "expire" || action == "clear") {
|
|
wallet = Components.classes['@mozilla.org/wallet/wallet-service;1'];
|
|
wallet = wallet.getService();
|
|
wallet = wallet.QueryInterface(Components.interfaces.nsIWalletService);
|
|
|
|
if (action == "password") {
|
|
if (!wallet.WALLET_ChangePassword()) {
|
|
window.alert(strings.getAttribute("PasswordNotChanged"));
|
|
}
|
|
} else if (action == "expire") {
|
|
if (wallet.WALLET_ExpirePassword()) {
|
|
window.alert(strings.getAttribute("PasswordExpired"));
|
|
} else {
|
|
window.alert(strings.getAttribute("PasswordNotExpired"));
|
|
}
|
|
} else if (action == "clear") {
|
|
if (window.confirm(strings.getAttribute("AllDataWillBeCleared"))) {
|
|
wallet.WALLET_DeleteAll();
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (action == "encrypt" || action == "obscure") {
|
|
wallet = Components.classes['@mozilla.org/wallet/wallet-service;1'];
|
|
wallet = wallet.getService();
|
|
wallet = wallet.QueryInterface(Components.interfaces.nsIWalletService);
|
|
wallet.WALLET_InitReencryptCallback(window._content);
|
|
if (action == "encrypt") {
|
|
this.pref.SetBoolPref("wallet.crypto", true);
|
|
} else if (action == "obscure") {
|
|
this.pref.SetBoolPref("wallet.crypto", false);
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (action == "cookieAllow" || action == "cookieBlock" ||
|
|
action == "imageAllow" || action == "imageBlock") {
|
|
|
|
var cookieViewer =
|
|
Components.classes["@mozilla.org/cookieviewer/cookieviewer-world;1"]
|
|
.createInstance(Components.interfaces["nsICookieViewer"]);
|
|
|
|
COOKIEPERMISSION = 0;
|
|
IMAGEPERMISSION = 1;
|
|
|
|
var element;
|
|
if (action == "cookieAllow") {
|
|
cookieViewer.AddPermission(window._content, true, COOKIEPERMISSION);
|
|
element = document.getElementById("AllowCookies");
|
|
alert(element.getAttribute("msg"));
|
|
} else if (action == "cookieBlock") {
|
|
cookieViewer.AddPermission(window._content, false, COOKIEPERMISSION);
|
|
element = document.getElementById("BlockCookies");
|
|
alert(element.getAttribute("msg"));
|
|
} else if (action == "imageAllow") {
|
|
cookieViewer.AddPermission(window._content, true, IMAGEPERMISSION);
|
|
element = document.getElementById("AllowImages");
|
|
alert(element.getAttribute("msg"));
|
|
} else if (action == "imageBlock") {
|
|
cookieViewer.AddPermission(window._content, false, IMAGEPERMISSION);
|
|
element = document.getElementById("BlockImages");
|
|
alert(element.getAttribute("msg"));
|
|
}
|
|
return;
|
|
}
|
|
|
|
var walletService = Components.classes["@mozilla.org/wallet/wallet-service;1"].getService(Components.interfaces.nsIWalletService);
|
|
|
|
switch( action ) {
|
|
case "safefill":
|
|
walletPreview(window._content);
|
|
break;
|
|
// case "password":
|
|
// walletService.WALLET_ChangePassword();
|
|
// break;
|
|
case "quickfill":
|
|
walletService.WALLET_Prefill(true, window._content);
|
|
break;
|
|
case "capture":
|
|
default:
|
|
status = walletService.WALLET_RequestToCapture(window._content);
|
|
break;
|
|
}
|
|
}
|
|
|
|
// display a Wallet Dialog
|
|
function WalletDialog( which )
|
|
{
|
|
switch( which ) {
|
|
case "signon":
|
|
window.openDialog("chrome://communicator/content/wallet/SignonViewer.xul","SSViewer","modal=yes,chrome,resizable=yes","S");
|
|
break;
|
|
case "cookie":
|
|
window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","CookieViewer","modal=yes,chrome,resizable=yes",0);
|
|
break;
|
|
case "image":
|
|
window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","CookieViewer","modal=yes,chrome,resizable=yes",2);
|
|
break;
|
|
case "samples":
|
|
window._content.location.href = 'chrome://communicator/locale/wallet/index.html';
|
|
break;
|
|
// case "interview":
|
|
// window._content.location.href = 'chrome://communicator/locale/wallet/interview.html';
|
|
// break;
|
|
case "walletsites":
|
|
window.openDialog("chrome://communicator/content/wallet/SignonViewer.xul","SSViewer","modal=yes,chrome,resizable=no","W");
|
|
break;
|
|
case "tutorial":
|
|
window._content.location.href =
|
|
this.pref.getLocalizedUnicharPref("wallet.TutorialFromMenu");
|
|
break;
|
|
case "wallet":
|
|
default:
|
|
window.openDialog(
|
|
"chrome://communicator/content/wallet/WalletViewer.xul",
|
|
"WalletViewer",
|
|
"chrome,titlebar,modal=yes,resizable=yes");
|
|
break;
|
|
}
|
|
}
|
|
|
|
|