1999-07-01 22:56:04 +00:00
|
|
|
/* -*- 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.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var appCore = null;
|
1999-09-02 04:46:30 +00:00
|
|
|
var useOldAppCore = true; // Set this to false to use new replacement for the browser app core.
|
1999-07-01 22:56:04 +00:00
|
|
|
var prefwindow = null;
|
|
|
|
var appCoreName = "";
|
|
|
|
var defaultStatus = "default status text";
|
1999-07-14 00:03:57 +00:00
|
|
|
var explicitURL = false;
|
1999-07-01 22:56:04 +00:00
|
|
|
|
1999-09-02 23:16:37 +00:00
|
|
|
function BeginDragPersonalToolbar ( event )
|
|
|
|
{
|
|
|
|
//XXX we rely on a capturer to already have determined which item the mouse was over
|
|
|
|
//XXX and have set an attribute.
|
|
|
|
|
|
|
|
// if the click is on the toolbar proper, ignore it. We only care about clicks on
|
|
|
|
// items.
|
|
|
|
var toolbar = document.getElementById("PersonalToolbar");
|
|
|
|
if ( event.target == toolbar )
|
|
|
|
return true; // continue propagating the event
|
|
|
|
|
|
|
|
var dragStarted = false;
|
|
|
|
var dragService = Components.classes["component://netscape/widget/dragservice"].getService();
|
|
|
|
if ( dragService ) dragService = dragService.QueryInterface(Components.interfaces.nsIDragService);
|
|
|
|
if ( dragService ) {
|
|
|
|
var trans = Components.classes["component://netscape/widget/transferable"].createInstance();
|
|
|
|
if ( trans ) trans = trans.QueryInterface(Components.interfaces.nsITransferable);
|
|
|
|
if ( trans ) {
|
|
|
|
trans.addDataFlavor("moz/toolbaritem");
|
|
|
|
var genData = Components.classes["component://netscape/supports-wstring"].createInstance();
|
|
|
|
if ( genData ) data = genData.QueryInterface(Components.interfaces.nsISupportsWString);
|
|
|
|
if ( data ) {
|
|
|
|
|
|
|
|
//XXX replace with the real data when rdf is hooked up.
|
|
|
|
data.data = "toolbar item, baby!";
|
|
|
|
|
|
|
|
trans.setTransferData ( "moz/toolbaritem", genData, 38 ); // double byte data (19*2)
|
|
|
|
var transArray = Components.classes["component://netscape/supports-array"].createInstance();
|
|
|
|
if ( transArray ) transArray = transArray.QueryInterface(Components.interfaces.nsISupportsArray);
|
|
|
|
if ( transArray ) {
|
|
|
|
// put it into the transferable as an |nsISupports|
|
|
|
|
var genTrans = trans.QueryInterface(Components.interfaces.nsISupports);
|
|
|
|
transArray.AppendElement(genTrans);
|
|
|
|
var nsIDragService = Components.interfaces.nsIDragService;
|
|
|
|
dragService.invokeDragSession ( transArray, null, nsIDragService.DRAGDROP_ACTION_COPY +
|
|
|
|
nsIDragService.DRAGDROP_ACTION_MOVE );
|
|
|
|
dragStarted = true;
|
|
|
|
}
|
|
|
|
} // if data object
|
|
|
|
} // if transferable
|
|
|
|
} // if drag service
|
|
|
|
|
|
|
|
return !dragStarted; // don't propagate the event if a drag has begun
|
|
|
|
|
|
|
|
} // BeginDragPersonalToolbar
|
|
|
|
|
|
|
|
|
|
|
|
function DropPersonalToolbar ( event )
|
|
|
|
{
|
|
|
|
var dropAccepted = false;
|
|
|
|
|
|
|
|
var dragService = Components.classes["component://netscape/widget/dragservice"].getService();
|
|
|
|
if ( dragService ) dragService = dragService.QueryInterface(Components.interfaces.nsIDragService);
|
|
|
|
if ( dragService ) {
|
|
|
|
var dragSession = dragService.getCurrentSession();
|
|
|
|
if ( dragSession ) {
|
|
|
|
var trans = Components.classes["component://netscape/widget/transferable"].createInstance();
|
|
|
|
if ( trans ) trans = trans.QueryInterface(Components.interfaces.nsITransferable);
|
|
|
|
if ( trans ) {
|
|
|
|
trans.addDataFlavor("moz/toolbaritem");
|
|
|
|
for ( var i = 0; i < dragSession.numDropItems; ++i ) {
|
|
|
|
dragSession.getData ( trans, i );
|
|
|
|
var dataObj = new Object();
|
|
|
|
var bestFlavor = new Object();
|
|
|
|
var len = new Object();
|
|
|
|
trans.getAnyTransferData ( bestFlavor, dataObj, len );
|
|
|
|
if ( dataObj ) dataObj = dataObj.value.QueryInterface(Components.interfaces.nsISupportsWString);
|
|
|
|
if ( dataObj ) {
|
|
|
|
|
|
|
|
//XXX do something real here! remember len is in bytes, not chars
|
|
|
|
dataObj.data[len.value / 2] = null;
|
|
|
|
dump ( "!!! got data len = " + len.value + " |" + dataObj.data + "|\n" );
|
|
|
|
|
|
|
|
dragSession.canDrop = true;
|
|
|
|
var dropAccepted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // foreach drag item
|
|
|
|
|
|
|
|
} // if transferable
|
|
|
|
} // if dragsession
|
|
|
|
} // if dragservice
|
|
|
|
|
|
|
|
return !dropAccepted; // don't propagate the event if a drag was accepted
|
|
|
|
|
|
|
|
} // DropPersonalToolbar
|
|
|
|
|
|
|
|
|
1999-08-05 20:15:33 +00:00
|
|
|
function UpdateHistory(event)
|
|
|
|
{
|
|
|
|
// This is registered as a capturing "load" event handler. When a
|
|
|
|
// document load completes in the content window, we'll be
|
|
|
|
// notified here. This allows us to update the global history and
|
|
|
|
// set the document's title information.
|
|
|
|
|
|
|
|
//dump("UpdateHistory: content's location is '" + window.content.location.href + "',\n");
|
|
|
|
//dump(" title is '" + window.content.document.title + "'\n");
|
|
|
|
|
|
|
|
var history = Components.classes["component://netscape/browser/global-history"].getService();
|
1999-08-06 20:49:16 +00:00
|
|
|
if (history) history = history.QueryInterface(Components.interfaces.nsIGlobalHistory);
|
1999-08-09 22:19:08 +00:00
|
|
|
try {
|
|
|
|
if (history) history.SetPageTitle(window.content.location.href, window.content.document.title);
|
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
dump("failed to set the page title.\n");
|
|
|
|
}
|
1999-08-05 20:15:33 +00:00
|
|
|
}
|
|
|
|
|
1999-08-06 20:49:16 +00:00
|
|
|
function UpdateBookmarksLastVisitiedDate(event)
|
|
|
|
{
|
|
|
|
// if the URL is bookmarked, update its "Last Visited" date
|
|
|
|
var bmks = Components.classes["component://netscape/browser/bookmarks-service"].getService();
|
|
|
|
if (bmks) bmks = bmks.QueryInterface(Components.interfaces.nsIBookmarksService);
|
|
|
|
if (bmks) bmks.UpdateBookmarkLastVisitedDate(document.getElementById('urlbar').value);
|
|
|
|
}
|
|
|
|
|
1999-09-02 04:46:30 +00:00
|
|
|
function createBrowserInstance() {
|
|
|
|
appCore = Components
|
|
|
|
.classes[ "component://netscape/appshell/component/browser/instance" ]
|
|
|
|
.createInstance( Components.interfaces.nsIBrowserInstance );
|
|
|
|
if ( !appCore ) {
|
|
|
|
dump( "Error creating browser instance (window)\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function Startup()
|
|
|
|
{
|
1999-09-02 04:46:30 +00:00
|
|
|
if ( useOldAppCore ) {
|
|
|
|
dump("Doing Startup...\n");
|
|
|
|
dump("Creating browser app core\n");
|
|
|
|
appCore = new BrowserAppCore();
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("BrowserAppCore has been created.\n");
|
|
|
|
appCoreName = "BrowserAppCore." + ( new Date() ).getTime().toString();
|
|
|
|
appCore.Init( appCoreName );
|
|
|
|
appCore.setWebShellWindow(window);
|
|
|
|
appCore.setToolbarWindow(window);
|
|
|
|
tryToSetContentWindow();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dump("Doing navigator.js Startup...\n");
|
|
|
|
createBrowserInstance();
|
|
|
|
if (appCore != null) {
|
|
|
|
appCore.setWebShellWindow(window);
|
|
|
|
appCore.setToolbarWindow(window);
|
|
|
|
tryToSetContentWindow();
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
1999-08-05 20:15:33 +00:00
|
|
|
|
|
|
|
// Add a capturing event listener to the content window so we'll
|
|
|
|
// be notified when onloads complete.
|
|
|
|
window.addEventListener("load", UpdateHistory, true);
|
1999-08-06 20:49:16 +00:00
|
|
|
window.addEventListener("load", UpdateBookmarksLastVisitiedDate, true);
|
1999-09-02 04:46:30 +00:00
|
|
|
|
|
|
|
// Check for window.arguments[0]. If present, go to that url.
|
|
|
|
if ( window.arguments && window.arguments[0] ) {
|
|
|
|
dump( "Got new-fashioned arg:" + window.arguments[0] + "\n" );
|
|
|
|
// Load it using yet another psuedo-onload handler.
|
|
|
|
onLoadViaOpenDialog();
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
1999-07-14 00:03:57 +00:00
|
|
|
function Shutdown() {
|
|
|
|
// Close the app core.
|
|
|
|
if ( appCore ) {
|
|
|
|
appCore.close();
|
1999-09-02 04:46:30 +00:00
|
|
|
if ( useOldAppCore ) {
|
|
|
|
// Remove app core from app core manager.
|
|
|
|
XPAppCoresManager.Remove( appCore );
|
|
|
|
}
|
1999-07-14 00:03:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function onLoadWithArgs() {
|
|
|
|
// See if Startup has been run.
|
|
|
|
if ( appCore ) {
|
|
|
|
// See if load in progress (loading default page).
|
|
|
|
if ( document.getElementById("Browser:Throbber").getAttribute("busy") == "true" ) {
|
|
|
|
dump( "Stopping load of default initial page\n" );
|
|
|
|
appCore.stop();
|
|
|
|
}
|
|
|
|
dump( "Loading page specified on ShowWindowWithArgs\n" );
|
|
|
|
appCore.loadInitialPage();
|
|
|
|
} else {
|
|
|
|
// onLoad handler timing is not correct yet.
|
|
|
|
dump( "onLoadWithArgs not needed yet\n" );
|
1999-07-14 00:03:57 +00:00
|
|
|
// Remember that we want this url.
|
|
|
|
explicitURL = true;
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-09-02 04:46:30 +00:00
|
|
|
function onLoadViaOpenDialog() {
|
|
|
|
// See if load in progress (loading default page).
|
|
|
|
if ( document.getElementById("Browser:Throbber").getAttribute("busy") == "true" ) {
|
|
|
|
dump( "Stopping load of default initial page\n" );
|
|
|
|
appCore.stop();
|
|
|
|
}
|
|
|
|
dump( "Loading page specified via openDialog\n" );
|
|
|
|
appCore.loadUrl( window.arguments[0] );
|
|
|
|
}
|
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function tryToSetContentWindow() {
|
1999-07-14 00:03:57 +00:00
|
|
|
if ( window.content ) {
|
1999-07-01 22:56:04 +00:00
|
|
|
dump("Setting content window\n");
|
1999-07-14 00:03:57 +00:00
|
|
|
appCore.setContentWindow( window.content );
|
1999-07-01 22:56:04 +00:00
|
|
|
// Have browser app core load appropriate initial page.
|
|
|
|
|
1999-07-14 00:03:57 +00:00
|
|
|
if ( !explicitURL ) {
|
|
|
|
var pref = Components.classes['component://netscape/preferences'];
|
|
|
|
|
|
|
|
// if all else fails, use trusty "about:blank" as the start page
|
|
|
|
var startpage = "about:blank";
|
|
|
|
if (pref) {
|
|
|
|
pref = pref.getService();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dump("failed to get component://netscape/preferences\n");
|
|
|
|
}
|
|
|
|
if (pref) {
|
|
|
|
pref = pref.QueryInterface(Components.interfaces.nsIPref);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dump("failed to get pref service\n");
|
|
|
|
}
|
|
|
|
if (pref) {
|
|
|
|
// from mozilla/modules/libpref/src/init/all.js
|
|
|
|
// 0 = blank
|
|
|
|
// 1 = home (browser.startup.homepage)
|
|
|
|
// 2 = last
|
1999-07-27 21:48:08 +00:00
|
|
|
choice = 1;
|
|
|
|
try {
|
|
|
|
choice = pref.GetIntPref("browser.startup.page");
|
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
dump("failed to get the browser.startup.page pref\n");
|
|
|
|
}
|
1999-07-14 00:03:57 +00:00
|
|
|
dump("browser.startup.page = " + choice + "\n");
|
|
|
|
switch (choice) {
|
|
|
|
case 0:
|
|
|
|
startpage = "about:blank";
|
|
|
|
break;
|
|
|
|
case 1:
|
1999-07-27 21:48:08 +00:00
|
|
|
try {
|
|
|
|
startpage = pref.CopyCharPref("browser.startup.homepage");
|
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
dump("failed to get the browser.startup.homepage pref\n");
|
|
|
|
startpage = "about:blank";
|
|
|
|
}
|
1999-07-14 00:03:57 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
var history = Components.classes['component://netscape/browser/global-history'];
|
|
|
|
if (history) {
|
|
|
|
history = history.getService();
|
|
|
|
}
|
|
|
|
if (history) {
|
|
|
|
history = history.QueryInterface(Components.interfaces.nsIGlobalHistory);
|
|
|
|
}
|
|
|
|
if (history) {
|
|
|
|
startpage = history.GetLastPageVisted();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
startpage = "about:blank";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dump("failed to QI pref service\n");
|
|
|
|
}
|
|
|
|
dump("startpage = " + startpage + "\n");
|
|
|
|
document.getElementById("args").setAttribute("value", startpage);
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
appCore.loadInitialPage();
|
|
|
|
} else {
|
|
|
|
// Try again.
|
|
|
|
dump("Scheduling later attempt to set content window\n");
|
|
|
|
window.setTimeout( "tryToSetContentWindow()", 100 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-15 00:48:51 +00:00
|
|
|
function Translate(src, dest, engine)
|
1999-07-01 22:56:04 +00:00
|
|
|
{
|
|
|
|
var service = "http://levis.alis.com:8081";
|
|
|
|
service += "?AlisSourceLang=" + src;
|
|
|
|
service += "&AlisTargetLang=" + dest;
|
1999-07-15 00:48:51 +00:00
|
|
|
service += "&AlisMTEngine=" + engine;
|
1999-07-14 00:03:57 +00:00
|
|
|
service += "&AlisTargetURI=" + window.content.location.href;
|
|
|
|
window.content.location.href = service;
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function RefreshUrlbar()
|
|
|
|
{
|
|
|
|
//Refresh the urlbar bar
|
1999-07-14 00:03:57 +00:00
|
|
|
document.getElementById('urlbar').value = window.content.location.href;
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
1999-08-30 22:08:38 +00:00
|
|
|
function gotoHistoryIndex(index)
|
|
|
|
{
|
|
|
|
appCore.gotoHistoryIndex(index);
|
|
|
|
}
|
1999-07-14 00:03:57 +00:00
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function BrowserBack()
|
|
|
|
{
|
|
|
|
// Get a handle to the back-button
|
|
|
|
var bb = document.getElementById("canGoBack");
|
|
|
|
// If the button is disabled, don't bother calling in to Appcore
|
|
|
|
if ( (bb.getAttribute("disabled")) == "true" )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Going Back\n");
|
|
|
|
appCore.back();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-14 00:03:57 +00:00
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function BrowserForward()
|
|
|
|
{
|
|
|
|
// Get a handle to the back-button
|
|
|
|
var fb = document.getElementById("canGoForward");
|
|
|
|
// If the button is disabled, don't bother calling in to Appcore
|
|
|
|
if ( (fb.getAttribute("disabled")) == "true" )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Going Forward\n");
|
|
|
|
appCore.forward();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-14 00:03:57 +00:00
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function BrowserSetForward()
|
|
|
|
{
|
|
|
|
var forwardBElem = document.getElementById("canGoForward");
|
|
|
|
if (!forwardBElem) {
|
1999-07-14 00:03:57 +00:00
|
|
|
dump("Couldn't obtain handle to forward Broarcast element\n");
|
|
|
|
return;
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
|
|
|
var canForward = forwardBElem.getAttribute("disabled");
|
|
|
|
var fb = document.getElementById("forward-button");
|
|
|
|
|
|
|
|
if (!fb) {
|
1999-07-14 00:03:57 +00:00
|
|
|
dump("Could not obtain handle to forward button\n");
|
|
|
|
return;
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enable/Disable the Forward button
|
|
|
|
if (canForward == "true") {
|
|
|
|
fb.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fb.setAttribute("disabled", "");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable/Disable the Forward menu
|
|
|
|
var fm = document.getElementById("menuitem-forward");
|
|
|
|
if (!fm) {
|
|
|
|
dump("Couldn't obtain menu item Forward\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable/Disable the Forward Menuitem
|
|
|
|
if (canForward == "true") {
|
|
|
|
fm.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fm.setAttribute("disabled", "");
|
1999-07-14 00:03:57 +00:00
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserCanStop() {
|
|
|
|
var stop = document.getElementById("canStop");
|
|
|
|
if ( stop ) {
|
|
|
|
var stopDisabled = stop.getAttribute("disabled");
|
|
|
|
var stopButton = document.getElementById( "stop-button" );
|
|
|
|
if ( stopButton ) {
|
|
|
|
if ( stopDisabled == "true") {
|
|
|
|
stopButton.setAttribute( "disabled", "true" );
|
|
|
|
} else {
|
|
|
|
stopButton.setAttribute( "disabled", "" );
|
|
|
|
}
|
|
|
|
}
|
1999-07-14 00:03:57 +00:00
|
|
|
//Enable/disable the stop menu item
|
|
|
|
var stopMenu = document.getElementById( "menuitem-stop" );
|
|
|
|
if ( stopMenu ) {
|
|
|
|
if ( stopDisabled == "true") {
|
|
|
|
stopMenu.setAttribute( "disabled", "true" );
|
|
|
|
} else {
|
|
|
|
stopMenu.setAttribute( "disabled", "" );
|
|
|
|
}
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserStop() {
|
|
|
|
// Get a handle to the "canStop" broadcast id
|
|
|
|
var stopBElem = document.getElementById("canStop");
|
|
|
|
if (!stopBElem) {
|
|
|
|
dump("Couldn't obtain handle to stop Broadcast element\n");
|
|
|
|
return;
|
1999-07-14 00:03:57 +00:00
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
|
|
|
var canStop = stopBElem.getAttribute("disabled");
|
|
|
|
var sb = document.getElementById("stop-button");
|
|
|
|
|
|
|
|
if (!sb) {
|
1999-07-14 00:03:57 +00:00
|
|
|
dump("Could not obtain handle to stop button\n");
|
|
|
|
return;
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the stop button is currently disabled, just return
|
|
|
|
if ((sb.getAttribute("disabled")) == "true") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Stop button has just been pressed. Disable it.
|
|
|
|
sb.setAttribute("disabled", "true");
|
|
|
|
|
|
|
|
// Get a handle to the stop menu item.
|
|
|
|
var sm = document.getElementById("menuitem-stop");
|
|
|
|
if (!sm) {
|
|
|
|
dump("Couldn't obtain menu item Stop\n");
|
|
|
|
} else {
|
|
|
|
// Disable the stop menu-item.
|
|
|
|
sm.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
|
|
|
|
//Call in to BrowserAppcore to stop the current loading
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Going to Stop\n");
|
|
|
|
appCore.stop();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserSetBack()
|
|
|
|
{
|
|
|
|
var backBElem = document.getElementById("canGoBack");
|
|
|
|
if (!backBElem) {
|
1999-07-14 00:03:57 +00:00
|
|
|
dump("Couldn't obtain handle to back Broadcast element\n");
|
|
|
|
return;
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
|
|
|
var canBack = backBElem.getAttribute("disabled");
|
|
|
|
var bb = document.getElementById("back-button");
|
|
|
|
|
|
|
|
if (!bb) {
|
1999-07-14 00:03:57 +00:00
|
|
|
dump("Could not obtain handle to back button\n");
|
|
|
|
return;
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enable/Disable the Back button
|
|
|
|
if (canBack == "true") {
|
|
|
|
bb.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bb.setAttribute("disabled", "");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable/Disable the Back menu
|
|
|
|
var bm = document.getElementById("menuitem-back");
|
|
|
|
if (!bm) {
|
|
|
|
dump("Couldn't obtain menu item Back\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable/Disable the Back Menuitem
|
|
|
|
if (canBack == "true") {
|
|
|
|
bm.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bm.setAttribute("disabled", "");
|
1999-07-14 00:03:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function BrowserSetReload() {
|
|
|
|
var reload = document.getElementById("canReload");
|
|
|
|
if ( reload ) {
|
|
|
|
var reloadDisabled = reload.getAttribute("disabled");
|
|
|
|
//Enable/disable the reload button
|
|
|
|
var reloadButton = document.getElementById( "reload-button" );
|
|
|
|
|
|
|
|
if ( reloadButton ) {
|
|
|
|
if ( reloadDisabled == "true") {
|
|
|
|
reloadButton.setAttribute( "disabled", "true" );
|
|
|
|
} else {
|
|
|
|
reloadButton.setAttribute( "disabled", "" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//Enable/disable the reload menu
|
|
|
|
var reloadMenu = document.getElementById("menuitem-reload");
|
|
|
|
if ( reloadMenu ) {
|
|
|
|
if ( reloadDisabled == "true") {
|
|
|
|
|
|
|
|
reloadMenu.setAttribute( "disabled", "true" );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
reloadMenu.setAttribute( "disabled", "" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserReallyReload(reloadType) {
|
|
|
|
// Get a handle to the "canReload" broadcast id
|
|
|
|
var reloadBElem = document.getElementById("canReload");
|
|
|
|
if (!reloadBElem) {
|
|
|
|
dump("Couldn't obtain handle to reload Broadcast element\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var canreload = reloadBElem.getAttribute("disabled");
|
|
|
|
var sb = document.getElementById("reload-button");
|
1999-07-01 22:56:04 +00:00
|
|
|
|
1999-07-14 00:03:57 +00:00
|
|
|
if (!sb) {
|
|
|
|
dump("Could not obtain handle to reload button\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the reload button is currently disabled, just return
|
|
|
|
if ((sb.getAttribute("disabled")) == "true") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//reload button has just been pressed. Disable it.
|
|
|
|
sb.setAttribute("disabled", "true");
|
|
|
|
|
|
|
|
// Get a handle to the reload menu item.
|
|
|
|
var sm = document.getElementById("menuitem-reload");
|
|
|
|
if (!sm) {
|
|
|
|
dump("Couldn't obtain menu item reload\n");
|
|
|
|
} else {
|
|
|
|
// Disable the reload menu-item.
|
|
|
|
|
|
|
|
sm.setAttribute("disabled", "true");
|
|
|
|
}
|
|
|
|
|
|
|
|
//Call in to BrowserAppcore to reload the current loading
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Going to reload\n");
|
|
|
|
appCore.reload(reloadType);
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserHome()
|
|
|
|
{
|
1999-07-14 00:03:57 +00:00
|
|
|
window.content.home();
|
1999-07-01 22:56:04 +00:00
|
|
|
RefreshUrlbar();
|
|
|
|
}
|
|
|
|
|
1999-08-25 01:30:17 +00:00
|
|
|
function OpenBookmarkURL(node, root)
|
1999-07-01 22:56:04 +00:00
|
|
|
{
|
|
|
|
if (node.getAttribute('container') == "true") {
|
|
|
|
return false;
|
|
|
|
}
|
1999-07-22 22:11:21 +00:00
|
|
|
|
|
|
|
var url = node.getAttribute('id');
|
|
|
|
try
|
|
|
|
{
|
1999-08-25 01:30:17 +00:00
|
|
|
var rootNode = document.getElementById(root);
|
|
|
|
var ds = null;
|
|
|
|
if (rootNode)
|
|
|
|
{
|
|
|
|
ds = rootNode.database;
|
|
|
|
}
|
1999-08-05 01:38:02 +00:00
|
|
|
// add support for IE favorites under Win32, and NetPositive URLs under BeOS
|
1999-08-25 01:30:17 +00:00
|
|
|
var rdf = Components.classes["component://netscape/rdf/rdf-service"].getService();
|
|
|
|
if (rdf) rdf = rdf.QueryInterface(Components.interfaces.nsIRDFService);
|
|
|
|
if (rdf)
|
1999-07-22 22:11:21 +00:00
|
|
|
{
|
1999-08-25 01:30:17 +00:00
|
|
|
if (ds)
|
1999-07-22 22:11:21 +00:00
|
|
|
{
|
1999-08-25 01:30:17 +00:00
|
|
|
var src = rdf.GetResource(url, true);
|
|
|
|
var prop = rdf.GetResource("http://home.netscape.com/NC-rdf#URL", true);
|
|
|
|
var target = ds.GetTarget(src, prop, true);
|
|
|
|
if (target) target = target.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
|
|
|
if (target) target = target.Value;
|
|
|
|
if (target) url = target;
|
|
|
|
|
1999-07-22 22:11:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(ex)
|
|
|
|
{
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
|
|
|
// Ignore "NC:" urls.
|
|
|
|
if (url.substring(0, 3) == "NC:") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
1999-07-14 00:03:57 +00:00
|
|
|
window.content.location.href = url;
|
1999-07-01 22:56:04 +00:00
|
|
|
RefreshUrlbar();
|
|
|
|
}
|
|
|
|
|
1999-08-19 20:00:43 +00:00
|
|
|
function OpenSearch(tabName, searchStr)
|
1999-08-05 23:09:42 +00:00
|
|
|
{
|
1999-08-19 20:00:43 +00:00
|
|
|
dump("OpenSearch searchStr: '" + searchStr + "'\n\n");
|
|
|
|
|
|
|
|
window.openDialog("resource:/res/samples/search.xul", "SearchWindow", "dialog=no,close,chrome,resizable", tabName, searchStr);
|
1999-08-05 23:09:42 +00:00
|
|
|
}
|
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function BrowserNewWindow()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Opening New Window\n");
|
|
|
|
appCore.newWindow();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserNewEditorWindow()
|
|
|
|
{
|
|
|
|
core = XPAppCoresManager.Find("toolkitCore");
|
|
|
|
if ( !core ) {
|
|
|
|
core = new ToolkitCore();
|
|
|
|
if ( core ) {
|
|
|
|
core.Init("toolkitCore");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( core ) {
|
1999-07-14 00:03:57 +00:00
|
|
|
core.ShowWindowWithArgs( "chrome://editor/content", window, "resource:/res/html/empty_doc.html" );
|
1999-07-01 22:56:04 +00:00
|
|
|
} else {
|
|
|
|
dump("Error; can't create toolkitCore\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-22 00:27:14 +00:00
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
|
|
|
|
function BrowserEditPage(url)
|
|
|
|
{
|
|
|
|
core = XPAppCoresManager.Find("toolkitCore");
|
|
|
|
if ( !core ) {
|
|
|
|
core = new ToolkitCore();
|
|
|
|
if ( core ) {
|
|
|
|
core.Init("toolkitCore");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( core ) {
|
|
|
|
core.ShowWindowWithArgs( "chrome://editor/content", window, url);
|
|
|
|
} else {
|
|
|
|
dump("Error; can't create toolkitCore\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserOpenWindow()
|
|
|
|
{
|
1999-08-20 23:17:12 +00:00
|
|
|
//opens a window where users can select a web location to open
|
1999-09-02 04:46:30 +00:00
|
|
|
window.openDialog( "chrome://navigator/content/openLocation.xul", null, "chrome", appCore );
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
1999-08-20 23:17:12 +00:00
|
|
|
|
|
|
|
function BrowserOpenFileWindow()
|
|
|
|
{
|
|
|
|
//opens an OS based file selector window
|
|
|
|
appCore.openWindow();
|
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
|
|
|
|
function OpenFile(url) {
|
|
|
|
// This is invoked from the browser app core.
|
|
|
|
core = XPAppCoresManager.Find("toolkitCore");
|
|
|
|
if ( !core ) {
|
|
|
|
core = new ToolkitCore();
|
|
|
|
if ( core ) {
|
|
|
|
core.Init("toolkitCore");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( core ) {
|
|
|
|
core.ShowWindowWithArgs( "chrome://navigator/content/navigator.xul", window, url );
|
|
|
|
} else {
|
|
|
|
dump("Error; can't create toolkitCore\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserCopy()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Copying\n");
|
|
|
|
appCore.copy();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function BrowserAddBookmark(url,title)
|
|
|
|
{
|
|
|
|
var bmks = Components.classes["component://netscape/browser/bookmarks-service"].getService();
|
|
|
|
bmks = bmks.QueryInterface(Components.interfaces.nsIBookmarksService);
|
|
|
|
bmks.AddBookmark(url, title);
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserEditBookmarks()
|
|
|
|
{
|
1999-08-11 22:27:57 +00:00
|
|
|
window.open("chrome://bookmarks/content/", "BookmarksWindow", "chrome,menubar,resizable,scrollbars");
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserPrintPreview()
|
|
|
|
{
|
|
|
|
// Borrowing this method to show how to
|
|
|
|
// dynamically change icons
|
|
|
|
dump("BrowserPrintPreview\n");
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Changing Icons\n");
|
|
|
|
appCore.printPreview();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserPrint()
|
|
|
|
{
|
|
|
|
// Borrowing this method to show how to
|
|
|
|
// dynamically change icons
|
|
|
|
if (appCore != null) {
|
|
|
|
appCore.print();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserSetDefaultCharacterSet(aCharset)
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
appCore.SetDocumentCharset(aCharset);
|
1999-07-14 00:03:57 +00:00
|
|
|
window.content.location.reload();
|
1999-07-01 22:56:04 +00:00
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserClose()
|
|
|
|
{
|
1999-09-02 04:46:30 +00:00
|
|
|
window.close();
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserExit()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Exiting\n");
|
|
|
|
appCore.exit();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-09-01 20:14:02 +00:00
|
|
|
function BrowserSelectAll() {
|
|
|
|
if (appCore != null) {
|
1999-09-02 04:46:30 +00:00
|
|
|
appCore.selectAll();
|
1999-09-01 20:14:02 +00:00
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function BrowserFind() {
|
|
|
|
if (appCore != null) {
|
|
|
|
appCore.find();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserFindAgain() {
|
|
|
|
if (appCore != null) {
|
|
|
|
appCore.findNext();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserLoadURL()
|
|
|
|
{
|
|
|
|
if (appCore == null)
|
|
|
|
{
|
|
|
|
dump("BrowserAppCore has not been initialized\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// rjc: added support for URL shortcuts (3/30/1999)
|
|
|
|
try {
|
|
|
|
var bmks = Components.classes["component://netscape/browser/bookmarks-service"].getService();
|
|
|
|
bmks = bmks.QueryInterface(Components.interfaces.nsIBookmarksService);
|
|
|
|
|
|
|
|
var shortcutURL = bmks.FindShortcut(document.getElementById('urlbar').value);
|
|
|
|
|
|
|
|
dump("FindShortcut: in='" + document.getElementById('urlbar').value + "' out='" + shortcutURL + "'\n");
|
|
|
|
|
|
|
|
if ((shortcutURL != null) && (shortcutURL != "")) {
|
|
|
|
document.getElementById('urlbar').value = shortcutURL;
|
|
|
|
}
|
1999-08-06 20:49:16 +00:00
|
|
|
}
|
1999-07-01 22:56:04 +00:00
|
|
|
catch (ex) {
|
|
|
|
// stifle any exceptions so we're sure to load the URL.
|
|
|
|
}
|
|
|
|
|
|
|
|
appCore.loadUrl(document.getElementById('urlbar').value);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function WalletEditor()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Wallet Editor\n");
|
|
|
|
appCore.walletEditor(window);
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function WalletSafeFillin()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Wallet Safe Fillin\n");
|
1999-07-14 00:03:57 +00:00
|
|
|
appCore.walletPreview(window, window.content);
|
1999-07-01 22:56:04 +00:00
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function WalletChangePassword()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Wallet Change Password\n");
|
|
|
|
appCore.walletChangePassword();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function WalletQuickFillin()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Wallet Quick Fillin\n");
|
1999-07-14 00:03:57 +00:00
|
|
|
appCore.walletQuickFillin(window.content);
|
1999-07-01 22:56:04 +00:00
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-08-24 00:48:16 +00:00
|
|
|
function WalletRequestToCapture()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Wallet Request To Capture\n");
|
|
|
|
appCore.walletRequestToCapture(window.content);
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function WalletSamples()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Wallet Samples\n");
|
|
|
|
appCore.walletSamples();
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function SignonViewer()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Signon Viewer\n");
|
|
|
|
appCore.signonViewer(window);
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function CookieViewer()
|
|
|
|
{
|
|
|
|
if (appCore != null) {
|
|
|
|
dump("Cookie Viewer\n");
|
|
|
|
appCore.cookieViewer(window);
|
|
|
|
} else {
|
|
|
|
dump("BrowserAppCore has not been created!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function OpenMessenger()
|
|
|
|
{
|
1999-08-07 02:51:03 +00:00
|
|
|
window.open("chrome://messenger/content/", "_new", "chrome,menubar,toolbar,resizable");
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function OpenAddressbook()
|
|
|
|
{
|
1999-08-07 02:51:03 +00:00
|
|
|
window.open("chrome://addressbook/content/", "_new", "chrome,menubar,toolbar,resizable");
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function MsgNewMessage()
|
|
|
|
{
|
|
|
|
var toolkitCore = XPAppCoresManager.Find("ToolkitCore");
|
|
|
|
if (!toolkitCore) {
|
|
|
|
toolkitCore = new ToolkitCore();
|
|
|
|
if (toolkitCore) {
|
|
|
|
toolkitCore.Init("ToolkitCore");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (toolkitCore) {
|
1999-07-14 00:03:57 +00:00
|
|
|
// We need to use ShowWindowWithArgs because message compose depend on callback
|
|
|
|
toolkitCore.ShowWindowWithArgs("chrome://messengercompose/content/", window, "");
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function DoPreferences()
|
|
|
|
{
|
|
|
|
if (!prefwindow)
|
|
|
|
{
|
|
|
|
prefwindow = Components.classes['component://netscape/prefwindow'].createInstance(Components.interfaces.nsIPrefWindow);
|
|
|
|
}
|
|
|
|
prefwindow.showWindow("navigator.js", window, "chrome://pref/content/pref-appearance.xul");
|
|
|
|
}
|
|
|
|
|
|
|
|
function BrowserViewSource()
|
|
|
|
{
|
1999-09-02 04:46:30 +00:00
|
|
|
if ( useOldAppCore ) {
|
|
|
|
var toolkitCore = XPAppCoresManager.Find("ToolkitCore");
|
|
|
|
if (!toolkitCore) {
|
|
|
|
toolkitCore = new ToolkitCore();
|
|
|
|
if (toolkitCore) {
|
|
|
|
toolkitCore.Init("ToolkitCore");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (toolkitCore) {
|
|
|
|
var url = window.content.location;
|
|
|
|
dump("Opening view of source for" + url + "\n");
|
|
|
|
toolkitCore.ShowWindowWithArgs("chrome://navigator/content/viewSource.xul", window, url);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
window.openDialog( "chrome://navigator/content/viewSource.xul", null, "all,dialog=no", window.content.location );
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-22 00:27:14 +00:00
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
var bindCount = 0;
|
|
|
|
function onStatus() {
|
|
|
|
var status = document.getElementById("Browser:Status");
|
|
|
|
if ( status ) {
|
|
|
|
var text = status.getAttribute("value");
|
|
|
|
if ( text == "" ) {
|
|
|
|
text = defaultStatus;
|
|
|
|
}
|
|
|
|
var statusText = document.getElementById("statusText");
|
|
|
|
if ( statusText ) {
|
|
|
|
statusText.setAttribute( "value", text );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dump("Can't find status broadcaster!\n");
|
|
|
|
}
|
|
|
|
}
|
1999-08-18 03:17:20 +00:00
|
|
|
|
|
|
|
function onProtocolClick()
|
|
|
|
{
|
|
|
|
//TODO: need to hookup to page info
|
|
|
|
var status = document.getElementById("Browser:Status");
|
|
|
|
if ( status ) {
|
|
|
|
//var msg = "Hey, don't touch me there!";
|
|
|
|
//status.setAttribute("value",msg);
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
}
|
1999-08-18 03:17:20 +00:00
|
|
|
function onProtocolChange()
|
|
|
|
{
|
|
|
|
var protocolIcon = document.getElementById("Browser:ProtocolIcon");
|
|
|
|
var uri = protocolIcon.getAttribute("uri");
|
|
|
|
var icon = document.getElementById("protocol-icon");
|
|
|
|
|
|
|
|
icon.setAttribute("src",uri);
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
1999-08-18 03:17:20 +00:00
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
function doTests() {
|
|
|
|
}
|
1999-08-18 03:17:20 +00:00
|
|
|
|
1999-07-01 22:56:04 +00:00
|
|
|
var startTime = 0;
|
|
|
|
function onProgress() {
|
|
|
|
var throbber = document.getElementById("Browser:Throbber");
|
|
|
|
var meter = document.getElementById("Browser:LoadingProgress");
|
|
|
|
if ( throbber && meter ) {
|
|
|
|
var busy = throbber.getAttribute("busy");
|
1999-07-14 00:03:57 +00:00
|
|
|
var wasBusy = meter.getAttribute("mode") == "undetermined" ? "true" : "false";
|
1999-07-01 22:56:04 +00:00
|
|
|
if ( busy == "true" ) {
|
1999-07-14 00:03:57 +00:00
|
|
|
if ( wasBusy == "false" ) {
|
|
|
|
// Remember when loading commenced.
|
|
|
|
startTime = (new Date()).getTime();
|
|
|
|
// Turn progress meter on.
|
|
|
|
meter.setAttribute("mode","undetermined");
|
|
|
|
}
|
|
|
|
// Update status bar.
|
|
|
|
} else if ( busy == "false" && wasBusy == "true" ) {
|
|
|
|
// Record page loading time.
|
1999-07-01 22:56:04 +00:00
|
|
|
var status = document.getElementById("Browser:Status");
|
|
|
|
if ( status ) {
|
|
|
|
var elapsed = ( (new Date()).getTime() - startTime ) / 1000;
|
|
|
|
var msg = "Document: Done (" + elapsed + " secs)";
|
|
|
|
dump( msg + "\n" );
|
|
|
|
status.setAttribute("value",msg);
|
|
|
|
defaultStatus = msg;
|
|
|
|
}
|
1999-07-14 00:03:57 +00:00
|
|
|
// Turn progress meter off.
|
|
|
|
meter.setAttribute("mode","normal");
|
1999-07-01 22:56:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function dumpProgress() {
|
|
|
|
var broadcaster = document.getElementById("Browser:LoadingProgress");
|
|
|
|
var meter = document.getElementById("meter");
|
|
|
|
dump( "bindCount=" + bindCount + "\n" );
|
|
|
|
dump( "broadcaster mode=" + broadcaster.getAttribute("mode") + "\n" );
|
|
|
|
dump( "broadcaster value=" + broadcaster.getAttribute("value") + "\n" );
|
|
|
|
dump( "meter mode=" + meter.getAttribute("mode") + "\n" );
|
|
|
|
dump( "meter value=" + meter.getAttribute("value") + "\n" );
|
|
|
|
}
|
|
|
|
|
1999-07-22 00:27:14 +00:00
|
|
|
|
|
|
|
|