aboutsummaryrefslogtreecommitdiffstats
path: root/data/skip-bug.js
diff options
context:
space:
mode:
Diffstat (limited to 'data/skip-bug.js')
-rw-r--r--data/skip-bug.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/data/skip-bug.js b/data/skip-bug.js
new file mode 100644
index 0000000..9fcb531
--- /dev/null
+++ b/data/skip-bug.js
@@ -0,0 +1,20 @@
+// Released under the MIT/X11 license
+// http://www.opensource.org/licenses/mit-license.php
+// "use strict";
+
+function reloadPage() {
+ var stemURL = 'https://HOSTNAME/show_bug.cgi?id=';
+ var titleElems = document.getElementsByTagName('title');
+ if (titleElems) {
+ var REArr = new RegExp('[bB]ug\\s+([0-9]+)').
+ exec(titleElems[0].textContent);
+ var hostname = document.location.hostname;
+ if (REArr) {
+ console.log("Reloading bug " + REArr[1] + "!");
+ document.location = stemURL.
+ replace('HOSTNAME',hostname) + REArr[1];
+ }
+ }
+}
+
+reloadPage();