From 04657077ba12e8f23feaa0c3787b590c44446056 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 14 Feb 2011 17:51:53 +0100 Subject: Basic functionality working. Switching to this bug for my day-to-day work. --- data/skip-bug.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 data/skip-bug.js (limited to 'data/skip-bug.js') 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(); -- cgit