aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-06-22 18:42:37 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-06-22 18:42:37 +0200
commit5f4a854cf9497d07745ebd9d4c65a3b954c494ec (patch)
treeb127a80a6182968414ec8339f7117120866ef629
parentc1f7615fa2a5dcc15fa3ed7962016537dd31bbfd (diff)
downloadbugzilla-triage-5f4a854cf9497d07745ebd9d4c65a3b954c494ec.tar.gz
Some people, when confronted with a problem, think I know, I'll use regular expressions.'' Now they have two problems.
-rw-r--r--lib/main.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/main.js b/lib/main.js
index d572da3..e0a1fe0 100644
--- a/lib/main.js
+++ b/lib/main.js
@@ -25,15 +25,16 @@ var XMLRPCurl = "https://bugzilla.redhat.com/xmlrpc.cgi";
var config = {};
config.matches = [
"https://bugzilla.redhat.com/show_bug.cgi",
+ "https://bz-web2-test.devel.redhat.com/show_bug.cgi",
"https://bugzilla.mozilla.org/show_bug.cgi"
];
config.skipMatches = [
- "https://bugzilla.redhat.com/process_bug.cgi",
- "https://bugzilla.redhat.com/post_bug.cgi",
+ "https://bugzilla.redhat.com/(process|post)_bug.cgi",
+ "https://bz-web2-test.devel.redhat.com/(process|post)_bug.cgi",
"https://bugzilla.mozilla.org/post_bug.cgi",
"https://bugzilla.mozilla.org/process_bug.cgi",
- "https://bugzilla.redhat.com/attachment.cgi$"
+ "https://bugzilla.(redhat.com|mozilla.org)/attachment.cgi$"
];
// ==============================================================