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 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
|
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);
}
};
var WebDeveloper = WebDeveloper || {};
WebDeveloper.Generated = WebDeveloper.Generated || {};
WebDeveloper.Generated.animationSpeed = 200;
WebDeveloper.Generated.maximumURLLength = 100;
WebDeveloper.Generated.syntaxHighlighters = [];
// Adds a document
WebDeveloper.Generated.addDocument = function(documentURL, documentCount, itemDescription, itemCount)
{
var childElement = document.createElement("a");
var element = document.createElement("h2");
var fragment = document.createDocumentFragment();
childElement.appendChild(document.createTextNode(documentURL));
childElement.setAttribute("href", documentURL);
element.setAttribute("id", "document-" + (documentCount + 1));
element.appendChild(childElement);
fragment.appendChild(element);
element = document.createElement("li");
childElement = document.createElement("a");
childElement.appendChild(document.createTextNode(WebDeveloper.Generated.formatURL(documentURL)));
childElement.setAttribute("href", "#document-" + (documentCount + 1));
element.appendChild(childElement);
$(".dropdown-menu", $("#documents-dropdown")).get(0).appendChild(element);
// If the item description is set
if(itemDescription)
{
element = document.createElement("h3");
// If there are items
if(itemCount !== 0)
{
childElement = document.createElement("i");
childElement.setAttribute("class", "icon-caret-down");
element.appendChild(childElement);
}
element.appendChild(document.createTextNode(itemCount + " " + itemDescription));
fragment.appendChild(element);
}
document.getElementById("content").appendChild(fragment);
};
// Adds a separator
WebDeveloper.Generated.addSeparator = function()
{
var separator = document.createElement("div");
separator.setAttribute("class", "web-developer-separator");
document.getElementById("content").appendChild(separator);
};
// Changes the syntax highlight theme
WebDeveloper.Generated.changeSyntaxHighlightTheme = function(event)
{
var themeMenu = $(this);
var themeIcon = $("i", themeMenu);
// If this is not the current theme
if(themeIcon.hasClass("icon-empty"))
{
var theme = themeMenu.attr("id").replace("web-developer-syntax-highlighting-", "");
// If there is no theme
if(theme == "none")
{
$(".CodeMirror").hide();
$(".web-developer-syntax-highlight").show();
}
else if(WebDeveloper.Generated.syntaxHighlighters.length)
{
$(".CodeMirror").show();
$(".web-developer-syntax-highlight").hide();
// Loop through the syntax highlighters
for(var i = 0, l = WebDeveloper.Generated.syntaxHighlighters.length; i < l; i++)
{
WebDeveloper.Generated.syntaxHighlighters[i].setOption("theme", theme);
}
}
else
{
WebDeveloper.Generated.initializeSyntaxHighlight(theme);
}
$(".dropdown-menu .icon-ok", $("#web-developer-syntax-highlighting-dropdown")).removeClass("icon-ok").addClass("icon-empty");
themeIcon.removeClass("icon-empty").addClass("icon-ok");
}
event.preventDefault();
};
// Collapses all the output
WebDeveloper.Generated.collapseAllOutput = function(event)
{
// Loop through the output headers
$("h3").each(function()
{
var header = $(this);
$("i", header).removeClass("icon-caret-down").addClass("icon-caret-right");
header.next().slideUp(WebDeveloper.Generated.animationSpeed);
});
event.preventDefault();
};
// Empties the content
WebDeveloper.Generated.emptyContent = function()
{
$(".progress", $("#content")).remove();
};
// Expands all the output
WebDeveloper.Generated.expandAllOutput = function(event)
{
// Loop through the output headers
$("h3").each(function()
{
var header = $(this);
$("i", header).removeClass("icon-caret-right").addClass("icon-caret-down");
header.next().slideDown(WebDeveloper.Generated.animationSpeed);
});
// If the event is set
if(event)
{
event.preventDefault();
}
};
// Formats a URL
WebDeveloper.Generated.formatURL = function(url)
{
// If the URL is set
if(url && url.length > WebDeveloper.Generated.maximumURLLength)
{
var halfLength = WebDeveloper.Generated.maximumURLLength / 2;
return url.substring(0, halfLength) + "..." + url.substr(-halfLength);
}
return url;
};
// Generates a document container
WebDeveloper.Generated.generateDocumentContainer = function()
{
var documentContainer = document.createElement("div");
documentContainer.setAttribute("class", "web-developer-document");
return documentContainer;
};
// Initializes the common page elements
WebDeveloper.Generated.initializeCommonElements = function()
{
$("i", $("h3")).on("click", WebDeveloper.Generated.toggleOutput);
$("#web-developer-collapse-all").on("click", WebDeveloper.Generated.collapseAllOutput);
$("#web-developer-expand-all").on("click", WebDeveloper.Generated.expandAllOutput);
// If there is a nav bar
if($(".navbar").length)
{
$(".dropdown-toggle").dropdown();
}
};
// Initializes the syntax highlight functionality
WebDeveloper.Generated.initializeSyntaxHighlight = function(color, locale)
{
// If the locale is set
if(locale)
{
$(".dropdown-toggle", $("#web-developer-syntax-highlighting-dropdown")).prepend(locale.syntaxHighlighting);
$("#web-developer-syntax-highlighting-dark").append(locale.dark);
$("#web-developer-syntax-highlighting-light").append(locale.light);
$("#web-developer-syntax-highlighting-none").append(locale.none);
$(".dropdown-menu a", $("#web-developer-syntax-highlighting-dropdown")).on("click", WebDeveloper.Generated.changeSyntaxHighlightTheme);
$("i", $("#web-developer-syntax-highlighting-" + color)).removeClass("icon-empty").addClass("icon-ok");
}
// If a color is set
if(color != "none")
{
// Loop through the syntax highlight elements
$(".web-developer-syntax-highlight").each(function()
{
var pre = $(this);
window.setTimeout(function()
{
WebDeveloper.Generated.syntaxHighlighters.push(CodeMirror(function(element)
{
pre.after(element);
pre.hide();
},
{
lineNumbers: pre.data("line-numbers"),
mode: pre.data("type"),
readOnly: true,
tabSize: 2,
theme: color,
value: pre.text()
}));
}, 0);
});
}
};
// Initializes the page with JSON data
WebDeveloper.Generated.initializeWithJSON = function(event)
{
var eventTarget = event.target;
WebDeveloper.Generated.initialize(JSON.parse(eventTarget.getAttribute("data-web-developer")), JSON.parse(eventTarget.getAttribute("data-web-developer-locale")));
eventTarget.removeAttribute("data-web-developer");
eventTarget.removeAttribute("data-web-developer-locale");
window.removeEventListener("web-developer-generated-event", WebDeveloper.Generated.initializeWithJSON, false);
};
// Localizes the header
WebDeveloper.Generated.localizeHeader = function(locale)
{
$("#web-developer-collapse-all").text(locale.collapseAll);
$("#web-developer-expand-all").text(locale.expandAll);
$(".dropdown-toggle", $("#documents-dropdown")).prepend(locale.documents);
$("span.brand").text(locale.webDeveloper);
};
// Outputs content
WebDeveloper.Generated.output = function(title, url, anchor, type, outputOriginal)
{
var childElement = document.createElement("i");
var container = document.createElement("pre");
var content = document.getElementById("content");
var documentContainer = WebDeveloper.Generated.generateDocumentContainer();
var element = document.createElement("h3");
var outputContainers = [];
var outputTitle = title;
childElement.setAttribute("class", "icon-caret-down");
element.appendChild(childElement);
element.setAttribute("id", anchor);
// If the URL is set
if(url)
{
childElement = document.createElement("a");
outputTitle = WebDeveloper.Generated.formatURL(url);
childElement.appendChild(document.createTextNode(outputTitle));
childElement.setAttribute("href", url);
element.appendChild(childElement);
}
else
{
element.appendChild(document.createTextNode(outputTitle));
}
content.appendChild(element);
childElement = document.createElement("a");
element = document.createElement("li");
childElement.appendChild(document.createTextNode(outputTitle));
childElement.setAttribute("href", "#" + anchor);
element.appendChild(childElement);
$(".dropdown-menu", $("#files-dropdown")).get(0).appendChild(element);
container.setAttribute("class", "web-developer-syntax-highlight");
container.setAttribute("data-line-numbers", "true");
container.setAttribute("data-type", type);
documentContainer.appendChild(container);
outputContainers.push($(container));
// If the original should be output
if(outputOriginal)
{
var originalContainer = document.createElement("pre");
originalContainer.setAttribute("class", "web-developer-original");
documentContainer.appendChild(originalContainer);
outputContainers.push($(originalContainer));
}
content.appendChild(documentContainer);
WebDeveloper.Generated.addSeparator();
return outputContainers;
};
// Sets the page title
WebDeveloper.Generated.setPageTitle = function(type, data, locale)
{
document.title = type + " " + locale.from.toLowerCase() + " " + WebDeveloper.Generated.formatURL(data.pageURL);
$("a.brand", $(".navbar")).text(type);
};
// Toggles the collapsed state of an output
WebDeveloper.Generated.toggleOutput = function()
{
$(this).toggleClass("icon-caret-down").toggleClass("icon-caret-right").parent().next().slideToggle(WebDeveloper.Generated.animationSpeed);
};
window.addEventListener("web-developer-generated-event", WebDeveloper.Generated.initializeWithJSON, false);
|