diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-11-24 23:33:30 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-11-24 23:33:30 +0100 |
commit | a95d522f404ed88c0d237175883adf0ead47d69e (patch) | |
tree | 73be52f2943cbd88398917ad159aeb9e73b1ae4d /data/queryUpstreamBug.json | |
parent | 94204070249610258451f8ec9f2d6aa7db4ea7d5 (diff) | |
download | bugzilla-triage-a95d522f404ed88c0d237175883adf0ead47d69e.tar.gz |
Limit full-text queries of upstream bugzillas just to current component.
* changed queryUpstreamBug data to have additional fields for this.
* changed queryUpstream method of RHBZPage to use them.
Fixes #56
Diffstat (limited to 'data/queryUpstreamBug.json')
-rw-r--r-- | data/queryUpstreamBug.json | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/data/queryUpstreamBug.json b/data/queryUpstreamBug.json index 3de67d0..544d526 100644 --- a/data/queryUpstreamBug.json +++ b/data/queryUpstreamBug.json @@ -1,10 +1,26 @@ [ { "regexp": "thunderbird|firefox|xulrunner", - "addr": "https://bugzilla.mozilla.org/buglist.cgi?quicksearch=" + "addr": { + "url": "https://bugzilla.mozilla.org/buglist.cgi?quicksearch=", + "fillIn": "$$$", + "searchBy": "product" + } + }, + { + "regexp": "nautilus|gnome.*", + "addr": { + "url": "https://bugzilla.mozilla.org/buglist.cgi?quicksearch=", + "fillIn": "$$$", + "searchBy": "product" + } }, { "regexp": "xorg-x11.*", - "addr": "https://bugs.freedesktop.org/buglist.cgi?quicksearch=product%3Axorg+" - } -]
\ No newline at end of file + "addr": { + "url": "https://bugs.freedesktop.org/buglist.cgi?quicksearch=", + "fillIn": "xorg", + "searchBy": "product" + } + } +] |