aboutsummaryrefslogtreecommitdiffstats
path: root/lib/skip-process-bug.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-05-31 16:51:50 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-05-31 16:51:50 +0200
commit951ef0d578130106e303e5586f53404a900ccf9c (patch)
tree2b13d67c04365dd78756fbc88dea623ade8e3c65 /lib/skip-process-bug.js
parentfa726bcbae605dd21861bee728f66a2134a1d385 (diff)
downloadbugzilla-triage-951ef0d578130106e303e5586f53404a900ccf9c.tar.gz
Reshuffling to Jetpack-SDK directory layout.
Diffstat (limited to 'lib/skip-process-bug.js')
-rw-r--r--lib/skip-process-bug.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/skip-process-bug.js b/lib/skip-process-bug.js
new file mode 100644
index 0000000..3f82578
--- /dev/null
+++ b/lib/skip-process-bug.js
@@ -0,0 +1,46 @@
+jetpack.future.import("pageMods");
+
+// http://maymay.net/blog/2008/06/15/\
+// ridiculously-simple-javascript-version-string-to-object-parser/
+function parseVersionString (str) {
+ if (typeof(str) != 'string') { return false; }
+ var x = str.split('.');
+ // parse from string or default to 0 if can't parse
+ var maj = parseInt(x[0]) || 0;
+ var min = parseInt(x[1]) || 0;
+ var pat = parseInt(x[2]) || 0;
+ return {
+ major: maj,
+ minor: min,
+ patch: pat
+ };
+}
+
+var callback = function(document){
+ var stemURL = "https://HOSTNAME/show_bug.cgi?id=";
+ var titleStr = $("title",document).text();
+ var REArr = RegExp("[0-9]+").exec(titleStr);
+ var REHostname = RegExp("\/\/([^/]+)\/").exec(document.location.toString());
+ if (REArr) {
+ var bugNo = REArr[0];
+ var hostname = REHostname[1];
+ console.log("bugNo = " + bugNo + ", hostname = " + hostname);
+ var currentFFVersion = parseVersionString(jetpack.__parent__.navigator.vendorSub);
+ console.log("currentFFVersion = " + currentFFVersion.toSource());
+ if ((currentFFVersion.major >= 3) && (currentFFVersion.minor >= 6)) {
+ var emailsSent = $("#bugzilla-body > dl:first",document).text();
+ emailsSent = emailsSent.replace(/^(\s*)$/mg,"");
+ jetpack.notifications.show(emailsSent);
+ }
+ document.location = stemURL.replace("HOSTNAME",hostname) + bugNo;
+ }
+};
+
+var options = {};
+options.matches = [
+ "https://bugzilla.redhat.com/process_bug.cgi",
+ "https://bugzilla.redhat.com/post_bug.cgi",
+ "https://bugzilla.mozilla.org/post_bug.cgi",
+ "https://bugzilla.mozilla.org/process_bug.cgi"
+ ];
+jetpack.pageMods.add(callback, options);