зеркало из https://github.com/mozilla/pjs.git
Switch load handlers to setting document.title (as per bug 126903 setting the title attribute no longer works) b=261267 r=jst sr=shaver
This commit is contained in:
Родитель
24db6cc49e
Коммит
7bb2ca31b7
|
@ -234,7 +234,6 @@ nsHelperAppDialog.prototype = {
|
|||
prompt.firstChild.nodeValue = modified;
|
||||
|
||||
// Put file name in window title.
|
||||
var win = this.dialogElement( "nsHelperAppDlg" );
|
||||
var suggestedFileName = this.mLauncher.suggestedFileName;
|
||||
|
||||
// Some URIs do not implement nsIURL, so we can't just QI.
|
||||
|
@ -256,8 +255,8 @@ nsHelperAppDialog.prototype = {
|
|||
fname = suggestedFileName;
|
||||
|
||||
|
||||
this.mTitle = this.replaceInsert( win.getAttribute( "title" ), 1, fname);
|
||||
this.mDialog.title = this.mTitle;
|
||||
this.mTitle = this.replaceInsert( this.mDialog.document.title, 1, fname);
|
||||
this.mDialog.document.title = this.mTitle;
|
||||
|
||||
// Put content type, filename and location into intro.
|
||||
this.initIntro(url, fname);
|
||||
|
|
|
@ -41,7 +41,6 @@
|
|||
|
||||
//-------- global variables
|
||||
var helpBrowser;
|
||||
var helpWindow;
|
||||
var helpSearchPanel;
|
||||
var emptySearch;
|
||||
var emptySearchText
|
||||
|
@ -111,7 +110,6 @@ function displayTopic(topic) {
|
|||
// Initialize the Help window
|
||||
function init() {
|
||||
//cache panel references.
|
||||
helpWindow = document.getElementById("help");
|
||||
helpSearchPanel = document.getElementById("help-search-panel");
|
||||
helpTocPanel = document.getElementById("help-toc-panel");
|
||||
helpIndexPanel = document.getElementById("help-index-panel");
|
||||
|
@ -160,7 +158,7 @@ function loadHelpRDF() {
|
|||
log("Help file: " + helpFileURI + " was not found.");
|
||||
}
|
||||
try {
|
||||
helpWindow.setAttribute("title", getAttribute(helpFileDS, RDF_ROOT, NC_TITLE, ""));
|
||||
document.title = getAttribute(helpFileDS, RDF_ROOT, NC_TITLE, "");
|
||||
helpBaseURI = getAttribute(helpFileDS, RDF_ROOT, NC_BASE, helpBaseURI);
|
||||
defaultTopic = getAttribute(helpFileDS, RDF_ROOT, NC_DEFAULTTOPIC, "welcome");
|
||||
|
||||
|
|
|
@ -109,8 +109,7 @@ function Startup() {
|
|||
element = document.getElementById("cookiesTab");
|
||||
tabBox.selectedTab = element;
|
||||
} else if (dialogType == imageType) {
|
||||
element = document.getElementById("cookieviewer");
|
||||
element.setAttribute("title", cookieBundle.getString("imageTitle"));
|
||||
document.title = cookieBundle.getString("imageTitle");
|
||||
|
||||
element = document.getElementById("permissionsTab");
|
||||
element.label = cookieBundle.getString("tabBannedImages");
|
||||
|
@ -129,8 +128,7 @@ function Startup() {
|
|||
element = document.getElementById("btnSession");
|
||||
element.hidden = "true";
|
||||
} else {
|
||||
element = document.getElementById("cookieviewer");
|
||||
element.setAttribute("title", cookieBundle.getString("popupTitle"));
|
||||
document.title = cookieBundle.getString("popupTitle");
|
||||
|
||||
element = document.getElementById("permissionsTab");
|
||||
element.label = cookieBundle.getString("tabBannedPopups");
|
||||
|
|
|
@ -136,7 +136,7 @@ function Startup() {
|
|||
|
||||
// change title on window
|
||||
var wind = document.getElementById("signonviewer");
|
||||
wind.setAttribute("title", wind.getAttribute("alttitle"));
|
||||
document.title = wind.getAttribute("alttitle");
|
||||
|
||||
// set initial form-manager tab
|
||||
element = document.getElementById("nopreviewsTab");
|
||||
|
|
|
@ -99,10 +99,9 @@ function setWindowName()
|
|||
{
|
||||
return;
|
||||
}
|
||||
var windowReference = document.getElementById('deleteCertificate');
|
||||
var confirReference = document.getElementById('confirm');
|
||||
var impactReference = document.getElementById('impact');
|
||||
windowReference.setAttribute("title", title);
|
||||
document.title = title;
|
||||
|
||||
setText("confirm",confirm);
|
||||
|
||||
|
|
|
@ -89,14 +89,13 @@ function setWindowName()
|
|||
{
|
||||
// Get the cert from the cert database
|
||||
var certdb = Components.classes[nsX509CertDB].getService(nsIX509CertDB);
|
||||
var windowReference=document.getElementById('certDetails');
|
||||
var myName = self.name;
|
||||
bundle = srGetStrBundle("chrome://pippki/locale/pippki.properties");
|
||||
var cert;
|
||||
|
||||
var certDetails = bundle.GetStringFromName('certDetails');
|
||||
if (myName != "") {
|
||||
windowReference.setAttribute("title",certDetails+'"'+myName+'"');
|
||||
document.title = certDetails + '"' + myName + '"'; // XXX l10n?
|
||||
// Get the token
|
||||
// XXX ignore this for now. NSS will find the cert on a token
|
||||
// by "tokenname:certname", which is what we have.
|
||||
|
@ -110,8 +109,7 @@ function setWindowName()
|
|||
var pkiParams = window.arguments[0].QueryInterface(nsIPKIParamBlock);
|
||||
var isupport = pkiParams.getISupportAtIndex(1);
|
||||
cert = isupport.QueryInterface(nsIX509Cert);
|
||||
windowReference.setAttribute("title",
|
||||
certDetails+'"'+cert.windowTitle+'"');
|
||||
document.title = certDetails + '"' + cert.windowTitle + '"'; // XXX l10n?
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -135,7 +135,7 @@ function Startup()
|
|||
document.getElementById("showaddgroup").hidden = true;
|
||||
document.getElementById("destinationSeparator").hidden = true;
|
||||
document.getElementById("nameseparator").hidden = true;
|
||||
dialogElement.setAttribute("title", dialogElement.getAttribute("selectFolderTitle"));
|
||||
document.title = dialogElement.getAttribute("selectFolderTitle");
|
||||
shouldSetOKButton = false;
|
||||
if (window.arguments[2])
|
||||
folderItem = bookmarkView.rdf.GetResource(window.arguments[2]);
|
||||
|
|
|
@ -1,379 +0,0 @@
|
|||
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla 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/MPL/
|
||||
*
|
||||
* 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 the Initial Developer are Copyright (C) 1998
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
// This is the set of fields that are visible in the window.
|
||||
var gFields;
|
||||
|
||||
// ...and this is a parallel array that contains the RDF properties
|
||||
// that they are associated with.
|
||||
var gProperties;
|
||||
|
||||
// The ID of the current shown bookmark
|
||||
var gBookmarkID;
|
||||
|
||||
function Init()
|
||||
{
|
||||
initServices();
|
||||
initBMService();
|
||||
|
||||
// This is the set of fields that are visible in the window.
|
||||
gFields = ["name", "url", "shortcut", "description"];
|
||||
|
||||
// ...and this is a parallel array that contains the RDF properties
|
||||
// that they are associated with.
|
||||
gProperties = [NC_NS + "Name",
|
||||
NC_NS + "URL",
|
||||
NC_NS + "ShortcutURL",
|
||||
NC_NS + "Description"];
|
||||
|
||||
gBookmarkID = window.arguments[0];
|
||||
|
||||
var i;
|
||||
var resource = RDF.GetResource(gBookmarkID);
|
||||
// Initialize the properties panel by copying the values from the
|
||||
// RDF graph into the fields on screen.
|
||||
|
||||
for (i = 0; i < gFields.length; ++i) {
|
||||
var field = document.getElementById(gFields[i]);
|
||||
|
||||
var value = BMDS.GetTarget(resource, RDF.GetResource(gProperties[i]), true);
|
||||
|
||||
if (value)
|
||||
value = value.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
|
||||
|
||||
if (value) //make sure were aren't stuffing null into any fields
|
||||
field.value = value;
|
||||
}
|
||||
|
||||
var propsWindow = document.getElementById("bmPropsWindow");
|
||||
var nameNode = document.getElementById("name");
|
||||
var title = propsWindow.getAttribute("title");
|
||||
title = title.replace(/\*\*bm_title\*\*/gi, nameNode.value);
|
||||
propsWindow.setAttribute("title", title);
|
||||
|
||||
// if its a container, disable some things
|
||||
var isContainerFlag = RDFCU.IsContainer(BMDS, resource);
|
||||
if (!isContainerFlag) {
|
||||
// XXX To do: the "RDFCU.IsContainer" call above only works for RDF sequences;
|
||||
// if its not a RDF sequence, we should to more checking to see if
|
||||
// the item in question is really a container of not. A good example
|
||||
// of this is the "File System" container.
|
||||
}
|
||||
|
||||
var isSeparator = BookmarksUtils.resolveType(resource) == "BookmarkSeparator";
|
||||
|
||||
if (isContainerFlag || isSeparator) {
|
||||
// If it is a folder, it has no URL or Keyword
|
||||
document.getElementById("locationrow").setAttribute("hidden", "true");
|
||||
document.getElementById("shortcutrow").setAttribute("hidden", "true");
|
||||
if (isSeparator) {
|
||||
document.getElementById("descriptionrow").setAttribute("hidden", "true");
|
||||
}
|
||||
}
|
||||
|
||||
var showScheduling = false;
|
||||
var url = BMDS.GetTarget(resource, RDF.GetResource(gProperties[1]), true);
|
||||
if (url) {
|
||||
url = url.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
|
||||
if (url.substr(0, 7).toLowerCase() == "http://" ||
|
||||
url.substr(0, 8).toLowerCase() == "https://") {
|
||||
showScheduling = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!showScheduling) {
|
||||
// only allow scheduling of http/https URLs
|
||||
document.getElementById("scheduling").setAttribute("hidden", "true");
|
||||
} else {
|
||||
// check bookmark schedule
|
||||
var scheduleArc = RDF.GetResource("http://home.netscape.com/WEB-rdf#Schedule");
|
||||
value = BMDS.GetTarget(resource, scheduleArc, true);
|
||||
|
||||
if (value) {
|
||||
value = value.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
|
||||
|
||||
if (value) {
|
||||
var values = value.split("|");
|
||||
if (values.length == 4) {
|
||||
// get day range
|
||||
var days = values[0];
|
||||
var dayNode = document.getElementById("dayRange");
|
||||
var dayItems = dayNode.childNodes[0].childNodes;
|
||||
for (i=0; i < dayItems.length; ++i) {
|
||||
if (dayItems[i].getAttribute("value") == days) {
|
||||
dayNode.selectedItem = dayItems[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
// Set up the enabled of controls on the scheduling panels
|
||||
dayRangeChange(dayNode);
|
||||
|
||||
// get hour range
|
||||
var hours = values[1].split("-");
|
||||
var startHour = "";
|
||||
var endHour = "";
|
||||
|
||||
if (hours.length == 2) {
|
||||
startHour = hours[0];
|
||||
endHour = hours[1];
|
||||
}
|
||||
|
||||
// set start hour
|
||||
var startHourNode = document.getElementById("startHourRange");
|
||||
var startHourItems = startHourNode.childNodes[0].childNodes;
|
||||
for (i=0; i < startHourItems.length; ++i) {
|
||||
if (startHourItems[i].getAttribute("value") == startHour) {
|
||||
startHourNode.selectedItem = startHourItems[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// set end hour
|
||||
var endHourNode = document.getElementById("endHourRange");
|
||||
var endHourItems = endHourNode.childNodes[0].childNodes;
|
||||
for (i=0; i < endHourItems.length; ++i) {
|
||||
if (endHourItems[i].getAttribute("value") == endHour) {
|
||||
endHourNode.selectedItem = endHourItems[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// get duration
|
||||
var duration = values[2];
|
||||
var durationNode = document.getElementById("duration");
|
||||
durationNode.value = duration;
|
||||
|
||||
// get notification method
|
||||
var method = values[3];
|
||||
if (method.indexOf("icon") >= 0)
|
||||
document.getElementById("bookmarkIcon").checked = true;
|
||||
|
||||
if (method.indexOf("sound") >= 0)
|
||||
document.getElementById("playSound").checked = true;
|
||||
|
||||
if (method.indexOf("alert") >= 0)
|
||||
document.getElementById("showAlert").checked = true;
|
||||
|
||||
if (method.indexOf("open") >= 0)
|
||||
document.getElementById("openWindow").checked = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sizeToContent();
|
||||
|
||||
// set initial focus
|
||||
nameNode.focus();
|
||||
nameNode.select();
|
||||
|
||||
}
|
||||
|
||||
|
||||
function Commit()
|
||||
{
|
||||
var changed = false;
|
||||
|
||||
// Grovel through the fields to see if any of the values have
|
||||
// changed. If so, update the RDF graph and force them to be saved
|
||||
// to disk.
|
||||
for (var i = 0; i < gFields.length; ++i) {
|
||||
var field = document.getElementById(gFields[i]);
|
||||
|
||||
if (field) {
|
||||
// Get the new value as a literal, using 'null' if the value is empty.
|
||||
var newvalue = field.value;
|
||||
|
||||
var oldvalue = BMDS.GetTarget(RDF.GetResource(gBookmarkID),
|
||||
RDF.GetResource(gProperties[i]), true);
|
||||
|
||||
if (oldvalue)
|
||||
oldvalue = oldvalue.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
||||
|
||||
if (newvalue && gProperties[i] == (NC_NS + "ShortcutURL")) {
|
||||
// shortcuts are always lowercased internally
|
||||
newvalue = newvalue.toLowerCase();
|
||||
}
|
||||
else if (newvalue && gProperties[i] == (NC_NS + "URL")) {
|
||||
// we're dealing with the URL attribute;
|
||||
// if a scheme isn't specified, use "http://"
|
||||
if (newvalue.indexOf(":") < 0)
|
||||
newvalue = "http://" + newvalue;
|
||||
}
|
||||
|
||||
if (newvalue)
|
||||
newvalue = RDF.GetLiteral(newvalue);
|
||||
|
||||
if (updateAttribute(gProperties[i], oldvalue, newvalue)) {
|
||||
changed = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Update bookmark schedule if necessary;
|
||||
// if the tab was removed, just skip it
|
||||
var scheduling = document.getElementById("scheduling");
|
||||
var schedulingHidden = scheduling.getAttribute("hidden");
|
||||
if (schedulingHidden != "true") {
|
||||
var scheduleRes = "http://home.netscape.com/WEB-rdf#Schedule";
|
||||
oldvalue = BMDS.GetTarget(RDF.GetResource(gBookmarkID),
|
||||
RDF.GetResource(scheduleRes), true);
|
||||
newvalue = "";
|
||||
var dayRangeNode = document.getElementById("dayRange");
|
||||
var dayRange = dayRangeNode.selectedItem.getAttribute("value");
|
||||
|
||||
if (dayRange) {
|
||||
var startHourRangeNode = document.getElementById("startHourRange");
|
||||
var startHourRange = startHourRangeNode.selectedItem.getAttribute("value");
|
||||
|
||||
var endHourRangeNode = document.getElementById("endHourRange");
|
||||
var endHourRange = endHourRangeNode.selectedItem.getAttribute("value");
|
||||
|
||||
if (parseInt(startHourRange) > parseInt(endHourRange)) {
|
||||
var temp = startHourRange;
|
||||
startHourRange = endHourRange;
|
||||
endHourRange = temp;
|
||||
}
|
||||
|
||||
var duration = document.getElementById("duration").value;
|
||||
if (!duration) {
|
||||
alert(BookmarksUtils.getLocaleString("pleaseEnterADuration"));
|
||||
return false;
|
||||
}
|
||||
|
||||
var methods = [];
|
||||
if (document.getElementById("bookmarkIcon").checked)
|
||||
methods.push("icon");
|
||||
if (document.getElementById("playSound").checked)
|
||||
methods.push("sound");
|
||||
if (document.getElementById("showAlert").checked)
|
||||
methods.push("alert");
|
||||
if (document.getElementById("openWindow").checked)
|
||||
methods.push("open");
|
||||
|
||||
if (methods.length == 0) {
|
||||
alert(BookmarksUtils.getLocaleString("pleaseSelectANotification"));
|
||||
return false;
|
||||
}
|
||||
|
||||
var method = methods.join(); // join string in array with ","
|
||||
|
||||
newvalue = dayRange + "|" + startHourRange + "-" + endHourRange + "|" + duration + "|" + method;
|
||||
}
|
||||
|
||||
if (newvalue)
|
||||
newvalue = RDF.GetLiteral(newvalue);
|
||||
|
||||
if (updateAttribute(scheduleRes, oldvalue, newvalue))
|
||||
changed = true;
|
||||
}
|
||||
|
||||
if (changed) {
|
||||
var remote = BMDS.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
|
||||
if (remote)
|
||||
remote.Flush();
|
||||
}
|
||||
|
||||
window.close();
|
||||
return true;
|
||||
}
|
||||
|
||||
function updateAttribute(prop, oldvalue, newvalue)
|
||||
{
|
||||
var changed = false;
|
||||
|
||||
if (prop && (oldvalue || newvalue) && oldvalue != newvalue) {
|
||||
|
||||
if (oldvalue && !newvalue) {
|
||||
BMDS.Unassert(RDF.GetResource(gBookmarkID),
|
||||
RDF.GetResource(prop), oldvalue);
|
||||
}
|
||||
else if (!oldvalue && newvalue) {
|
||||
BMDS.Assert(RDF.GetResource(gBookmarkID),
|
||||
RDF.GetResource(prop), newvalue, true);
|
||||
}
|
||||
else /* if (oldvalue && newvalue) */ {
|
||||
BMDS.Change(RDF.GetResource(gBookmarkID),
|
||||
RDF.GetResource(prop), oldvalue, newvalue);
|
||||
}
|
||||
|
||||
changed = true;
|
||||
}
|
||||
|
||||
return changed;
|
||||
}
|
||||
|
||||
function setEndHourRange()
|
||||
{
|
||||
// Get the values of the start-time and end-time as ints
|
||||
var startHourRangeNode = document.getElementById("startHourRange");
|
||||
var startHourRange = startHourRangeNode.selectedItem.getAttribute("value");
|
||||
var startHourRangeInt = parseInt(startHourRange);
|
||||
|
||||
var endHourRangeNode = document.getElementById("endHourRange");
|
||||
var endHourRange = endHourRangeNode.selectedItem.getAttribute("value");
|
||||
var endHourRangeInt = parseInt(endHourRange);
|
||||
|
||||
var endHourItemNode = endHourRangeNode.firstChild.firstChild;
|
||||
|
||||
var index = 0;
|
||||
|
||||
// disable all those end-times before the start-time
|
||||
for (; index < startHourRangeInt; ++index) {
|
||||
endHourItemNode.setAttribute("disabled", "true");
|
||||
endHourItemNode = endHourItemNode.nextSibling;
|
||||
}
|
||||
|
||||
// update the selected value if it's out of the allowed range
|
||||
if (startHourRangeInt >= endHourRangeInt)
|
||||
endHourRangeNode.selectedItem = endHourItemNode;
|
||||
|
||||
// make sure all the end-times after the start-time are enabled
|
||||
for (; index < 24; ++index) {
|
||||
endHourItemNode.removeAttribute("disabled");
|
||||
endHourItemNode = endHourItemNode.nextSibling;
|
||||
}
|
||||
}
|
||||
|
||||
function dayRangeChange (aMenuList)
|
||||
{
|
||||
var controls = ["startHourRange", "endHourRange", "duration", "bookmarkIcon",
|
||||
"showAlert", "openWindow", "playSound", "durationSubLabel",
|
||||
"durationLabel", "startHourRangeLabel", "endHourRangeLabel"];
|
||||
for (var i = 0; i < controls.length; ++i)
|
||||
document.getElementById(controls[i]).disabled = !aMenuList.value;
|
||||
}
|
|
@ -73,7 +73,7 @@ function Startup()
|
|||
|
||||
bookmarksView.treeBoxObject.view.selection.select(0);
|
||||
|
||||
windowNode.setAttribute("title", titleString);
|
||||
document.title = titleString;
|
||||
|
||||
document.getElementById("CommandUpdate_Bookmarks").setAttribute("commandupdater","true");
|
||||
bookmarksView.tree.focus();
|
||||
|
|
|
@ -71,7 +71,7 @@ function HistoryCommonInit()
|
|||
// there and the window is not re-used for bookmarks.
|
||||
var windowNode = document.getElementById("history-window");
|
||||
windowNode.setAttribute("windowtype", "history:searchresults");
|
||||
windowNode.setAttribute("title", gHistoryBundle.getString("search_results_title"));
|
||||
document.title = gHistoryBundle.getString("search_results_title");
|
||||
|
||||
}
|
||||
document.getElementById("groupingMenu").setAttribute("hidden", "true");
|
||||
|
|
|
@ -109,8 +109,7 @@ function Startup() {
|
|||
element = document.getElementById("cookiesTab");
|
||||
tabBox.selectedTab = element;
|
||||
} else if (dialogType == imageType) {
|
||||
element = document.getElementById("cookieviewer");
|
||||
element.setAttribute("title", cookieBundle.getString("imageTitle"));
|
||||
document.title = cookieBundle.getString("imageTitle");
|
||||
|
||||
element = document.getElementById("permissionsTab");
|
||||
element.label = cookieBundle.getString("tabBannedImages");
|
||||
|
@ -129,8 +128,7 @@ function Startup() {
|
|||
element = document.getElementById("btnSession");
|
||||
element.hidden = "true";
|
||||
} else {
|
||||
element = document.getElementById("cookieviewer");
|
||||
element.setAttribute("title", cookieBundle.getString("popupTitle"));
|
||||
document.title = cookieBundle.getString("popupTitle");
|
||||
|
||||
element = document.getElementById("permissionsTab");
|
||||
element.label = cookieBundle.getString("tabBannedPopups");
|
||||
|
|
|
@ -124,8 +124,7 @@
|
|||
if ( !handlerInfo.URI )
|
||||
{
|
||||
// Opening for "New Type".
|
||||
var newTitle = document.documentElement.getAttribute("newtitle");
|
||||
document.documentElement.setAttribute("title", newTitle);
|
||||
document.title = document.documentElement.getAttribute("newtitle");
|
||||
|
||||
// Initialize some stuff to blank for new types.
|
||||
gOldMIME = gOldDesc = gOldExtensions = "";
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
</content>
|
||||
|
||||
<implementation>
|
||||
<property name="title" onget="return this.getAttribute('title')"
|
||||
onset="this.setAttribute('title', val);"/>
|
||||
<property name="title" onget="return document.title;"
|
||||
onset="return document.title = val;"/>
|
||||
|
||||
<property name="canAdvance" onget="return this._canAdvance;"
|
||||
onset="this._canAdvance=val; this._nextButton.setAttribute('disabled', !val);"/>
|
||||
|
|
|
@ -55,8 +55,7 @@ function onLoad()
|
|||
// if no download button
|
||||
// set title to "Install Font"
|
||||
// and set cancel button to "OK"
|
||||
var downloadFontDialog = document.getElementById("downloadFontDialog");
|
||||
downloadFontDialog.setAttribute("title", fontPackageBundle.getString("windowTitleNoDownload"));
|
||||
document.title = fontPackageBundle.getString("windowTitleNoDownload");
|
||||
var cancelButton = document.getElementById("cancelButton");
|
||||
cancelButton.setAttribute("label", fontPackageBundle.getString("cancelButtonNoDownload"));
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче