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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/* 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://gre/modules/PlacesUtils.jsm");
Components.utils.import("resource://gre/modules/Services.jsm");
var gShowBiDi = false;
function getBrowserURL() {
return Services.prefs.getCharPref("browser.chromeURL");
}
// update menu items that rely on focus
function goUpdateGlobalEditMenuItems()
{
goUpdateCommand('cmd_undo');
goUpdateCommand('cmd_redo');
goUpdateCommand('cmd_cut');
goUpdateCommand('cmd_copy');
goUpdateCommand('cmd_paste');
goUpdateCommand('cmd_selectAll');
goUpdateCommand('cmd_delete');
if (gShowBiDi)
goUpdateCommand('cmd_switchTextDirection');
}
// update menu items that rely on the current selection
function goUpdateSelectEditMenuItems()
{
goUpdateCommand('cmd_cut');
goUpdateCommand('cmd_copy');
goUpdateCommand('cmd_delete');
goUpdateCommand('cmd_selectAll');
}
// update menu items that relate to undo/redo
function goUpdateUndoEditMenuItems()
{
goUpdateCommand('cmd_undo');
goUpdateCommand('cmd_redo');
}
// update menu items that depend on clipboard contents
function goUpdatePasteMenuItems()
{
goUpdateCommand('cmd_paste');
}
// update Find As You Type menu items, they rely on focus
function goUpdateFindTypeMenuItems()
{
goUpdateCommand('cmd_findTypeText');
goUpdateCommand('cmd_findTypeLinks');
}
// Gather all descendent text under given document node.
function gatherTextUnder ( root )
{
var text = "";
var node = root.firstChild;
var depth = 1;
while ( node && depth > 0 ) {
// See if this node is text.
if ( node.nodeType == Node.TEXT_NODE ) {
// Add this text to our collection.
text += " " + node.data;
} else if ( node instanceof HTMLImageElement ) {
// If it has an alt= attribute, add that.
var altText = node.getAttribute( "alt" );
if ( altText && altText != "" ) {
text += " " + altText;
}
}
// Find next node to test.
// First, see if this node has children.
if ( node.hasChildNodes() ) {
// Go to first child.
node = node.firstChild;
depth++;
} else {
// No children, try next sibling.
if ( node.nextSibling ) {
node = node.nextSibling;
} else {
// Last resort is a sibling of an ancestor.
while ( node && depth > 0 ) {
node = node.parentNode;
depth--;
if ( node.nextSibling ) {
node = node.nextSibling;
break;
}
}
}
}
}
// Strip leading and trailing whitespace.
text = text.trim();
// Compress remaining whitespace.
text = text.replace( /\s+/g, " " );
return text;
}
function GenerateValidFilename(filename, extension)
{
if (filename) // we have a title; let's see if it's usable
{
// clean up the filename to make it usable and
// then trim whitespace from beginning and end
filename = validateFileName(filename).trim();
if (filename.length > 0)
return filename + extension;
}
return null;
}
function validateFileName(aFileName)
{
var re = /[\/]+/g;
if (navigator.appVersion.includes("Windows")) {
re = /[\\\/\|]+/g;
aFileName = aFileName.replace(/[\"]+/g, "'");
aFileName = aFileName.replace(/[\*\:\?]+/g, " ");
aFileName = aFileName.replace(/[\<]+/g, "(");
aFileName = aFileName.replace(/[\>]+/g, ")");
}
else if (navigator.appVersion.includes("Macintosh"))
re = /[\:\/]+/g;
if (Services.prefs.getBoolPref("mail.save_msg_filename_underscores_for_space"))
aFileName = aFileName.replace(/ /g, "_");
return aFileName.replace(re, "_");
}
function goToggleToolbar( id, elementID )
{
var toolbar = document.getElementById( id );
var element = document.getElementById( elementID );
if ( toolbar )
{
var isHidden = toolbar.getAttribute("hidden") == "true";
toolbar.setAttribute("hidden", !isHidden);
if ( element )
element.setAttribute("checked", isHidden)
document.persist(id, 'hidden');
document.persist(elementID, 'checked');
}
}
/**
* Toggle a splitter to show or hide some piece of UI (e.g. the message preview
* pane).
*
* @param splitterId the splliter that should be toggled
*/
function togglePaneSplitter(splitterId)
{
var splitter = document.getElementById(splitterId);
var state = splitter.getAttribute("state");
if (state == "collapsed")
splitter.setAttribute("state", "open");
else
splitter.setAttribute("state", "collapsed")
}
// openUILink handles clicks on UI elements that cause URLs to load.
// Firefox and SeaMonkey have a function with the same name,
// so extensions can use this everywhere to open links.
// We currently only react to left click in Thunderbird.
function openUILink(url, event)
{
if (!event.button) {
PlacesUtils.asyncHistory.updatePlaces({
uri: makeURI(url),
visits: [{
visitDate: Date.now() * 1000,
transitionType: Components.interfaces.nsINavHistoryService.TRANSITION_LINK
}]
});
messenger.launchExternalURL(url);
}
}
function openWhatsNew()
{
openContentTab(Services.urlFormatter.formatURLPref("mailnews.start_page.override_url"));
}
/**
* Open a web search in the default browser for a given query.
*
* @param query the string to search for
* @param engine (optional) the search engine to use
*/
function openWebSearch(query, engine)
{
Services.search.init({
onInitComplete: function() {
if (!engine)
engine = Services.search.currentEngine;
openLinkExternally(engine.getSubmission(query).uri.spec);
}
});
}
/**
* Open the specified tab type (possibly in a new window)
*
* @param tabType the tab type to open (e.g. "contentTab")
* @param tabParams the parameters to pass to the tab
* @param where 'tab' to open in a new tab (default) or 'window' to open in a
* new window
*/
function openTab(tabType, tabParams, where)
{
if (where != "window") {
let tabmail = document.getElementById("tabmail");
if (!tabmail) {
// Try opening new tabs in an existing 3pane window
let mail3PaneWindow = Services.wm.getMostRecentWindow("mail:3pane");
if (mail3PaneWindow) {
tabmail = mail3PaneWindow.document.getElementById("tabmail");
mail3PaneWindow.focus();
}
}
if (tabmail) {
tabmail.openTab(tabType, tabParams);
return;
}
}
// Either we explicitly wanted to open in a new window, or we fell through to
// here because there's no 3pane.
window.openDialog("chrome://messenger/content/", "_blank",
"chrome,dialog=no,all", null,
{ tabType: tabType, tabParams: tabParams });
}
/**
* Open the specified URL as a content tab (or window)
*
* @param url the location to open
* @param where 'tab' to open in a new tab (default) or 'window' to open in a
* new window
* @param handlerRegExp a regular expression (as a string) to use for the
* siteClickHandler for determining whether a link should be opened in
* Thunderbird or passed to the system
*/
function openContentTab(url, where, handlerRegExp)
{
let clickHandler = null;
if (handlerRegExp)
clickHandler = "specialTabs.siteClickHandler(event, new RegExp(\"" + handlerRegExp + "\"));";
openTab("contentTab", {contentPage: url, clickHandler: clickHandler}, where);
}
/**
* Open the preferences page for the specified query in a new tab.
*
* @param paneID ID of prefpane to select automatically.
* @param tabID ID of tab to select on the prefpane.
* @param otherArgs other prefpane specific arguments.
*/
function openPreferencesTab(paneID, tabID, otherArgs)
{
let url = "about:preferences";
let params = {
contentPage: url,
paneID: paneID,
tabID: tabID,
otherArgs: otherArgs,
onLoad: function(aEvent, aBrowser) {
let prefWindow = aBrowser.contentDocument.getElementById("MailPreferences");
aBrowser.contentWindow.selectPaneAndTab(prefWindow, paneID, tabID, otherArgs);
}
};
openTab("preferencesTab", params);
}
/**
* Open the dictionary list in a new content tab, if possible in an available
* mail:3pane window, otherwise by opening a new mail:3pane.
*
* @param where the context to open the dictionary list in (e.g. 'tab',
* 'window'). See openContentTab for more details.
*/
function openDictionaryList(where) {
let dictUrl = Services.urlFormatter
.formatURLPref("spellchecker.dictionaries.download.url");
openContentTab(dictUrl, where, "^https://addons.mozilla.org/");
}
/**
* Open the privacy policy in a new content tab, if possible in an available
* mail:3pane window, otherwise by opening a new mail:3pane.
*
* @param where the context to open the privacy policy in (e.g. 'tab',
* 'window'). See openContentTab for more details.
*/
function openPrivacyPolicy(where) {
const kTelemetryInfoUrl = "toolkit.telemetry.infoURL";
let url = Services.prefs.getCharPref(kTelemetryInfoUrl);
openContentTab(url, where, "^http://www.mozilla.org/");
}
|