Make bugz.fedoraproject.org display all open bugs for a package

Currently it's configured to show NEW, ASSIGNED, and ON_QA bugs.

However:
- this misses pending Bodhi updates, which have bugs set to MODIFIED
- approved but not built package reviews are often set to POST

For simplicity, just show all open bugs with `__open__`.

Signed-off-by: Michel Alexandre Salim <salimma@fedoraproject.org>
This commit is contained in:
Michel Lind 2022-03-26 12:01:28 -07:00 committed by kevin
parent 3a5b83e62b
commit fb42ccf3e6

View file

@ -1,5 +1,5 @@
RewriteEngine On
RewriteMap lowercase int:tolower
RewriteRule ^/(.+) https://bugzilla.redhat.com/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=ON_QA&classification=Fedora&product=Fedora&product=Fedora\ EPEL&component=$1 [R,L]
RewriteRule ^/(.+) https://bugzilla.redhat.com/buglist.cgi?bug_status=__open__&classification=Fedora&product=Fedora&product=Fedora\ EPEL&component=$1 [R,L]
RewriteRule ^/$ https://bugzilla.redhat.com/ [R,L]