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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
|
var WebDeveloper = WebDeveloper || {};
WebDeveloper.Common = WebDeveloper.Common || {};
WebDeveloper.Common.requestTimeout = 10000;
// Adds a class to an element
WebDeveloper.Common.addClass = function(element, className)
{
// If the element and class name are set and the element does not already have this class
if(element && className && !WebDeveloper.Common.hasClass(element, className))
{
element.className = (element.className + " " + className).trim();
}
};
// Adjusts the position of the given element
WebDeveloper.Common.adjustElementPosition = function(element, xPosition, yPosition, offset)
{
// If the element is set
if(element)
{
var contentWindow = WebDeveloper.Common.getContentWindow();
var innerHeight = contentWindow.innerHeight;
var innerWidth = contentWindow.innerWidth;
var offsetHeight = element.offsetHeight;
var offsetWidth = element.offsetWidth;
var offsetX = contentWindow.pageXOffset;
var offsetY = contentWindow.pageYOffset;
// If the x position is less than 0
if(xPosition < 0)
{
xPosition = 0;
}
// If the y position is less than 0
if(yPosition < 0)
{
yPosition = 0;
}
// If the element will fit at the x position
if((xPosition + offsetWidth + offset + 5) < (innerWidth + offsetX))
{
element.style.left = xPosition + offset + "px";
}
else
{
element.style.left = (innerWidth + offsetX - offsetWidth - offset) + "px";
}
// If the element will fit at the y position
if((yPosition + offsetHeight + offset + 5) < (innerHeight + offsetY))
{
element.style.top = yPosition + offset + "px";
}
else
{
element.style.top = (innerHeight + offsetY - offsetHeight - offset) + "px";
}
}
};
// Returns true if the array contains the element
WebDeveloper.Common.contains = function(array, element)
{
// If the array and element are set
if(array && element)
{
try
{
// If the element does not exist in the array
if(array.indexOf(element) == -1)
{
return false;
}
else
{
return true;
}
}
catch(exception)
{
// Loop through the array
for(var i = 0, l = array.length; i < l; i++)
{
// If the element is found
if(array[i] == element)
{
return true;
}
}
}
}
return false;
};
// Removes all child elements from an element
WebDeveloper.Common.empty = function(element)
{
// If the element is set
if(element)
{
var childElements = element.childNodes;
// Loop through the child elements
while(childElements.length)
{
element.removeChild(childElements[0]);
}
}
};
// Returns true if a string ends with another string
WebDeveloper.Common.endsWith = function(string, endsWith)
{
return new RegExp(endsWith + "$").test(string);
};
// Formats dimensions
WebDeveloper.Common.formatDimensions = function(width, height, locale)
{
// If the width and height are set
if(width && height)
{
return locale.width + " = " + width + "px " + locale.height + " = " + height + "px";
}
else if(width)
{
return locale.width + " = " + width + "px";
}
else if(height)
{
return locale.height + " = " + height + "px";
}
return "";
};
// Returns the document body element
WebDeveloper.Common.getDocumentBodyElement = function(contentDocument)
{
// If there is a body element
if(contentDocument.body)
{
return contentDocument.body;
}
else
{
var bodyElement = contentDocument.querySelector("body");
// If there is a body element
if(bodyElement)
{
return bodyElement;
}
}
return contentDocument.documentElement;
};
// Returns the document head element
WebDeveloper.Common.getDocumentHeadElement = function(contentDocument)
{
var headElement = contentDocument.querySelector("head");
// If there is a head element
if(headElement)
{
return headElement;
}
return contentDocument.documentElement;
};
// Returns all of the images in the document
WebDeveloper.Common.getDocumentImages = function(contentDocument)
{
var uniqueImages = [];
// If the content document is set
if(contentDocument)
{
var computedStyle = null;
var cssURI = CSSPrimitiveValue.CSS_URI;
var image = null;
var images = [];
var node = null;
var styleImage = null;
var treeWalker = contentDocument.createTreeWalker(contentDocument, NodeFilter.SHOW_ELEMENT, null, false);
// While the tree walker has more nodes
while((node = treeWalker.nextNode()) !== null)
{
// If this is an image element
if(node.tagName.toLowerCase() == "img")
{
images.push(node);
}
else if(node.tagName.toLowerCase() == "input" && node.src && node.type && node.type.toLowerCase() == "image")
{
image = new Image();
image.src = node.src;
// If this is not a chrome image
if(image.src.indexOf("chrome://") !== 0)
{
images.push(image);
}
}
else if(node.tagName.toLowerCase() == "link" && node.href && node.href.indexOf("chrome://") !== 0 && node.rel && node.rel.indexOf("icon") != -1)
{
image = new Image();
image.src = node.href;
images.push(image);
}
else
{
computedStyle = node.ownerDocument.defaultView.getComputedStyle(node, null);
// If the computed style is set
if(computedStyle)
{
styleImage = WebDeveloper.Common.getCSSProperty(computedStyle.getPropertyCSSValue("background-image"));
// If this element has a background image and it is a URI
if(styleImage && styleImage.primitiveType == cssURI)
{
image = new Image();
image.src = styleImage.getStringValue();
// If this is not a chrome image
if(image.src.indexOf("chrome://") !== 0)
{
images.push(image);
}
}
styleImage = computedStyle.getPropertyCSSValue("list-style-image");
// If this element has a background image and it is a URI
if(styleImage && styleImage.primitiveType == cssURI)
{
image = new Image();
image.src = styleImage.getStringValue();
// If this is not a chrome image
if(image.src.indexOf("chrome://") !== 0)
{
images.push(image);
}
}
}
}
}
images.sort(WebDeveloper.Common.sortImages);
// Loop through the images
for(var i = 0, l = images.length; i < l; i++)
{
image = images[i];
// If this is not the last image and the image is the same as the next image
if(i + 1 < l && image.src == images[i + 1].src)
{
continue;
}
uniqueImages.push(image);
}
}
return uniqueImages;
};
// Get the position of an element
WebDeveloper.Common.getElementPosition = function(element, xPosition)
{
var position = 0;
// If the element is set
if(element)
{
var elementOffsetParent = element.offsetParent;
// If the element has an offset parent
if(elementOffsetParent)
{
// While there is an offset parent
while((elementOffsetParent = element.offsetParent) !== null)
{
// If getting the x position
if(xPosition)
{
position += element.offsetLeft;
}
else
{
position += element.offsetTop;
}
element = elementOffsetParent;
}
}
else
{
// If getting the x position
if(xPosition)
{
position = element.offsetLeft;
}
else
{
position = element.offsetTop;
}
}
}
return position;
};
// Get the x position of an element
WebDeveloper.Common.getElementPositionX = function(element)
{
return WebDeveloper.Common.getElementPosition(element, true);
};
// Get the y position of an element
WebDeveloper.Common.getElementPositionY = function(element)
{
return WebDeveloper.Common.getElementPosition(element, false);
};
// Returns the text from an element
WebDeveloper.Common.getElementText = function(element)
{
var elementText = "";
// If the element is set
if(element)
{
var childNode = null;
var childNodes = element.childNodes;
var childNodeType = null;
// Loop through the child nodes
for(var i = 0, l = childNodes.length; i < l; i++)
{
childNode = childNodes[i];
childNodeType = childNode.nodeType;
// If the child node type is an element
if(childNodeType == Node.ELEMENT_NODE)
{
elementText += WebDeveloper.Common.getElementText(childNode);
}
else if(childNodeType == Node.TEXT_NODE)
{
elementText += childNode.nodeValue + " ";
}
}
}
return elementText;
};
// Returns the contents of the given URLs
WebDeveloper.Common.getURLContents = function(urlContentRequests, errorMessage, callback)
{
var urlContentRequestsRemaining = urlContentRequests.length;
var configuration = { "callback": callback, "urlContentRequestsRemaining": urlContentRequestsRemaining };
// Loop through the URL content requests
for(var i = 0, l = urlContentRequests.length; i < l; i++)
{
WebDeveloper.Common.getURLContent(urlContentRequests[i], errorMessage, configuration);
}
};
// Returns true if an element has the specified class
WebDeveloper.Common.hasClass = function(element, className)
{
// If the element and class name are set
if(element && className)
{
var classes = element.className.split(" ");
// Loop through the classes
for(var i = 0, l = classes.length; i < l; i++)
{
// If the classes match
if(className == classes[i])
{
return true;
}
}
}
return false;
};
// Returns true if the item is in the array
WebDeveloper.Common.inArray = function(item, array)
{
return WebDeveloper.Common.positionInArray(item, array) != -1;
};
// Includes JavaScript in a document
WebDeveloper.Common.includeJavaScript = function(url, contentDocument, callback)
{
var scriptElement = contentDocument.createElement("script");
// If a callback is set
if(callback)
{
var load = (function(callbackFunction)
{
var handler = function()
{
callbackFunction();
scriptElement.removeEventListener("load", handler, true);
};
return handler;
})(callback);
scriptElement.addEventListener("load", load, true);
}
scriptElement.setAttribute("src", WebDeveloper.Common.getChromeURL(url));
WebDeveloper.Common.getDocumentBodyElement(contentDocument).appendChild(scriptElement);
};
// Inserts the given child after the element
WebDeveloper.Common.insertAfter = function(child, after)
{
// If the child and after are set
if(child && after)
{
var nextSibling = after.nextSibling;
var parent = after.parentNode;
// If the element has a next sibling
if(nextSibling)
{
parent.insertBefore(child, nextSibling);
}
else
{
parent.appendChild(child);
}
}
};
// Inserts the given element as the first child of the element
WebDeveloper.Common.insertAsFirstChild = function(element, child)
{
// If the element and child are set
if(element && child)
{
// If the element has child nodes
if(element.hasChildNodes())
{
element.insertBefore(child, element.firstChild);
}
else
{
element.appendChild(child);
}
}
};
// Returns true if the ancestor element is an ancestor of the element
WebDeveloper.Common.isAncestor = function(element, ancestorElement)
{
// If the element and ancestor element are set
if(element && ancestorElement)
{
var parentElement = null;
// Loop through the parent elements
while((parentElement = element.parentNode) !== null)
{
// If the parent element is the ancestor element
if(parentElement == ancestorElement)
{
return true;
}
else
{
element = parentElement;
}
}
}
return false;
};
// Returns the position if the item is in the array or -1 if it is not
WebDeveloper.Common.positionInArray = function(item, array)
{
// If the array is set
if(array)
{
// Loop through the array
for(var i = 0, l = array.length; i < l; i++)
{
// If the item is in the array
if(array[i] == item)
{
return i;
}
}
}
return -1;
};
// Removes a class from an element
WebDeveloper.Common.removeClass = function(element, className)
{
// If the element and class name are set
if(element && className)
{
var classes = element.className.split(" ");
// Loop through the classes
for(var i = 0, l = classes.length; i < l; i++)
{
// If the classes match
if(className == classes[i])
{
classes.splice(i, 1);
element.className = classes.join(" ").trim();
break;
}
}
}
};
// Removes all matching elements from a document
WebDeveloper.Common.removeMatchingElements = function(selector, contentDocument)
{
var matchingElement = null;
var matchingElements = contentDocument.querySelectorAll(selector);
// Loop through the matching elements
for(var i = 0, l = matchingElements.length; i < l; i++)
{
matchingElement = matchingElements[i];
// If the matching element has a parent node
if(matchingElement.parentNode)
{
matchingElement.parentNode.removeChild(matchingElement);
}
}
};
// Removes the reload parameter from a URL
WebDeveloper.Common.removeReloadParameterFromURL = function(url)
{
// If the URL is set
if(url)
{
return url.replace(/(&|\?)web-developer-reload=\d+/, "");
}
return null;
};
// Removes a substring from a string
WebDeveloper.Common.removeSubstring = function(string, substring)
{
// If the string and substring are not empty
if(string && substring)
{
var substringStart = string.indexOf(substring);
// If the substring is found in the string
if(substring && substringStart != -1)
{
return string.substring(0, substringStart) + string.substring(substringStart + substring.length, string.length);
}
return string;
}
return "";
};
// Sorts two images
WebDeveloper.Common.sortImages = function(imageOne, imageTwo)
{
// If both images are set
if(imageOne && imageTwo)
{
var imageOneSrc = imageOne.src;
var imageTwoSrc = imageTwo.src;
// If the images are equal
if(imageOneSrc == imageTwoSrc)
{
return 0;
}
else if(imageOneSrc < imageTwoSrc)
{
return -1;
}
}
return 1;
};
// Toggles a class on an element
WebDeveloper.Common.toggleClass = function(element, className, value)
{
// If the value is set
if(value)
{
WebDeveloper.Common.addClass(element, className);
}
else
{
WebDeveloper.Common.removeClass(element, className);
}
};
// Toggles a style sheet in a document
WebDeveloper.Common.toggleStyleSheet = function(url, id, contentDocument, insertFirst)
{
var styleSheet = contentDocument.getElementById(id);
// If the style sheet is already in the document
if(styleSheet)
{
WebDeveloper.Common.removeMatchingElements("#" + id, contentDocument);
}
else
{
var headElement = WebDeveloper.Common.getDocumentHeadElement(contentDocument);
var firstChild = headElement.firstChild;
var linkElement = contentDocument.createElement("link");
linkElement.setAttribute("href", WebDeveloper.Common.getChromeURL(url));
linkElement.setAttribute("id", id);
linkElement.setAttribute("rel", "stylesheet");
// If there is a first child
if(insertFirst && firstChild)
{
headElement.insertBefore(linkElement, firstChild);
}
else
{
headElement.appendChild(linkElement);
}
}
};
// Handles the completion of a URL content request
WebDeveloper.Common.urlContentRequestComplete = function(content, urlContentRequest, configuration)
{
urlContentRequest.content = content;
configuration.urlContentRequestsRemaining--;
// If there are no URL content requests remaining
if(configuration.urlContentRequestsRemaining === 0)
{
configuration.callback();
}
};
var WebDeveloper = WebDeveloper || {};
WebDeveloper.Common = WebDeveloper.Common || {};
// Clears a notification
WebDeveloper.Common.clearNotification = function()
{
var notificationBox = WebDeveloper.Common.getTabBrowser().getNotificationBox();
var existingNotification = notificationBox.getNotificationWithValue("web-developer-notification");
// If there is an existing notification
if(existingNotification)
{
notificationBox.removeNotification(existingNotification);
}
};
// Configures the element with the given attribute and value
WebDeveloper.Common.configureElement = function(element, attribute, value)
{
// If the element exists
if(element)
{
element.setAttribute(attribute, value);
}
};
// Converts a value to a boolean
WebDeveloper.Common.convertToBoolean = function(value)
{
// If the value is false
if(value == "false")
{
return false;
}
return Boolean(value).valueOf();
};
// Displays an error message
WebDeveloper.Common.displayError = function(title, message)
{
Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService).alert(null, title, message);
};
// Displays a notification
WebDeveloper.Common.displayNotification = function(notification, substitutes)
{
var message = null;
var notificationBox = WebDeveloper.Common.getTabBrowser().getNotificationBox();
// If there are substitutes
if(substitutes)
{
message = WebDeveloper.Locales.getFormattedString(notification, substitutes);
}
else
{
message = WebDeveloper.Locales.getString(notification);
}
WebDeveloper.Common.clearNotification();
notificationBox.appendNotification(message, "web-developer-notification", "chrome://web-developer/skin/button.png", notificationBox.PRIORITY_INFO_HIGH, null);
};
// Displays a message with a URL
WebDeveloper.Common.displayURLMessage = function(message, url)
{
window.openDialog("chrome://web-developer/content/dialogs/message.xul", "web-developer-message-dialog", "centerscreen,chrome,modal", message, url);
};
// Handles the completion of a file size request
WebDeveloper.Common.fileSizeRequestComplete = function(fileSize, fileSizeRequest, configuration)
{
fileSizeRequest.fileObject.size = fileSize;
configuration.fileSizeRequestsRemaining--;
// If there are no file size requests remaining
if(configuration.fileSizeRequestsRemaining === 0)
{
configuration.callback();
}
};
// Formats a file size
WebDeveloper.Common.formatFileSize = function(fileSize, bytesLocale, kilobytesLocale)
{
// If the file size is set
if(fileSize)
{
// If the file size is greater than a kilobyte
if(fileSize > 1024)
{
return Math.round(fileSize / 1024) + " " + kilobytesLocale;
}
else
{
return fileSize + " " + bytesLocale;
}
}
else
{
return "";
}
};
// Returns a chrome URL
WebDeveloper.Common.getChromeURL = function(url)
{
return "chrome://web-developer/content/" + url;
};
// Returns the id for a command
WebDeveloper.Common.getCommandId = function(id)
{
// If the id is set
if(id)
{
return "web-developer-" + id + "-command";
}
return "";
};
// Returns the compressed file size
WebDeveloper.Common.getCompressedFileSize = function(fileSize, fileSizeRequest, configuration, callback)
{
var url = fileSizeRequest.url;
// Gets the file from the cache
WebDeveloper.Common.getFileFromCache(url, function(file)
{
// If the file is set
if(file)
{
fileSize.size = file.dataSize;
callback(file);
}
else
{
// Try to download the file
try
{
var ioService = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
fileSize.size = ioService.newChannelFromURI(ioService.newURI(url, null, null)).open().available();
}
catch(exception)
{
fileSize.size = null;
}
callback();
}
});
};
// Returns the current content document
WebDeveloper.Common.getContentDocument = function()
{
return WebDeveloper.Common.getSelectedBrowser().contentDocument;
};
// Returns the current content window
WebDeveloper.Common.getContentWindow = function()
{
return WebDeveloper.Common.getSelectedBrowser().contentWindow;
};
// Returns a CSS property
WebDeveloper.Common.getCSSProperty = function(property)
{
// If the property is set
if(property)
{
return property[0];
}
return null;
};
// Returns the id for a feature
WebDeveloper.Common.getFeatureId = function(id)
{
// If the id is set
if(id)
{
return id.replace("web-developer-", "").replace("-command", "");
}
return "";
};
// Returns a file from the cache
WebDeveloper.Common.getFileFromCache = function(url, callback)
{
var cacheSession = null;
// Try to get the file from the cache
try
{
cacheSession = Components.classes["@mozilla.org/network/cache-service;1"].getService(Components.interfaces.nsICacheService).createSession("HTTP", 0, true);
cacheSession.doomEntriesIfExpired = false;
// Open the cache entry asynchronously
cacheSession.asyncOpenCacheEntry(url, Components.interfaces.nsICache.ACCESS_READ,
{
// Handles the cache entry being available
onCacheEntryAvailable: function(descriptor, accessGranted, status)
{
callback(descriptor);
}
});
}
catch(exception)
{
callback();
}
};
// Returns the size of a file
WebDeveloper.Common.getFileSize = function(fileSizeRequest, configuration)
{
var fileSize = {};
// Get the compressed file size
WebDeveloper.Common.getCompressedFileSize(fileSize, fileSizeRequest, configuration, function(file)
{
// If including the uncompressed size and the file is compressed
if(fileSizeRequest.includeUncompressed && WebDeveloper.Common.isFileCompressed(file))
{
WebDeveloper.Common.getUncompressedFileSize(fileSize, fileSizeRequest, configuration);
}
else
{
WebDeveloper.Common.fileSizeRequestComplete(fileSize, fileSizeRequest, configuration);
}
});
};
// Returns the file sizes of the given files
WebDeveloper.Common.getFileSizes = function(fileSizeRequests, callback)
{
var fileSizeRequestsRemaining = fileSizeRequests.length;
var configuration = { "callback": callback, "fileSizeRequestsRemaining": fileSizeRequestsRemaining };
// Loop through the file size requests
for(var i = 0, l = fileSizeRequests.length; i < l; i++)
{
WebDeveloper.Common.getFileSize(fileSizeRequests[i], configuration);
}
};
// Returns the main window
WebDeveloper.Common.getMainWindow = function()
{
return Components.classes["@mozilla.org/appshell/window-mediator;1"].getService(Components.interfaces.nsIWindowMediator).getMostRecentWindow("navigator:browser");
};
// Returns the selected browser
WebDeveloper.Common.getSelectedBrowser = function()
{
return WebDeveloper.Common.getTabBrowser().selectedBrowser;
};
// Returns the tab browser
WebDeveloper.Common.getTabBrowser = function()
{
return WebDeveloper.Common.getMainWindow().gBrowser;
};
// Returns the tab that contains the given document
WebDeveloper.Common.getTabForDocument = function(documentElement)
{
var tabBrowser = WebDeveloper.Common.getTabBrowser();
// If the tabs are set (requires Firefox 3.6)
if(tabBrowser.tabs)
{
return tabBrowser.tabs[tabBrowser.getBrowserIndexForDocument(documentElement)];
}
else
{
return tabBrowser.tabContainer.getItemAtIndex(tabBrowser.getBrowserIndexForDocument(documentElement));
}
};
// Gets the uncompressed size of a file
WebDeveloper.Common.getUncompressedFileSize = function(fileSize, fileSizeRequest, configuration)
{
// Requests the URL content
WebDeveloper.Common.requestURLContent(fileSizeRequest.url, "", function(urlContent)
{
// If the URL content is set and is larger than the compressed size
if(urlContent && urlContent.length > fileSize.size)
{
fileSize.uncompressedSize = urlContent.length;
}
WebDeveloper.Common.fileSizeRequestComplete(fileSize, fileSizeRequest, configuration);
});
};
// Gets the content from a URL
WebDeveloper.Common.getURLContent = function(urlContentRequest, errorMessage, configuration)
{
var url = urlContentRequest.url;
// If the URL is not entirely generated
if(url.indexOf("wyciwyg://") !== 0)
{
var content = null;
// Gets the file from the cache
WebDeveloper.Common.getFileFromCache(url, function(file)
{
// If the file is set and is not compressed
if(file && !WebDeveloper.Common.isFileCompressed(file))
{
// Try to load the content from the file
try
{
var inputStream = file.openInputStream(0);
var scriptableStream = Components.classes["@mozilla.org/scriptableinputstream;1"].createInstance(Components.interfaces.nsIScriptableInputStream);
scriptableStream.init(inputStream);
content = scriptableStream.read(scriptableStream.available());
scriptableStream.close();
inputStream.close();
}
catch(exception)
{
content = null;
}
}
// If the content has been loaded
if(content)
{
WebDeveloper.Common.urlContentRequestComplete(content, urlContentRequest, configuration);
}
else
{
// Requests the URL content
WebDeveloper.Common.requestURLContent(url, errorMessage, function(urlContent)
{
WebDeveloper.Common.urlContentRequestComplete(urlContent, urlContentRequest, configuration);
});
}
});
}
};
// Returns true if the file is compressed
WebDeveloper.Common.isFileCompressed = function(file)
{
// If there is a file
if(file)
{
var encoding = null;
var responseHeaders = null;
// Try to get the cache encoding
try
{
// Specific case-sensitive required
encoding = file.getMetaDataElement("request-Accept-Encoding");
}
catch(exception4)
{
encoding = null;
// Try to get the response headers
try
{
// Specific case-sensitive required
responseHeaders = file.getMetaDataElement("response-head");
}
catch(exception5)
{
responseHeaders = null;
}
}
// If the cache is not GZIP encoded
if((!encoding || encoding.indexOf("gzip") == -1) && (!responseHeaders || (responseHeaders.indexOf("Content-Encoding: deflate") == -1 && responseHeaders.indexOf("Content-Encoding: gzip") == -1)))
{
return false;
}
}
return true;
};
// Returns true if the extension is running on a Mac
WebDeveloper.Common.isMac = function()
{
// If the OS is set to Darwin
if(Components.classes["@mozilla.org/xre/app-info;1"].getService(Components.interfaces.nsIXULRuntime).OS == "Darwin")
{
return true;
}
return false;
};
// Logs a message
WebDeveloper.Common.log = function(message)
{
// If the message is not set
if(!message)
{
message = "null";
}
Components.classes["@mozilla.org/consoleservice;1"].getService(Components.interfaces.nsIConsoleService).logStringMessage(message);
};
// Opens the URL in a new tab
WebDeveloper.Common.openURL = function(url)
{
var tabBrowser = WebDeveloper.Common.getTabBrowser();
var newTab = tabBrowser.addTab(url);
tabBrowser.selectedTab = newTab;
return newTab;
};
// Returns true if the page has frames
WebDeveloper.Common.pageHasFrames = function()
{
// If the content document has a frame element
if(WebDeveloper.Common.getContentDocument().getElementsByTagName("frame").length > 0)
{
return true;
}
return false;
};
// Removes the given attribute from an element
WebDeveloper.Common.removeElementAttribute = function(element, attribute)
{
// If the element exists
if(element)
{
element.removeAttribute(attribute);
}
};
// Requests the URL content
WebDeveloper.Common.requestURLContent = function(url, errorMessage, callback)
{
// Try to request the URL
try
{
var request = new XMLHttpRequest();
request.timeout = WebDeveloper.Common.requestTimeout;
request.onreadystatechange = function()
{
// If the request completed
if(request.readyState == 4)
{
callback(request.responseText);
}
};
request.ontimeout = function()
{
callback(errorMessage);
};
request.open("get", url);
request.send(null);
}
catch(exception)
{
callback(errorMessage);
}
};
|