diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-06-22 18:42:37 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-06-22 18:42:37 +0200 |
commit | 5f4a854cf9497d07745ebd9d4c65a3b954c494ec (patch) | |
tree | b127a80a6182968414ec8339f7117120866ef629 | |
parent | c1f7615fa2a5dcc15fa3ed7962016537dd31bbfd (diff) | |
download | bugzilla-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.js | 7 |
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$" ]; // ============================================================== |