aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-04-28 14:28:10 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-06-05 14:47:40 +0200
commit7b6eefcd506ec03e1db422ca6e1f4f1bb8420d1c (patch)
tree3a4b3480ea513c37f98782dd62193f4379ff48aa /data/lib
parent55d9a312fbba91f1bcf5e3f3291b7bece8abb178 (diff)
downloadbugzilla-triage-7b6eefcd506ec03e1db422ca6e1f4f1bb8420d1c.tar.gz
Reorganization.
* fixingAttMIME, rhbzpage, xorgBugCategories moved to data/rhlib directory, * docs directory removed ... keep documentation in JSDocs; rewrite in MD is a waste of time. * move Ehsan’s scripts to separate data/tweaks directory.
Diffstat (limited to 'data/lib')
-rw-r--r--data/lib/addNewLinks.js77
-rw-r--r--data/lib/bug-page-mod.js1013
-rw-r--r--data/lib/cc-context.js8
-rw-r--r--data/lib/checkin-context.js13
-rw-r--r--data/lib/fixingAttMIME.js90
-rw-r--r--data/lib/preprocessDuplicates.js132
-rw-r--r--data/lib/rhbzpage.js512
-rw-r--r--data/lib/urltest.js5
-rw-r--r--data/lib/viewSource.js104
-rw-r--r--data/lib/xorgBugCategories.js74
10 files changed, 0 insertions, 2028 deletions
diff --git a/data/lib/addNewLinks.js b/data/lib/addNewLinks.js
deleted file mode 100644
index b8e7bd2..0000000
--- a/data/lib/addNewLinks.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/* ***** 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 Bugzilla Tweaks.
- *
- * The Initial Developer of the Original Code is Mozilla Foundation.
- * Portions created by the Initial Developer are Copyright (C) 2010
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Johnathan Nightingale <johnath@mozilla.com>
- * Ehsan Akhgari <ehsan@mozilla.com>
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either 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 ***** */
-
-function addNewLinks(d) {
- var product = d
- .querySelector("#field_container_product option[selected]");
- var component = d.querySelector("#component option[selected]");
-
- if (product) {
- var label = d.getElementById('field_container_product');
- var url = 'enter_bug.cgi?product='
- + encodeURIComponent(product.value);
- if (label) {
- createDeadLink("file_new_bug_product", "new", label, url,
- [], "parens");
- }
- }
-
- if (product && component) {
- var select = d.querySelector("select#component");
- var label = select.parentNode;
- var url = 'enter_bug.cgi?product='
- + encodeURIComponent(product.value) + '&component='
- + encodeURIComponent(component.value);
- if (label) {
- var componentElement = document
- .getElementById("bz_component_input");
- if (componentElement) { // We are in the Red Hat bugzilla
- // do we have components list visible?
- if (document.getElementById('bz_component_input').classList
- .contains("bz_default_hidden")) {
- label = document
- .getElementById("bz_component_edit_container");
- }
- }
- else {
- label = document.getElementById('component').parentNode;
- }
- createDeadLink("file_new_bug_component", "new", label,
- url, [], "parens");
- }
- }
-}
diff --git a/data/lib/bug-page-mod.js b/data/lib/bug-page-mod.js
deleted file mode 100644
index a7fb7e7..0000000
--- a/data/lib/bug-page-mod.js
+++ /dev/null
@@ -1,1013 +0,0 @@
-/* ***** 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 Bugzilla Tweaks.
- *
- * The Initial Developer of the Original Code is Mozilla Foundation.
- * Portions created by the Initial Developer are Copyright (C) 2010
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Johnathan Nightingale <johnath@mozilla.com>
- * Ehsan Akhgari <ehsan@mozilla.com>
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either 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 ***** */
-
-function tweakBugzilla(d) {
- // run on both bugzilla.m.o and bugzilla-stage-tip.m.o
- // if (!onBugzillaPage(d.URL))
- // return;
-
- // Put the quicksearch text in the quicksearch boxes
- quicksearchHandler(d);
-
- if (!d.getElementById("comments")) // don't process the mid-air collision
- // pages
- return;
-
- // Make the comment box bigger ... TODO not necessary on RH BZ, but doesn't hurt
- var commentBox = d.getElementById("comment");
- if (commentBox)
- commentBox.rows=20;
-
- addNewLinks(d);
-
- attachmentDiffLinkify(d);
-
- viewAttachmentSource(d);
-
- // Mark up history along right hand edge
- // TODO ... not sure what does this mean ... this
- // <link> element is I suppose everywhere.
- var historyLink = d.querySelector("link[title='Bug Activity']");
- if (!historyLink)
- return;
-
- // Add our own style for bugzilla-tweaks
- var style = d.createElement("style");
- style.setAttribute("type", "text/css");
- style.appendChild(d.createTextNode(
- ".bztw_history { border: none; font-weight: normal; width: 58em; margin-left: 5em; }" +
- ".bztw_inlinehistory { font-weight: normal; width: 56em; }" +
- ".bztw_history .old, .bztw_inlinehistory .old { text-decoration: line-through; }" +
- ".bztw_history .sep:before { content: \" \"; }" +
- ".bztw_unconfirmed { font-style: italic; }" +
- "tr.bz_tr_obsolete.bztw_plusflag { display: table-row !important; }" +
- '.bztw_historyitem + .bztw_historyitem:before { content: "; "; }'
- ));
- d.getElementsByTagName("head")[0].appendChild(style);
- style = d.createElement("style");
- style.setAttribute("type", "text/css");
- style.id = "bztw_cc";
- style.appendChild(d.createTextNode(
- ".bztw_cc { display: none; }" +
- '.bztw_historyitem.bztw_cc + .bztw_historyitem:before { content: ""; }' +
- '.bztw_historyitem:not([class~="bztw_cc"]) ~ .bztw_historyitem.bztw_cc + .bztw_historyitem:before { content: "; "; }'
- ));
- d.getElementsByTagName("head")[0].appendChild(style);
-
- var userNameCache = {};
- function getUserName(email) {
- if (email in userNameCache) {
- return userNameCache[email];
- }
- var emailLink = d.querySelectorAll("a.email");
- for (var i = 0; i < emailLink.length; ++i) {
- if (emailLink[i].href == "mailto:" + email) {
- return userNameCache[email] = htmlEncode(trimContent(emailLink[i]));
- }
- }
- return email;
- }
-
- // collect the flag names
- var flagNames = [], flags = {}, flagOccurrences = {};
- var flagRows = d.querySelectorAll("#flags tr");
- for (var i = 0; i < flagRows.length; ++i) {
- var item = flagRows[i].querySelectorAll("td");
- if (!item[1])
- continue;
- var name = trimContent(item[1]).replace('\u2011', '-', 'g');
- flagNames.push(name);
- flags[name] = item[1];
- }
- flagRows = d.querySelectorAll(".field_label[id^=field_label_cf_]");
- for (var i = 0; i < flagRows.length; ++i) {
- var name = trimContent(flagRows[i]).replace(/\:$/, '')
- .replace('\u2011', '-', 'g');
- flagNames.push(name);
- flags[name] = flagRows[i];
- }
- var flagCounter = 1;
-
- // =================================================
- function findFlag(item) {
- function lookup(names) {
- names = names.split(", ");
- var results = [];
- for (var j = 0; j < names.length; ++j) {
- var name = names[j].replace('\u2011', '-', 'g');
- for (var i = 0; i < flagNames.length; ++i) {
- var quotedFlagName = flagNames[i].replace('.', '\\.', 'g')
- .replace('\u2011', '-', 'g');
- if ((new RegExp('^' + quotedFlagName)).test(name)) {
- results.push(flagNames[i]);
- break;
- }
- }
- }
- return results;
- }
- var base = item[4] ? 2 : 0;
- // handle normal flags
- if (trimContent(item[base]) == 'Flags') {
- var result = lookup(trimContent(item[base + 1])).
- concat(lookup(trimContent(item[base + 2])));
- return result;
- }
- // handle special pseudo-flags
- return lookup(trimContent(item[base]));
- }
-
- var DataStore = new DataStoreCtor(d);
-
- var AttachmentFlagHandler = new AttachmentFlagHandlerCtor();
- AttachmentFlagHandler.determineInterestingFlags(d);
-
- var CheckinComment = new CheckinCommentCtor();
- CheckinComment.initialize(d, AttachmentFlagHandler._interestingFlags);
-
- var iframe = d.createElement('iframe');
- iframe.src = historyLink.href;
- iframe.style.display = "none";
- iframe.addEventListener("load", function() {
- preprocessDuplicateMarkers(d, iframe.contentDocument);
-
- var historyItems = iframe.contentDocument.querySelectorAll('#bugzilla-body tr');
- var commentTimes = d.querySelectorAll('.bz_comment_time');
-
- // Sometimes the history will stack several changes together,
- // and we'll want to append the data from the Nth item to the
- // div created in N-1
- var i=0, j=0, flagsFound;
- for (; i < historyItems.length; i++) {
- var item = historyItems[i].querySelectorAll("td");
- if (!item[1])
- continue;
-
- var reachedEnd = false;
- for (; j < commentTimes.length; j++) {
- if (trimContent(item[1]) > trimContent(commentTimes[j])) {
- if (j < commentTimes.length - 1) {
- continue;
- } else {
- reachedEnd = true;
- }
- }
-
- var commentHead = commentTimes[j].parentNode;
-
- var mainUser = commentHead.querySelector(".bz_comment_user a.email")
- .href
- .substr(7);
- var user = trimContent(item[0]);
- var mainTime = trimContent(commentTimes[j]);
- var time = trimContent(item[1]);
- var inline = (mainUser == user && time == mainTime);
-
- var currentDiv = d.createElement("div");
- var userPrefix = '';
- if (inline) {
- // assume that the change was made by the same user
- commentHead.appendChild(currentDiv);
- currentDiv.setAttribute("class", "bztw_inlinehistory");
- } else {
- // the change was made by another user
- if (!reachedEnd) {
- var parentDiv = commentHead.parentNode;
- if (parentDiv.previousElementSibling &&
- parentDiv.previousElementSibling.className.indexOf("bztw_history") >= 0) {
- currentDiv = parentDiv.previousElementSibling;
- } else {
- parentDiv.parentNode.insertBefore(currentDiv, parentDiv);
- }
- } else {
- var parentDiv = commentHead.parentNode;
- if (parentDiv.nextElementSibling &&
- parentDiv.nextElementSibling.className.indexOf("bztw_history") >= 0) {
- currentDiv = parentDiv.nextElementSibling;
- } else {
- parentDiv.parentNode.appendChild(currentDiv);
- }
- }
- currentDiv.setAttribute("class", "bz_comment bztw_history");
- userPrefix += "<a class=\"email\" href=\"mailto:" +
- htmlEncode(trimContent(item[0])) + "\" title=\"" +
- htmlEncode(trimContent(item[1])) +"\">" +
- getUserName(trimContent(item[0])) + "</a>: ";
- }
- // check to see if this is a flag setting
- flagsFound = findFlag(item);
- for (var idx = 0; idx < flagsFound.length; ++idx) {
- var flag = flagsFound[idx];
- flagOccurrences[flag] = 'flag' + flagCounter;
- if (inline) {
- var anchor = d.createElement("a");
- anchor.setAttribute("name", "flag" + flagCounter);
- commentHead.insertBefore(anchor, commentHead.firstChild);
- } else {
- userPrefix += '<a name="flag' + flagCounter + '"></a>';
- }
- ++flagCounter;
- }
-
- var attachmentFlagAnchors = AttachmentFlagHandler.handleItem(user, item);
- if (inline) {
- for (var idx = 0; idx < attachmentFlagAnchors.length; ++idx) {
- var anchor = d.createElement("a");
- anchor.setAttribute("name", attachmentFlagAnchors[idx]);
- commentHead.insertBefore(anchor, commentHead.firstChild);
- }
- } else {
- userPrefix += attachmentFlagAnchors.map(function(name) '<a name="' + name + '"></a>').join("");
- }
-
- var ccOnly = (trimContent(item[2]) == 'CC');
- var ccPrefix = ccOnly ? '<span class="bztw_cc bztw_historyitem">' :
- '<span class="bztw_historyitem">',
- ccSuffix = '</span>';
- var html = userPrefix +
- ccPrefix +
- transformType(trimContent(item[2]), d, trimContent(item[3]),
- trimContent(item[4])) + ": " +
- formatTransition(trimContent(item[3]), trimContent(item[4]),
- trimContent(item[2]), d, iframe.contentDocument);
-
- var nextItemsCount = item[0].rowSpan;
- for (var k = 1; k < nextItemsCount; ++k) {
- ccOnly = false;
- item = historyItems[++i].querySelectorAll("td")
- ccPrefix = (trimContent(item[0]) == 'CC') ?
- '<span class="bztw_cc bztw_historyitem">' : '<span class="bztw_historyitem">';
- // avoid showing a trailing semicolon if the previous entry
- // wasn't a CC and this one is
- var prefix = ccSuffix + ccPrefix;
- // check to see if this is a flag setting
- flagsFound = findFlag(item);
- for (var idx = 0; idx < flagsFound.length; ++idx) {
- var flag = flagsFound[idx];
- flagOccurrences[flag] = 'flag' + flagCounter;
- if (inline) {
- var anchor = d.createElement("a");
- anchor.setAttribute("name", "flag" + flagCounter);
- commentHead.insertBefore(anchor, commentHead.firstChild);
- } else {
- prefix += '<a name="flag' + flagCounter + '"></a>';
- }
- ++flagCounter;
- }
-
- var attachmentFlagAnchors = AttachmentFlagHandler.handleItem(user, item);
- if (inline) {
- for (var idx = 0; idx < attachmentFlagAnchors.length; ++idx) {
- var anchor = d.createElement("a");
- anchor.setAttribute("name", attachmentFlagAnchors[idx]);
- commentHead.insertBefore(anchor, commentHead.firstChild);
- }
- } else {
- prefix += attachmentFlagAnchors.map(function(name) '<a name="' + name + '"></a>').join("");
- }
-
- html += prefix +
- transformType(trimContent(item[0]), d, trimContent(item[1]),
- trimContent(item[2])) + ": " +
- formatTransition(trimContent(item[1]), trimContent(item[2]),
- trimContent(item[0]), d, iframe.contentDocument);
- }
- html += ccSuffix;
- if (ccOnly) {
- html = '<div class="bztw_cc">' + html + '</div>';
- } else {
- html = '<div>' + html + '</div>';
- }
- currentDiv.innerHTML += html;
- break;
- }
- }
-
- handleEmptyCollapsedBoxes(d);
-
- // Set the latest flag links if necessary
- for (var flagName in flagOccurrences) {
- flags[flagName].innerHTML = '<a href="#' + flagOccurrences[flagName] + '">'
- + flags[flagName].innerHTML + '</a>';
- }
-
- AttachmentFlagHandler.setupLinks(d);
- },true);
- d.body.appendChild(iframe);
-
- tbplbotSpamCollapser(d);
-}
-
-// ===================================================
-
-var TransformValues = {
- linkifyURLs: function (str) {
- return str.replace(/((https?|ftp)\:\/\/[\S]+)/g, '<a href="$1">$1</a>');
- },
- linkifyBugAndCommentNumbers: function (str) {
- return str.replace(/(bug )(\d+) (comment )(\d+)/gi, '<a href="show_bug.cgi?id=$2#c$4">$1\n$2 $3\n$4</a>');
- },
- linkifyCommentNumbers: function (str) {
- return str.replace(/(comment (\d+))/gi, '<a href="#c$2">$1</a>');
- },
- linkifyBugNumbers: function (str) {
- return str.replace(/(bug (\d+))/gi, '<a href="show_bug.cgi?id=$2">$1</a>');
- },
- linkifyDependencies: function (str, type, doc, histDoc) {
- switch (type) {
- case "Blocks":
- case "Depends on":
- case "Duplicate":
- str = str.replace(/\d+/g, function(str) {
- var link = histDoc.querySelector("a[href='show_bug.cgi?id=" + str + "']");
- if (link) {
- var class_ = '';
- if (/bz_closed/i.test(link.className)) {
- class_ += 'bz_closed ';
- } else if (/bztw_unconfirmed/i.test(link.className)) {
- class_ += 'bztw_unconfirmed ';
- }
- var parent = link.parentNode;
- if (parent) {
- if (parent.tagName.toLowerCase() == "i") {
- class_ += 'bztw_unconfirmed ';
- }
- if (/bz_closed/i.test(parent.className)) {
- class_ += 'bz_closed ';
- }
- }
- str = applyClass(class_,
- '<a title="' + htmlEncode(link.title) + '" href="show_bug.cgi?id=' + htmlEncode(str) + '"' +
- (link.hasAttribute("name") ? (' name="' + htmlEncode(link.getAttribute("name")) + '"') : '') +
- '>' + htmlEncode(str) + '</a>');
- }
- return str;
- });
- }
- return str;
- }
-};
-
-// ===============================================================================
-
-function transform(str, type, doc, histDoc) {
- for (var funcname in TransformValues) {
- var func = TransformValues[funcname];
- str = func.call(null, str, type, doc, histDoc);
- }
- return str
-}
-
-var TransformTypes = {
- linkifyAttachments: function (str, doc) {
- return str.replace(/(Attachment #(\d+))/g, function (str, x, id) {
- var link = doc.querySelector("a[href='attachment.cgi?id=" + id + "']");
- if (link) {
- var class_ = '';
- if (/bz_obsolete/i.test(link.className)) {
- class_ += 'bz_obsolete ';
- }
- var parent = link.parentNode;
- if (parent && /bz_obsolete/i.test(parent.className)) {
- class_ += 'bz_obsolete ';
- }
- if (link.querySelector(".bz_obsolete")) {
- class_ += 'bz_obsolete ';
- }
- str = applyClass(class_,
- '<a title="' + htmlEncode(trimContent(link)) + '" href="attachment.cgi?id=' +
- htmlEncode(id) + '&action=edit">' + htmlEncode(str) + '</a>');
- }
- return str;
- });
- },
- changeDependencyLinkTitles: function (str, doc, old, new_) {
- switch (str) {
- case "Blocks":
- case "Depends on":
- if (old.length && !new_.length) { // if the dependency was removed
- str = "No longer " + str[0].toLowerCase() + str.substr(1);
- }
- break;
- }
- return str;
- }
-};
-
-// =======================================================================
-
-function transformType(str, doc, old, new_) {
- for (var funcname in TransformTypes) {
- var func = TransformTypes[funcname];
- str = func.call(null, str, doc, old, new_);
- }
- return str;
-}
-
-// new is a keyword, which makes this function uglier than I'd like
-function formatTransition(old, new_, type, doc, histDoc) {
- if (old.length) {
- old = transform(htmlEncode(old), type, doc, histDoc);
- var setOldStyle = true;
- switch (type) {
- case "Blocks":
- case "Depends on":
- setOldStyle = false;
- break;
- }
- if (setOldStyle) {
- old = '<span class="old">' + old + '</span>';
- }
- }
- if (new_.length) {
- new_ = '<span class="new">' + transform(htmlEncode(new_), type, doc, histDoc) + '</span>';
- }
- var mid = '';
- if (old.length && new_.length) {
- mid = ' <span style="font-size: 150%;">&rArr;</span> ';
- }
- return old + mid + new_;
-}
-
-// =========================================================================
-
-function trimContent(el) {
- return el.textContent.trim();
-}
-
-function AttachmentFlag(flag) {
- for (var name in flag)
- this[name] = flag[name];
-}
-AttachmentFlag.prototype = {
- equals: function(flag) {
- if (this.type != flag.type ||
- this.name != flag.name ||
- this.setter != flag.setter ||
- ("requestee" in this && !("requestee" in flag)) ||
- ("requestee" in flag && !("requestee" in this)))
- return false;
- return this.requestee == flag.requestee;
- }
-};
-
-var reAttachmentDiff = /attachment\.cgi\?id=(\d+)&action=diff$/i;
-var reviewBoardUrlBase = "http://reviews.visophyte.org/";
-
-// ===============================================================================
-
-/**
- * Whenever we find a patch with a diff, insert an additional link to asuth's
- * review board magic.
- */
-function attachmentDiffLinkify(doc) {
- var bug_id = getBugNo(doc);
-
- var table = doc.getElementById("attachment_table");
- if (!table)
- return;
- var rows = table.querySelectorAll("tr");
- for (var i = 0; i < rows.length; ++i) {
- var item = rows[i].querySelectorAll("td");
- if (item.length != 3)
- continue;
- // get the ID of the attachment
- var links = item[2].querySelectorAll("a");
- if (links.length != 2)
- continue;
- var match = reAttachmentDiff.exec(links[1].href);
- if (match) {
- var attach_id = match[1];
- var parentNode = links[1].parentNode;
- parentNode.appendChild(doc.createTextNode(" | "));
- var linkNode = doc.createElement("a");
- linkNode.href = reviewBoardUrlBase + "r/bzpatch/bug" + bug_id + "/attach" + attach_id + "/";
- linkNode.textContent = "Review";
- parentNode.appendChild(linkNode);
- }
- }
-}
-
-function quicksearchHandler(doc) {
- var win = doc.defaultView;
- var match = /quicksearch=([^&]+)/i.exec(win.location.search);
- if (match) {
- var quicksearch = unescape(match[1].replace('+', ' ', 'g'));
- var quicksearchBox = doc.querySelectorAll("input[name=quicksearch]");
- if (quicksearchBox) {
- for (var i = 0; i < quicksearchBox.length; ++i) {
- quicksearchBox[i].value = quicksearch;
- }
- }
- }
-}
-
-function AttachmentFlagHandlerCtor() {
- this._db = {};
- this._interestingFlags = {};
-}
-AttachmentFlagHandlerCtor.prototype = {
- determineInterestingFlags: function (doc) {
- var table = doc.getElementById("attachment_table");
- if (!table)
- return;
- var rows = table.querySelectorAll("tr");
- for (var i = 0; i < rows.length; ++i) {
- var item = rows[i].querySelectorAll("td");
- if (item.length != 3 ||
- item[1].className.indexOf("bz_attach_flags") < 0 ||
- trimContent(item[1]) == "no flags")
- continue;
- // get the ID of the attachment
- var link = item[0].querySelector("a");
- if (!link)
- continue;
- var match = this._reAttachmentHref.exec(link.href);
- if (match) {
- var attachmentID = match[1];
- if (!(attachmentID in this._interestingFlags)) {
- this._interestingFlags[attachmentID] = [];
- }
- var text = "";
- var previousText = "";
- var previousEl = null;
- for (var el = item[1].firstChild; el.nextSibling; el = el.nextSibling) {
- var thisText = trimContent(el).replace('\u2011', '-', 'g');
- text += thisText;
- if (this._reParsePartToLinkify.test(thisText)) {
- previousText = thisText;
- previousEl = el;
- }
- if (el.nodeType != el.ELEMENT_NODE ||
- el.localName.toLowerCase() != "br")
- continue;
- match = this._reParseInterestingFlag.exec(text);
- if (match) {
- var flag = {};
- flag.setter = match[1];
- flag.name = match[2];
- if (match[4] == "+" || match[4] == "-") {
- flag.type = match[4];
- } else {
- flag.type = "?";
- if (match[7]) {
- flag.requestee = match[7];
- }
- }
-
- // always show the obsolete attachments with a + flag
- if (flag.type == "+") {
- var parent = link.parentNode;
- while (parent) {
- if (parent.tagName.toLowerCase() == "tr") {
- if (/bz_tr_obsolete/i.test(parent.className)) {
- parent.className += " bztw_plusflag";
- }
- break;
- }
- parent = parent.parentNode;
- }
- }
-
- // try to put the flag name and type part in a span
- // which we will
- // use in setupLinks to inject links into.
- match = this._reLinkifyInterestingFlag.exec(previousText);
- if (match) {
- previousEl.textContent = match[1];
- if (match[3]) {
- var textNode = doc.createTextNode(match[3]);
- previousEl.parentNode.insertBefore(textNode, previousEl.nextSibling);
- }
- var span = doc.createElement("span");
- span.textContent = match[2];
- previousEl.parentNode.insertBefore(span, previousEl.nextSibling);
-
- flag.placeholder = span;
- }
-
- this._interestingFlags[attachmentID].push(new AttachmentFlag(flag));
- }
- text = "";
- previousText = "";
- previousEl = null;
- }
- }
- }
- },
- handleItem: function (name, item) {
- var anchorsCreated = [];
- var base = item[4] ? 2 : 0;
- var what = trimContent(item[base]);
- var match = this._reAttachmentFlagName.exec(what);
- if (match) {
- var id = match[1];
- if (!(id in this._db)) {
- this._db[id] = [];
- }
- name = name.split('@')[0]; // convert the name to the fraction
- // before the @
- var added = this._parseData(name, trimContent(item[base + 2]));
- for (var i = 0; i < added.length; ++i) {
- var flag = added[i];
- if (!(id in this._interestingFlags))
- continue;
- for (var j = 0; j < this._interestingFlags[id].length; ++j) {
- // Take care to not assign an anchor to a flag which already has one
- if (flag.equals(this._interestingFlags[id][j]) &&
- !("anchor" in this._interestingFlags[id][j])) {
- // found an interesting flag
- this._interestingFlags[id][j].anchor = this.anchorName;
- anchorsCreated.push(this.anchorName);
- this._counter++;
- break;
- }
- }
- }
- }
- return anchorsCreated;
- },
- setupLinks: function (doc) {
- for (var id in this._interestingFlags) {
- for (var i = 0; i < this._interestingFlags[id].length; ++i) {
- var flag = this._interestingFlags[id][i];
- if ("placeholder" in flag &&
- "anchor" in flag) {
- var link = doc.createElement("a");
- link.href = "#" + flag.anchor;
- link.textContent = flag.placeholder.textContent;
- flag.placeholder.replaceChild(link, flag.placeholder.firstChild);
- }
- }
- }
- },
- _parseData: function (name, str) {
- var items = str.replace('\u2011', '-', 'g').split(', '), flags = [];
- for (var i = 0; i < items.length; ++i) {
- if (!items[i].length)
- continue;
-
- var match = this._reParseRequest.exec(items[i]);
- if (match) {
- var flag = {};
- flag.name = match[1];
- flag.setter = name;
- if (match[4]) {
- flag.requestee = match[4];
- }
- flag.type = match[2];
- flags.push(new AttachmentFlag(flag));
- }
- }
- return flags;
- },
- _counter: 1,
- get anchorName() {
- return "attachflag" + this._counter;
- },
- _reParseRequest: /^(.+)([\?\-\+])(\((.+)@.+\))?$/,
- _reParsePartToLinkify: /^\s*:\s+.+[\-\+\?](\s*\()?\s*$/,
- _reParseInterestingFlag: /^(.+):\s+(.+)(([\-\+])|\?(\s+(\((.+)\)))?)$/,
- _reLinkifyInterestingFlag: /^(\s*:\s+)(.+[\-\+\?])(\s*\(\s*)?$/,
- _reAttachmentHref: /attachment\.cgi\?id=(\d+)$/i,
- _reAttachmentFlagName: /^Attachment\s+#(\d+)\s+Flags$/i
-};
-
-function CheckinCommentCtor() {
- this.bugNumber = null;
- this.summarySpan = null;
- this.checkinFlags = "";
-}
-CheckinCommentCtor.prototype = {
- initialize: function(doc, flags) {
- this.bugNumber = getBugNo(doc);
- var summarySpan = doc.getElementById("short_desc_nonedit_display");
- if (summarySpan) {
- this.summary = summarySpan.textContent;
- }
- var checkinFlagsMap = {};
- for (var id in flags) {
- for (var i = 0; i < flags[id].length; ++i) {
- var flag = flags[id][i];
- if (flag.type == "+") {
- var name = flag.name;
- if (name == "review") {
- name = "r";
- } else if (name == "superreview") {
- name = "sr";
- } else if (name == "ui-review") {
- name = "ui-r";
- } else if (name == "feedback") {
- name = "f";
- }
- if (!(name in checkinFlagsMap)) {
- checkinFlagsMap[name] = {};
- }
- checkinFlagsMap[name][flag.setter]++;
- }
- }
- }
- var flagsOrdered = [];
- for (var name in checkinFlagsMap) {
- flagsOrdered.push(name);
- }
- flagsOrdered.sort(function (a, b) {
- function convertToNumber(x) {
- switch (x) {
- case "f":
- return -4;
- case "r":
- return -3;
- case "sr":
- return -2;
- case "ui-r":
- return -1;
- default:
- return 0;
- }
- }
- var an = convertToNumber(a);
- var bn = convertToNumber(b);
- if (an == 0 && bn == 0) {
- return a < b ? -1 : (a = b ? 0 : 1);
- } else {
- return an - bn;
- }
- });
- var checkinFlags = [];
- for (var i = 0; i < flagsOrdered.length; ++i) {
- var name = flagsOrdered[i];
- var flag = name + "=";
- var setters = [];
- for (var setter in checkinFlagsMap[name]) {
- setters.push(setter);
- }
- flag += setters.join(",");
- checkinFlags.push(flag);
- }
- this.checkinFlags = checkinFlags.join(" ");
- if (this.isValid()) {
- var div = doc.createElement("div");
- div.setAttribute("style", "display: none;");
- div.id = "__bz_tw_checkin_comment";
- div.appendChild(doc.createTextNode(this.toString()));
- doc.body.appendChild(div);
- }
- },
- isValid: function() {
- return this.bugNumber != null &&
- this.summary != null;
- },
- toString: function() {
- if (!this.isValid()) {
- return "";
- }
- var message = "Bug " + this.bugNumber + " - " + this.summary;
- if (this.checkinFlags.length) {
- message += "; " + this.checkinFlags;
- }
- return message;
- }
-};
-
-function DataStoreCtor(doc) {
- this.storage = doc.defaultView.localStorage;
- this.data = {};
- this.bugNumber = null;
- function visualizeStoredData() {
- var data = "";
- for (var i = 0; i < window.localStorage.length; ++i) {
- var key = window.localStorage.key(i);
- data += key + ": " + JSON.parse(window.localStorage.getItem(key).toString()).toSource() + "\n";
- }
- open("data:text/html,<pre>" + escape(htmlEncode(data)) + "</pre>");
- }
- function clearStoredData() {
- var count = window.localStorage.length;
- if (count > 0) {
- if (window.confirm("You currently have data stored for " + count + " bugs.\n\n" +
- "Are you sure you want to clear this data? This action cannot be undone.")) {
- window.localStorage.clear();
- }
- } else {
- alert("You don't have any data stored about your bugs");
- }
- }
- var script = doc.createElement("script");
- script.appendChild(doc.createTextNode(visualizeStoredData.toSource() +
- clearStoredData.toSource() +
- htmlEncode.toSource()));
- doc.body.appendChild(script);
- this.initialize(doc);
-}
-
-DataStoreCtor.prototype = {
- initialize: function(doc) {
- this.bugNumber = getBugNo(doc);
- var data = this._ensureEntry(this.bugNumber, this.data);
- // last visited date
- data.visitedTime = (new Date()).getTime();
- // last comment count
- data.commentCount = doc.querySelectorAll(".bz_comment").length;
- // last status of bug flags
- var flags = this._ensureEntry("flags", data);
- var flagRows = doc.querySelectorAll("#flags tr");
- for (var i = 0; i < flagRows.length; ++i) {
- var flagCols = flagRows[i].querySelectorAll("td");
- if (flagCols.length != 3) {
- continue;
- }
- var flagName = trimContent(flagCols[1]);
- var flagValue = flagCols[2].querySelector("select");
- if (flagValue) {
- flagValue = flagValue.value;
- } else {
- continue;
- }
- flags[flagName] = flagValue;
- }
- flagRows = doc.querySelectorAll(".field_label[id^=field_label_cf_]");
- for (var i = 0; i < flagRows.length; ++i) {
- var flagName = trimContent(flagRows[i]).replace(/:$/, "");
- var flagValue = flagRows[i].parentNode.querySelector("select");
- if (flagValue) {
- flagValue = flagValue.value;
- } else {
- continue;
- }
- flags[flagName] = flagValue;
- }
- // last attachments
- var attachmentTable = doc.getElementById("attachment_table");
- var attachmentRows = attachmentTable.querySelectorAll("tr");
- for (var i = 0; i < attachmentRows.length; ++i) {
- var attachmentCells = attachmentRows[i].querySelectorAll("td");
- if (attachmentCells.length != 3) {
- continue;
- }
- var link = attachmentCells[0].querySelector("a");
- var match = this._reAttachmentHref.exec(link.href);
- if (match) {
- var attachmentID = match[1];
- var attachment = this._ensureEntry("attachments", data);
- var attachmentFlags = this._ensureArray(attachmentID, attachment);
- for (var el = attachmentCells[1].firstChild; el.nextSibling; el = el.nextSibling) {
- if (el.nodeType != el.TEXT_NODE) {
- continue;
- }
- var text = trimContent(el);
- if (!text) {
- continue;
- }
- match = this._reParseInterestingFlag.exec(text);
- if (match) {
- var flag = {};
- flag.setter = match[1];
- flag.name = match[2];
- if (match[4] == "+" || match[4] == "-") {
- flag.type = match[4];
- } else {
- flag.type = "?";
- if (match[7]) {
- flag.requestee = match[7];
- }
- }
- attachmentFlags.push(flag);
- }
- }
- }
- }
- // Write data to storage
- for (var key in this.data) {
- this._ensure(key, this.storage, JSON.stringify(this.data[key]));
- }
- },
- _ensure: function(entry, obj, val) {
- if (obj.toString().indexOf("[object Storage") >= 0) {
- obj.setItem(entry, val);
- } else {
- if (typeof obj[entry] == "undefined")
- obj[entry] = val;
- return obj[entry];
- }
- },
- _ensureEntry: function(entry, obj) {
- return this._ensure(entry, obj, {});
- },
- _ensureArray: function(entry, obj) {
- return this._ensure(entry, obj, []);
- },
- _reParseInterestingFlag: /^(.+):\s+(.+)(([\-\+])|\?(\s+(\((.+)\)))?)$/,
- _reAttachmentHref: /attachment\.cgi\?id=(\d+)$/i
-};
-
-
-function getUserName(doc) {
- var links = doc.querySelectorAll("#header .links li");
- var last = links[links.length - 1];
- if (last.innerHTML.indexOf("logout") >= 0) {
- return trimContent(last.lastChild);
- }
- return null;
-}
-
-function handleEmptyCollapsedBoxes(doc) {
- // first, try to get the display style of a CC field (any would do)
- var historyBoxes = doc.querySelectorAll(".bztw_history");
- for (var i = 0; i < historyBoxes.length; ++i) {
- var box = historyBoxes[i];
- for (var j = 0; j < box.childNodes.length; ++j) {
- var child = box.childNodes[j], found = true;
- if (child.nodeType != child.ELEMENT_NODE)
- continue;
- if (child.className == "sep") {
- // separators are insignificant
- continue;
- } else if (!/bztw_cc/.test(child.className)) {
- found = false;
- break;
- }
- }
- if (found) {
- box.className += " bztw_cc";
- }
- }
-}
-
-function applyClass(class_, html) {
- return '<span class="' + class_ + '">' + html + '</span>';
-}
-
-function htmlEncode(str) {
- return str.replace('&', '&amp;', 'g')
- .replace('<', '&lt;', 'g')
- .replace('>', '&gt;', 'g')
- .replace('"', '&quot;', 'g');
-}
-
-function tbplbotSpamCollapser(d) {
- var collapseExpandBox = d.querySelector(".bz_collapse_expand_comments");
- if (!collapseExpandBox) {
- return;
- }
- var a = d.createElement("a");
- a.href = "#";
- a.addEventListener("click", function(e) {
- e.preventDefault();
- var win = d.defaultView;
- var comments = d.querySelectorAll(".bz_comment");
- for (var i = 0; i < comments.length; ++i) {
- var comment = comments[i];
- try {
- if (comment.querySelector(".bz_comment_user a.email").href.substr(7) ==
- "tbplbot@gmail.com") {
- win.collapse_comment(comment.querySelector(".bz_collapse_comment"),
- comment.querySelector(".bz_comment_text"));
- }
- } catch (e) {
- continue;
- }
- }
- return false;
- }, false);
- a.appendChild(d.createTextNode("Collapse All tbplbot Comments"));
- var li = d.createElement("li");
- li.appendChild(a);
- collapseExpandBox.appendChild(li);
-}
-
-tweakBugzilla(document);
diff --git a/data/lib/cc-context.js b/data/lib/cc-context.js
deleted file mode 100644
index 81b0a2d..0000000
--- a/data/lib/cc-context.js
+++ /dev/null
@@ -1,8 +0,0 @@
-self.on('click', function(node, data) {
- var style = document.getElementById("bztw_cc");
- style.disabled = !style.disabled;
-});
-
-self.on('context', function(node) {
- return onBugzillaPage(document.URL);
-});
diff --git a/data/lib/checkin-context.js b/data/lib/checkin-context.js
deleted file mode 100644
index 0ccec0c..0000000
--- a/data/lib/checkin-context.js
+++ /dev/null
@@ -1,13 +0,0 @@
-self.on('click', function(node, data) {
- var message = document
- .getElementById("__bz_tw_checkin_comment");
- self.postMessage(message.textContent);
-});
-
-self.on('context', function(node) {
- if (!onBugzillaPage(document.URL))
- return false;
- var message = document
- .getElementById("__bz_tw_checkin_comment");
- return !!message;
-});
diff --git a/data/lib/fixingAttMIME.js b/data/lib/fixingAttMIME.js
deleted file mode 100644
index 365cfae..0000000
--- a/data/lib/fixingAttMIME.js
+++ /dev/null
@@ -1,90 +0,0 @@
-// Released under the MIT/X11 license
-// http://www.opensource.org/licenses/mit-license.php
-
-var reqCounter = 0; // TODO should be probably a dict indexed by called method
-
-/**
- * Callback function for the XMLRPC request
- *
- * @param ret
- * Object with xmlhttprequest response with attributes: + status -- int
- * return code + statusText + responseHeaders + responseText
- */
-function XMLRPCcallback() {
- reqCounter--;
- if (reqCounter <= 0) {
- setTimeout(function() {
- window.location.reload(true);
- }, 1000);
- }
-}
-
-/**
- * The worker function -- call XMLRPC to fix MIME type of the particular
- * attachment
- *
- * @param id
- * Integer with the attachment id to be fixed
- * @param type
- * String with the new MIME type, optional defaults to "text/plain"
- * @param email
- * Boolean whether email should be sent to appropriate person; option,
- * defaults to false
- *
- * updateAttachMimeType($data_ref, $username, $password)
- *
- * Update the attachment mime type of an attachment. The first argument is a
- * data hash containing information on the new MIME type and the attachment id
- * that you want to act on.
- *
- * $data_ref = { "attach_id" => "<Attachment ID>", # Attachment ID to perform
- * MIME type change on. "mime_type" => "<New MIME Type Value>", # Legal MIME
- * type value that you want to change the attachment to. "nomail" => 0, #
- * OPTIONAL Flag that is either 1 or 0 if you want email to be sent or not for
- * this change };
- *
- */
-function fixAttachById(id, XMLRPCURL, type, email) {
- var params = [];
-
- if (type === undefined) {
- type = "text/plain";
- }
- if (email === undefined) {
- email = false;
- }
-
- // https://bugzilla.redhat.com/\
- // docs/en/html/api/extensions/compat_xmlrpc/code/webservice.html
- // test on https://bugzilla.redhat.com/show_bug.cgi?id=485145
- params.push({
- 'attach_id' : id,
- 'mime_type' : type,
- 'nomail' : !email
- });
-
- self.postMessage(new Message("MakeXMLRPCall", {
- url : XMLRPCURL,
- login : getLogin(),
- method : "bugzilla.updateAttachMimeType",
- params : params,
- callRPC : "FixAttachmentMIMECallback"
- }));
- reqCounter++;
-}
-
-/**
- * Add a link to the bad attachment for fixing it.
- *
- * @param
- * <TR> DOM jQuery element with a bad attachment
- * @return none
- */
-function addTextLink(row, xmlRpcUrl) {
- var elemS = row[4].getElementsByTagName("td");
- var elem = elemS[elemS.length - 1];
- createDeadLink("addFix2TextLink", "text", elem, fixAttachById,
- [
- row[1], xmlRpcUrl
- ], "br");
-}
diff --git a/data/lib/preprocessDuplicates.js b/data/lib/preprocessDuplicates.js
deleted file mode 100644
index d312fb9..0000000
--- a/data/lib/preprocessDuplicates.js
+++ /dev/null
@@ -1,132 +0,0 @@
-/* ***** 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 Bugzilla Tweaks.
- *
- * The Initial Developer of the Original Code is Mozilla Foundation.
- * Portions created by the Initial Developer are Copyright (C) 2010
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Johnathan Nightingale <johnath@mozilla.com>
- * Ehsan Akhgari <ehsan@mozilla.com>
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either 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 ***** */
-
-function preprocessDuplicateMarkers(mainDoc, histDoc) {
- var comments = mainDoc.querySelectorAll(".bz_comment");
- var reDuplicate = /^\s*\*\*\*\s+Bug\s+(\d+)\s+has\s+been\s+marked\s+as\s+a\s+duplicate\s+of\s+this\s+bug.\s+\*\*\*\s*$/i;
- var row = 0;
- var rows = histDoc.querySelectorAll("#bugzilla-body tr");
- for ( var i = 1 /* comment 0 can never be a duplicate marker */; i < comments.length; ++i) {
- var textHolder = comments[i]
- .querySelector(".bz_comment_text");
- var match = reDuplicate.exec(trimContent(textHolder));
- if (match) {
- // construct the table row to be injected in histDoc
- var bugID = match[1];
- var email = comments[i]
- .querySelector(".bz_comment_user .email").href
- .substr(7);
- var link = textHolder.querySelector("a");
- var title = link.title;
- var time = trimContent(comments[i]
- .querySelector(".bz_comment_time"));
- var what = 'Duplicate';
- var removed = '';
- var number = trimContent(
- comments[i].querySelector(".bz_comment_number"))
- .replace(/[^\d]+/g, '');
- var class_ = '';
- if (/bz_closed/i.test(link.className + " "
- + link.parentNode.className)) {
- class_ += 'bz_closed ';
- }
- if (link.parentNode.tagName.toLowerCase() == 'i') {
- class_ += 'bztw_unconfirmed ';
- }
- var added = '<a href="show_bug.cgi?id=' + bugID
- + '" title="' + htmlEncode(title) + '" name="c'
- + number + '" class="' + class_ + '">' + bugID
- + '</a>';
-
- // inject the table row
- var reachedEnd = false;
- for (; row < rows.length; ++row) {
- var cells = rows[row].querySelectorAll("td");
- if (cells.length != 5)
- continue;
- if (time > trimContent(cells[1])) {
- if (row < rows.length - 1) {
- continue;
- }
- else {
- reachedEnd = true;
- }
- }
- if (time == trimContent(cells[1])) {
- cells[0].rowSpan++;
- cells[1].rowSpan++;
- var rowContents = [
- what, removed, added
- ];
- var tr = histDoc.createElement("tr");
- rowContents.forEach(function(cellContents) {
- var td = histDoc.createElement("td");
- td.innerHTML = cellContents;
- tr.appendChild(td);
- });
- if (row != rows.length - 1) {
- rows[row].parentNode.insertBefore(tr, rows[row + 1]);
- }
- else {
- rows[row].parentNode.appendChild(tr);
- }
- }
- else {
- var rowContents = [
- email, time, what, removed, added
- ];
- var tr = histDoc.createElement("tr");
- rowContents.forEach(function(cellContents) {
- var td = histDoc.createElement("td");
- td.innerHTML = cellContents;
- tr.appendChild(td);
- });
- if (reachedEnd) {
- rows[row].parentNode.appendChild(tr);
- }
- else {
- rows[row].parentNode.insertBefore(tr, rows[row]);
- }
- }
- break;
- }
-
- // remove the comment from the main doc
- comments[i].parentNode.removeChild(comments[i]);
- }
- }
-}
diff --git a/data/lib/rhbzpage.js b/data/lib/rhbzpage.js
deleted file mode 100644
index 752e471..0000000
--- a/data/lib/rhbzpage.js
+++ /dev/null
@@ -1,512 +0,0 @@
-// Released under the MIT/X11 license
-// http://www.opensource.org/licenses/mit-license.php
-
-// For identification of graphics card
-var manuChipStrs = [ [ "ATI Radeon", "ATI", "1002" ],
- [ "ATI Mobility Radeon", "ATI", "1002" ],
- [ "Intel Corporation", "INTEL", "8086" ], [ "NVIDIA", "NV", "10de" ] ];
-
-// http://en.wikipedia.org/wiki/HSL_color_space
-// when only the value of S is changed
-// stupido!!! the string is value in hex for each color
-var RHColor = new Color(158, 41, 43); // RGB 158, 41, 43; HSL 359, 1, 39
-var FedoraColor = new Color(0, 40, 103); // RGB 0, 40, 103; HSL 359, 1, 39
-var RawhideColor = new Color(0, 119, 0); // or "green", or RGB 0, 119, 0, or
- // HSL
-// 120, 0, 23
-var RHITColor = new Color(102, 0, 102); // RGB 102, 0, 102; HSL 300, 0, 20
-
-// [ 126.386] (--) NOUVEAU(0): Chipset: "NVIDIA NVaf"
-var logAnalyzeLogic = {
- "AnalyzeInterestingLine": {
- /*
- * [ 126.378] (--) PCI:*(0:4:0:0) 10de:08a0:106b:00c2 rev 162, Mem @
- * 0xd2000000/16777216, \ 0xc0000000/268435456, 0xd0000000/33554432, I/O @
- * 0x00001000/128, BIOS @ 0x????????/131072
- */
- re: [
- "^(\\[[ .0-9]+\\])?\\s*\\(--\\) PCI:\\*\\([0-9:]+\\)\\s*" +
- "([0-9a-f:]+).*$",
- "^\\s*\\[?[ 0-9.]*\\]?\\s*\\(--\\) "+
- "([A-Za-z]+)\\([0-9]?\\): Chipset: (.*)$",
- ],
- func: chipsetMagic
- },
- /*
- * [ 126.385] (WW) Falling back to old probe method for vesa [ 126.385] (WW)
- * Falling back to old probe method for fbdev [ 126.386] (--) NOUVEAU(0):
- * Chipset: "NVIDIA NVaf" Backtrace: [ 33.158] Kernel command line: ro
- * root=LABEL=root rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=en_US.UTF-8
- * SYSFONT=latarcyrheb-sun16 KEYTABLE=us drm.debug=0x04
- *
- */
- "AnalyzeXorgLogBacktrace": {
- re: "^\\s*(\\[[0-9 .]*\\])?\\s*(\\((EE|WW)\\)|.* [cC]hipset:.*)|\\s*(Backtrace|Kernel command line)",
- func: analyzeXorg
- }
-};
-
-var ProfessionalProducts = [
- "Red Hat Enterprise Linux",
- "Red Hat Enterprise MRG"
-];
-
-// END OF CONSTANTS
-
-var btSnippet = null;
-
-function RHOnMessageHandler(msg) {
- switch (msg.cmd) {
- case "Error":
- alert("Error " + msg.data);
- break;
- case "Unhandled":
- break;
- case "AddAttachmentCallback":
- addAttachmentCallback(msg.data);
- break;
- case "FixAttachmentMIMECallback":
- XMLRPCcallback();
- break;
- case "AnalyzeInterestingLine":
- case "AnalyzeXorgLogBacktrace":
- findInterestingLine(msg.data, msg.cmd);
- break;
- case "queryUpstream":
- queryUpstreamCallback(msg.data, constantData.queryUpstreamBug);
- break;
- default:
- console.error("Error: unknown RPC call " + msg.toSource());
- break;
- }
-}
-
-// RHBugzillaPage object
-
-/**
- * Auxiliary function to compute more complicated resolution
- */
-function closeSomeRelease() {
- // for RAWHIDE close as RAWHIDE,
- // if active selection -> CURRENTRELEASE
- // and put the release version to
- // "Fixed in Version" textbox
- // otherwise -> NEXTRELEASE
- selectOption("bug_status", "CLOSED");
- var text = getSelection();
- var resolution = "";
-
- if (text.length > 0) {
- resolution = "CURRENTRELEASE";
- document.getElementById("cf_fixed_in").value = text;
- }
- else if (document.getElementById("version").value === "rawhide") {
- resolution = "RAWHIDE";
- }
- else {
- resolution = "NEXTRELEASE";
- }
- centralCommandDispatch("resolution", resolution);
-}
-
-/**
- * Additional commands specific for this subclass, overriding superclass one.
- */
-function RHcentralCommandDispatch(cmdLabel, cmdParams) {
- switch (cmdLabel) {
- // Set up our own commands
- case "closeUpstream":
- addClosingUpstream();
- break;
- case "computeResolution":
- closeSomeRelease();
- break;
- case "queryStringUpstreamBugzilla":
- queryUpstream(constantData.queryUpstreamBug);
- break;
- case "sendBugUpstream":
- sendBugUpstream();
- break;
- case "markTriaged":
- markBugTriaged();
- break;
- case "chipMagic":
- console.myDebug("cmdParams = " + cmdParams.toSource());
- fillInWhiteBoard(cmdParams);
- break;
- // If we don't have it here, call superclass method
- default:
- console.error("Unknown command:\n" + cmdLabel + "\nparameters:\n" + cmdParams);
- break;
- }
-}
-
-/* === Bugzilla functions === */
-
-/**
- * Make it sailent that the some attachments with bad MIME type are present
- *
- * @param atts
- * Array of attachments subarrays
- * @return none
- */
-function markBadAttachments(atts) {
- var badMIMEArray = [ "application/octet-stream", "text/x-log", "undefined" ];
- if (!constantData.passwordState.passAvailable) {
- console.myDebug("markBadAttachments : No password, no XML-RPC calls; sorry");
- return null;
- }
-
- var badAttachments = atts.filter(function(att) {
- return (isInList(att[2], badMIMEArray));
- });
-
- if (badAttachments.length > 0) {
- var titleElement = document.
- getElementsByClassName("bz_alias_short_desc_container")[0];
- titleElement.style.backgroundColor = "olive";
-
- createDeadLink("fixAllButton", "Fix all", titleElement, function() {
- Array.forEach(badAttachments, function(x) {
- fixAttachById(x[1], constantData.XMLRPCData[window.location.hostname].url);
- });
- }, [], false, null, "f");
- badAttachments.forEach(function(x, i, a) {
- addTextLink(x, constantData.XMLRPCData[window.location.hostname].url);
- });
- }
-}
-
-/**
- * Open a tab in the upstream bugzilla to create a new bug
- *
- * @return none
- */
-function sendBugUpstream() {
- var urlStr = filterByRegexp(constantData.newUpstreamBug, getComponent());
- if (!urlStr) {
- return null;
- }
-
- self.postMessage(new Message("OpenBugUpstream", {
- url: urlStr,
- subject: document.getElementById("short_desc_nonedit_display").
- textContent.trim(),
- comment: collectComments()
- }));
-}
-
-/**
- * Add a link opening selected lines of Xorg.0.log
- *
- * @return none
- */
-function addCheckXorgLogLink(attList) {
- if (config.XorgLogAnalysis) {
- attList.forEach(function (row) {
- var elemS = row[4].getElementsByTagName("td");
- var elem = elemS[elemS.length - 1];
- createDeadLink("xorgLogAnalyzeLink", "check", elem,
- analyzeXorgLog, [row[1], "AnalyzeXorgLogBacktrace"], "br");
- });
- }
-}
-
-/**
- * Given line to be parsed, find out which chipset it is and fill in the
- * whiteboard
- *
- * @param PCIidArrObj
- * object with two fields id Array manufacturer-ID and product-ID (PCI
- * IDs) chipsetLine whole line containing PCI ID.
- * @param driverStr
- * String with the driver name
- * @return None
- *
- */
-function fillInWhiteBoard(cardName) {
- console.myDebug("fillInWhiteBoard: cardName = " + cardName);
- clickMouse("editme_action");
- var titleElem = document.getElementById('short_desc');
- titleElem.value = '[' + cardName + ']\u00A0' + titleElem.value;
- document.getElementById("fillin_btn").style.display = "none";
-}
-
-/**
- * Get attached Xorg.0.log, parse it and find the value of chip. Does not fill
- * the whiteboard itself, just adds button to do so,paramList so that slow
- * XMLHttpRequest is done in advance.
- *
- * @param log
- * array of XorgLogAttList
- * @return None
- */
-function fillInChipMagic(XlogID) {
- analyzeXorgLog(XlogID, "AnalyzeInterestingLine");
-}
-
-/**
- * Creates a button to change summary by adding a graphic chip label
- *
- * @param Array
- * with matching results of re.exec()
- */
-function chipsetMagic (interestingLineArr) {
- // parse Xorg.0.log
- var cardStr = "";
- console.myDebug("interestingLineArr = " + interestingLineArr.toSource());
- console.myDebug("interestingLineArr[1] = " + interestingLineArr[1]);
-
- if (interestingLineArr.length >0) {
- var interestingArray = interestingLineArr[0];
- if (interestingArray.length > 1) {
- var interestingPCIID = interestingArray[2].trim().split(":");
- // If we have Chipset line, we should parse it as well and
- // add to the button
- if (interestingLineArr.length > 1) {
- var PCIid = (interestingPCIID[0] + "," + interestingPCIID[1]).
- toUpperCase();
- // Nvidia driver provides good code in the Chipset line
- if (interestingPCIID[0].toLowerCase() == "10de") {
- cardStr = interestingLineArr[1][2].
- replace(/\s*nvidia\s*/ig,"").
- replace('"','','g');
- } else {
- try {
- cardStr = constantData.chipNames[PCIid][0];
- } catch (e if e instanceof TypeError) {
- PCIid = PCIid.toLowerCase().replace(",",":");
- cardStr = null;
- alert("PCI ID " + PCIid + " is not known!");
- self.postMessage(new Message("SetClipboard", PCIid.toString()));
- } catch (e) {
- throw e;
- }
- }
- }
- else {
- cardStr = null;
- }
-
- if (cardStr) {
- createNewButton("short_desc_nonedit_display", false, {
- "name": "Fill In",
- "chipMagic": cardStr
- });
- }
- }
- }
-}
-
-function analyzeXorg(results) {
- var innerString = "";
-
- if (results.length > 0) {
- results.splice(0, 1); // remove headers
- results.sort();
-
- results.forEach(function(lRE) {
- innerString += lRE.input + "<br>\n";
- });
- innerString += "----------<br>\n" +
- results.length + " interesting lines found.";
- }
- else {
- innerString += "No matching lines found!";
- }
-
- self.postMessage(new Message("OpenStringInPanel",
- '<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">' +
- "<html><head><title>Xorg.0.log analysis</title></head><body><pre>\n" +
- innerString.trim() +
- "\n</pre></body></html>"));
-}
-
-function analyzeXorgLog(attachID, backMsg) {
- self.postMessage(new Message("GetURL", {
- url: "https://" + window.location.hostname + "/attachment.cgi?id=" + attachID,
- backMessage: backMsg
- }));
-}
-
-function findInterestingLine(wholeLog, backMsg) {
- var REstr = logAnalyzeLogic[backMsg].re;
- var REarr = [];
- if (typeof REstr == "string") {
- REarr = [new RegExp(REstr)];
- }
- else if (Array.isArray(REstr)) {
- REarr = REstr.map(function (reone) {
- return new RegExp(reone);
- });
- }
- console.myDebug("Current REs:");
- REarr.forEach(function (re) {
- console.myDebug("re: " + re.source);
- });
-
- var results = [];
- wholeLog.split("\n").
- forEach(function(line) {
- REarr.forEach(function (re, reIdx) {
- if (re.test(line)) {
- console.myDebug("Found match on line:\n" + line);
- console.myDebug("Result: " + re.exec(line).toSource());
- results.push(re.exec(line));
- }
- });
- });
- console.myDebug("results = " + results.toSource());
- logAnalyzeLogic[backMsg].func(results);
-}
-
-/**
- * Add information about the upstream bug upstream, and closing it.
- *
- * @param evt
- * Event which called this handler
- * @return none
- */
-function addClosingUpstream() {
- var refs = document.getElementById("external_bugs_table")
- .getElementsByTagName("tr");
-
- // that's a bad id, if there is a one. :)
- var inputBox = document.getElementById("inputbox");
- var externalBugID = 0;
- var wholeURL = "";
-
- // Fix missing ID on the external_id SELECT
- document.getElementsByName("external_id")[0].setAttribute("id",
- "external_id");
-
- if (inputBox.value.match(/^http.*/)) {
- externalBugID = getBugNoFromURL(inputBox.value);
- if (externalBugID) {
- inputBox.value = externalBugID;
- }
- // get bugzillaName and set the label
- var bugzillaName = getBugzillaName(wholeURL.host, constantData.bugzillaLabelNames);
- selectOptionByLabel("external_id", bugzillaName);
- }
- else if (!isNaN(inputBox.value)) {
- externalBugID = parseInt(inputBox.value, 10);
- var bugzillaHostname = document.getElementById("external_id").value;
- wholeURL = bugzillaHostname+"show_bug.cgi?id="+externalBugID;
- }
- else {
- // no inputBox.value -- maybe there is an external bug from
- // the previous commit?
- }
-
- // It is not good to close bug as UPSTREAM, if there is no reference
- // to the upstream bug.
- if ((externalBugID > 0) || (refs.length > 2)) {
- var msgStr = constantData.commentStrings.sentUpstreamString;
- msgStr = msgStr.replace("§§§", wholeURL);
- centralCommandDispatch("comment",msgStr);
- centralCommandDispatch("status", "CLOSED");
- centralCommandDispatch("resolution", "UPSTREAM");
- }
- else {
- console.myDebug("No external bug specified among the External References!");
- }
-}
-
-/**
- *
- */
-function parseBacktrace (ret) {
- var signalHandler = new RegExp("^\\s*#[0-9]*\\s*<signal handler called>");
- var frameNo = new RegExp("^\\s*#([0-9]*)\\s");
-
- var splitArray = ret.split("\n");
- var i = 0, ii = splitArray.length;
- var outStr = "", curLine = "", numStr = "";
- var lineCounter = 0, endLineNo = 0;
-
- // TODO shouldn't we just cut off and analyze whole thread?
- while (i < ii) {
- if (signalHandler.test(splitArray[i])) {
- break;
- }
- i++;
- }
-
- if (i < ii) {
- lineCounter = parseInt(frameNo.exec(splitArray[i])[1], 10);
- endLineNo = lineCounter + NumberOfFrames;
- curLine = splitArray[i];
- while ((lineCounter < endLineNo) && (curLine.trim().length > 0)
- && (i < ii)) {
- outStr += curLine + '\n';
- numStr = frameNo.exec(curLine);
- if (numStr) {
- lineCounter = parseInt(numStr[1], 10);
- }
- i++;
- curLine = splitArray[i];
- }
- return outStr;
- }
- return "";
-}
-
-function RHBZinit() {
- // inheritance ... call superobject's constructor
- var AbrtRE = new RegExp("^\\s*\\[abrt\\]");
- var btSnippet = "";
-
- var chipMagicInterestingLine = "";
-
- // getBadAttachments
- var XorgLogAttList = [];
- var XorgLogAttListIndex = 0;
- var attachments = getAttachments();
- markBadAttachments(attachments);
-
- var parsedAttachments = attachments.filter(function (att) {
- return (new RegExp(titleParsedAttachment).test(att[0]));
- });
-
- if (constantData.defaultAssignee) {
- setDefaultAssignee();
- }
-
- if (constantData.xorgBugsCategories) {
- var XBZlist = filterByRegexp(constantData.
- xorgBugsCategories, getComponent());
- if (XBZlist) {
- makeBugCategoriesList(XBZlist);
- }
- }
-
- // setup logging only when we ask for it
- if (config.submitsLogging && (window.location.hostname == "bugzilla.redhat.com")) {
- setUpLogging();
- }
-
- // Dig out backtrace protection against double-firing?
- btSnippet = "";
-
- var parseAbrtBacktraces = config.parseAbrtBacktraces;
- if (parseAbrtBacktraces && AbrtRE.test(getSummary())) {
- pasteBacktraceInComments(parsedAttachments);
- }
-
- // Find out Xorg.0.log attachment URL
- XorgLogAttList = attachments.filter(function (value) {
- // Xorg.0.log must be text, otherwise we cannot parse it
- return (/[xX].*log/.test(value[0]) && /text/.test(value[2]));
- });
- // Just add a link to every Xorg.0.log link analyzing it.
- addCheckXorgLogLink(XorgLogAttList);
-
- setBranding(XorgLogAttList);
-
- // Uncheck "set default assignee" when the assignee is changed by other means
- document.getElementById("assigned_to").addEventListener("change",
- function() {
- changeAssignee(null);
- }, false);
-}
diff --git a/data/lib/urltest.js b/data/lib/urltest.js
deleted file mode 100644
index 609e77b..0000000
--- a/data/lib/urltest.js
+++ /dev/null
@@ -1,5 +0,0 @@
-function onBugzillaPage(url) {
- return /https:\/\/bugzilla(-[a-zA-Z]+)*\.mozilla\.org/
- .test(url)
- || /https:\/\/landfill.*\.bugzilla\.org/.test(url);
-}
diff --git a/data/lib/viewSource.js b/data/lib/viewSource.js
deleted file mode 100644
index fd47cec..0000000
--- a/data/lib/viewSource.js
+++ /dev/null
@@ -1,104 +0,0 @@
-/* ***** 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 Bugzilla Tweaks.
- *
- * The Initial Developer of the Original Code is Mozilla Foundation.
- * Portions created by the Initial Developer are Copyright (C) 2010
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Johnathan Nightingale <johnath@mozilla.com>
- * Ehsan Akhgari <ehsan@mozilla.com>
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either 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 ***** */
-
-var reAttachmentType = /,\s+([^ )]*)[;)]/;
-
-function viewAttachmentSource(doc) {
- function addLink(elem, title, href) {
- if (elem.textContent.match(/[\S]/)) {
- elem.appendChild(doc.createTextNode(" | "));
- }
- var link = doc.createElement("a");
- link.href = href;
- link.textContent = title;
- elem.appendChild(link);
- }
- var table = doc.getElementById("attachment_table");
- if (!table)
- return;
- var rows = table.querySelectorAll("tr");
- for ( var i = 0; i < rows.length; ++i) {
- var items = rows[i].querySelectorAll("td");
- if (items.length != 3)
- continue;
- var links = items[0].querySelectorAll("a");
- if (links.length == 0)
- continue;
- var attachHref = links[0].href;
- // get the type of the attachment
- var span = items[0].querySelector(".bz_attach_extra_info");
- if (!span)
- continue;
- var typeName = null;
- try {
- // Match mime type followed by ";" (charset) or ")" (no charset)
- typeName = span.textContent.match(reAttachmentType)[1];
- typeName = typeName.split(";")[0]; // ignore charset following type
- }
- catch (e) {
- }
- if (typeName == "application/java-archive"
- || typeName == "application/x-jar") {
- // Due to the fix for bug 369814, only zip files with this special
- // mime type can be used with the jar: protocol.
- // http://hg.mozilla.org/mozilla-central/rev/be54f6bb9e1e
- addLink(items[2], "JAR Contents", "jar:" + attachHref
- + "!/");
- // https://bugzilla.mozilla.org/show_bug.cgi?id=369814#c5 has more
- // possible mime types for zips?
- }
- else if (typeName == "application/zip"
- || typeName == "application/x-zip-compressed"
- || typeName == "application/x-xpinstall") {
- addLink(items[2], "Static ZIP Contents", "jar:"
- + attachHref + "!/");
- }
- else if (typeName != "text/plain" && typeName != "patch" &&
- // Other types that Gecko displays like text/plain
- // http://mxr.mozilla.org/mozilla-central/source/parser/htmlparser/public/nsIParser.h
- typeName != "text/css" && typeName != "text/javascript"
- && typeName != "text/ecmascript"
- && typeName != "application/javascript"
- && typeName != "application/ecmascript"
- && typeName != "application/x-javascript" &&
- // Binary image types for which the "source" is not useful
- typeName != "image/gif" && typeName != "image/png"
- && typeName != "image/jpeg") {
- addLink(items[2], "Source", "view-source:" + attachHref);
- }
- }
-}
diff --git a/data/lib/xorgBugCategories.js b/data/lib/xorgBugCategories.js
deleted file mode 100644
index 3357ed7..0000000
--- a/data/lib/xorgBugCategories.js
+++ /dev/null
@@ -1,74 +0,0 @@
-// Released under the MIT/X11 license
-// http://www.opensource.org/licenses/mit-license.php
-"use strict";
-
-/**
- * Returns true if the bug is in a good shape
- *
- * @return Boolean if the bug is either not in the category where we care about
- * it (i.e., we don't have set up categories for this component) or if
- * it is in the concerned categories, then it has a category recorded in
- * the whiteboard input box.
- *
- */
-function hasXorgBugsCategory() {
- var catRE = /\s*\[cat:.*?\]\s*/; // RE for testing whether
- // there is already category tag in the Whiteboard
-
- var isXOrgBug = filterByRegexp(
- constantData.xorgBugsCategories, getComponent());
- var whiteboardContent = document
- .getElementById("status_whiteboard").value;
-
- if (isXOrgBug) { // is it XOR?
- return catRE.test(whiteboardContent);
- }
- else {
- return true;
- }
-}
-
-/**
- * Create a category list to the upper toolbar
- */
-function makeBugCategoriesList(catList) {
- var catRE = /\s*\[cat:.*?\]\s*/; // RE for testing whether
- // there is already category tag in the Whiteboard
-
- // Create <select> element and add it first blank <option>
- var targetDiv = document.getElementById("commit_top").parentNode;
- var categoryList = document.createElement("select");
- categoryList.setAttribute("id", "xorgBugsCategoriesSelect");
- categoryList.setAttribute("name", "xorgBugsCategoriesSelect");
- var optionElement = document.createElement("option");
- optionElement.value = null;
- optionElement.setAttribute("id", "catId_blank");
- optionElement.appendChild(document.createTextNode("---"));
- categoryList.appendChild(optionElement);
-
- // Fill-in <select> with <options>s for each category one
- if (catList) {
- catList.forEach(function(cat) {
- optionElement = document.createElement("option");
- optionElement.value = cat;
- optionElement.setAttribute("id", "catId_"
- + cat.replace(" ", "").toLowerCase());
- optionElement.appendChild(document.createTextNode(cat));
- categoryList.appendChild(optionElement);
- });
- }
-
- categoryList.addEventListener("change", function(evt) {
- var selectedCategory = "[cat:" + this.value + "]";
- var whiteboardElement = document
- .getElementById("status_whiteboard");
-
- if (hasXorgBugsCategory()) {
- whiteboardElement.value = whiteboardElement.value.replace(
- catRE, "");
- }
- addStuffToTextBox("status_whiteboard", selectedCategory);
- }, false);
-
- targetDiv.insertBefore(categoryList, targetDiv.firstChild);
-}