From 5a1031a648f3d019fe970881252032319c6e0029 Mon Sep 17 00:00:00 2001 From: "chanial%noos.fr" Date: Tue, 14 Oct 2003 22:36:58 +0000 Subject: [PATCH] Bug 221597: remove comm.jar references in openLocation.xul --- browser/base/content/openLocation.js | 27 ++++++++------------- browser/base/content/openLocation.xul | 21 ++++++---------- browser/base/locale/openLocation.properties | 1 - 3 files changed, 17 insertions(+), 32 deletions(-) diff --git a/browser/base/content/openLocation.js b/browser/base/content/openLocation.js index 378ab9ac7b7..26b1c06644e 100644 --- a/browser/base/content/openLocation.js +++ b/browser/base/content/openLocation.js @@ -34,16 +34,16 @@ try { function onLoad() { - dialog.input = document.getElementById("dialog.input"); - dialog.open = document.documentElement.getButton("accept"); - dialog.openAppList = document.getElementById("openAppList"); - dialog.openTopWindow = document.getElementById("currentWindow"); - dialog.bundle = document.getElementById("openLocationBundle"); + dialog.input = document.getElementById("dialog.input"); + dialog.open = document.documentElement.getButton("accept"); + dialog.openWhereList = document.getElementById("openWhereList"); + dialog.openTopWindow = document.getElementById("currentWindow"); + dialog.bundle = document.getElementById("openLocationBundle"); if ("arguments" in window && window.arguments.length >= 1) browser = window.arguments[0]; - dialog.openAppList.selectedItem = dialog.openTopWindow; + dialog.openWhereList.selectedItem = dialog.openTopWindow; // change OK button text to 'open' dialog.open.label = dialog.bundle.getString("openButtonLabel"); @@ -51,9 +51,9 @@ function onLoad() if (pref) { try { var value = pref.getIntPref("general.open_location.last_window_choice"); - var element = dialog.openAppList.getElementsByAttribute("value", value)[0]; + var element = dialog.openWhereList.getElementsByAttribute("value", value)[0]; if (element) - dialog.openAppList.selectedItem = element; + dialog.openWhereList.selectedItem = element; dialog.input.value = pref.getComplexValue("general.open_location.last_url", Components.interfaces.nsISupportsString).data; } @@ -80,7 +80,7 @@ function open() url = dialog.input.value; try { - switch (dialog.openAppList.value) { + switch (dialog.openWhereList.value) { case "0": browser.loadURI(url); break; @@ -104,7 +104,7 @@ function open() str.data = dialog.input.value; pref.setComplexValue("general.open_location.last_url", Components.interfaces.nsISupportsString, str); - pref.setIntPref("general.open_location.last_window_choice", dialog.openAppList.value); + pref.setIntPref("general.open_location.last_window_choice", dialog.openWhereList.value); } // Delay closing slightly to avoid timing bug on Linux. @@ -124,13 +124,6 @@ function onChooseFile() try { var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker); fp.init(window, dialog.bundle.getString("chooseFileDialogTitle"), nsIFilePicker.modeOpen); - if (dialog.openAppList.value == "2") { - // When loading into Composer, direct user to prefer HTML files and text files, - // so we call separately to control the order of the filter list - fp.appendFilters(nsIFilePicker.filterHTML | nsIFilePicker.filterText); - fp.appendFilters(nsIFilePicker.filterText); - fp.appendFilters(nsIFilePicker.filterAll); - } else { fp.appendFilters(nsIFilePicker.filterHTML | nsIFilePicker.filterText | nsIFilePicker.filterAll | nsIFilePicker.filterImages | nsIFilePicker.filterXML); diff --git a/browser/base/content/openLocation.xul b/browser/base/content/openLocation.xul index 9f89406d965..9a8658d147c 100644 --- a/browser/base/content/openLocation.xul +++ b/browser/base/content/openLocation.xul @@ -22,14 +22,10 @@ # Ben Goodger # Michael Lowe # - - - %brandDTD; - - %openDialogDTD; -]> + + + -