Currently http://fedoraproject.org/PackageReviewStatus/NEW.html filters review requests that contains "StalledSubmitter" in the whiteboard. I was about to use this flag when I realised that it would be better to check whether the bug is set to request information from the bug submitter. Can this please be changed?
As far as I know, that is not possible due to limitations of the bugzilla xmlrpc interface. If you know how to get at that information, work on python-bugzilla to expose it and then I can certainly look at making use of it.
I originally did the StalledSubmitter thing because I could not get needinfo status.
Any news here? Shall we just close this if it's not possible?
from ticket:3034:
A code snippet to test, whether the bug is in needinfo(reporter) state: {{{ filter(lambda flag: flag["name"] == "needinfo", bug.flag_types)[0]["flags"][0]['requestee_id'] == bug.reporter_id }}}
Amazingly the new bugzilla query interface makes this possible, so this is implemented upstream and will be deployed once infrastructure moves to python-bugzilla 0.7 or newer.
Log in to comment on this ticket.