On Feb 23, 2009, at 8:45 AM, David E. Wheeler wrote:

Hrm. I wonder if there isn't a way to subscribe to a single feed for tickets you own. Perhaps:

 http://rt.cpan.org/Search/Results.rdf?Query=%20Owner%20%3D%20'DWHEELER'

Hrm. Almost works, but I get this error in NetNewsWire (after I approved the cert in Safari):

2009-02-23 08:43:56 -0800: AddSubscription: status code: 500 soapFaultCode: ng10500 soapFaultString: InvalidUrl
Error retrieving feed

Heard back from Jesse:


  http://rt.cpan.org/Search/Results.rdf?Query=%20Owner%20%3D%20'DWHEELER'


Part of the problem is that such feeds, by default, are only available
when you're logged in. RT's query engine is powerful enough that we'd
really prefer to have some little bit of control over who's trying to
hose the database.


https://rt.cpan.org/Search/Results.rdf?Query=%20%20(%20%20Status%20%3D%20%27new%27%20OR%20Status%20%3D%20%27open%27%20OR%20Status%20%3D%20%27stalled%27%20)%20AND%20QueueAdminCc.id%20%3D%20%27__CurrentUser__%27

should work 'right' if you have cookies. If you're willing to do
something ugly and unfortunate:


https://rt.cpan.org/Search/Results.rdf?Query=%20%20(%20%20Status%20%3D%20%27new%27%20OR%20Status%20%3D%20%27open%27%20OR%20Status%20%3D%20%27stalled%27%20)%20AND%20QueueAdminCc.id%20%3D%20%27__CurrentUser__%27&user=DWHEELER&pass=yoursecrethere

Alternatively:

svn://svn.bestpractical.com/RT-Extension-rt_cpan_org would totally take
a patch to give us feeds for

/NoAuth/CoMaint/$NAME/Bugs.rss
/NoAuth/Dist/$NAME/Bugs.rss
/NoAuth/Owner/$NAME/Bugs.rss

I can confirm that that last one works, though your pw will be recorded in the RT access logs. I don't know enough about RT internals to know what to patch in RT-Extension-rt_cpan_org to get a bare search on "OWNER='FOO'" to work, though it doesn't look like it'd take much code.

Best,

David

Reply via email to