From a95d522f404ed88c0d237175883adf0ead47d69e Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Wed, 24 Nov 2010 23:33:30 +0100 Subject: 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 --- data/queryUpstreamBug.json | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'data') 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" + } + } +] -- cgit