This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: Please clean up patchwork
- From: "Carlos O'Donell" <carlos at redhat dot com>
- To: libc-alpha at sourceware dot org
- Date: Mon, 04 May 2015 14:16:45 -0400
- Subject: Re: Please clean up patchwork
- Authentication-results: sourceware.org; auth=none
- References: <alpine dot DEB dot 2 dot 10 dot 1504301629410 dot 23221 at digraph dot polyomino dot org dot uk> <20150504074849 dot GF30924 at vapier>
On 05/04/2015 03:48 AM, Mike Frysinger wrote:
> am i missing something, or does patchwork not have support for things like saved
> queries ? there's like 3 or 4 common searches i run to make sure i haven't
> closed things out ("vapier", "ia64", etc...).
No, because I think bookmarks do this for you already.
Saved queries are simply a URL with the appropriate arguments set?
So for example if you filter on various options the URL should show
those filters, and bookmarking that URL gets you back to the same
search on live data every time. Then save those a set of bookmarks
and open them as tabs.
I use the CLI and script whatever I need to do.
For example, this is what I run when looking to see what I have
to finish working on:
[carlos@athas glibc]$ cat ~/bin/pwclient-me
#!/bin/bash
echo "NEW:"
pwclient list -p glibc -w carlos -s 'New'
echo "UNDER REVIEW:"
pwclient list -p glibc -w carlos -s 'Under Review'
echo "ACCEPTED:"
pwclient list -p glibc -w carlos -s 'Accepted'
echo "REJECTED:"
pwclient list -p glibc -w carlos -s 'Rejected'
echo "RFC:"
pwclient list -p glibc -w carlos -s 'RFC'
echo "CHANGES REQUESTED:"
pwclient list -p glibc -w carlos -s 'Changes Requested'
echo "AWAITING UPSTREAM:"
pwclient list -p glibc -w carlos -s 'Awaiting Upstream'
echo "DEFERRED:"
pwclient list -p glibc -w carlos -s 'Deferred'
c.