From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Albinus Newsgroups: gmane.emacs.devel Subject: Re: Patch bug triage Date: Fri, 13 Apr 2012 09:24:27 +0200 Message-ID: <87aa2gjdqs.fsf@gmx.de> References: <877gxkgor3.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1334301885 21939 80.91.229.3 (13 Apr 2012 07:24:45 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 13 Apr 2012 07:24:45 +0000 (UTC) Cc: emacs-devel@gnu.org To: Chong Yidong Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 13 09:24:45 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SIas7-00030B-Jf for ged-emacs-devel@m.gmane.org; Fri, 13 Apr 2012 09:24:43 +0200 Original-Received: from localhost ([::1]:43394 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIas6-0003PD-M3 for ged-emacs-devel@m.gmane.org; Fri, 13 Apr 2012 03:24:42 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:59934) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIas1-0003P3-DG for emacs-devel@gnu.org; Fri, 13 Apr 2012 03:24:41 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SIarw-0006aP-6T for emacs-devel@gnu.org; Fri, 13 Apr 2012 03:24:36 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.23]:48351) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SIarv-0006a2-SG for emacs-devel@gnu.org; Fri, 13 Apr 2012 03:24:32 -0400 Original-Received: (qmail invoked by alias); 13 Apr 2012 07:24:28 -0000 Original-Received: from p57BB935F.dip0.t-ipconnect.de (EHLO detlef.gmx.de) [87.187.147.95] by mail.gmx.net (mp031) with SMTP; 13 Apr 2012 09:24:28 +0200 X-Authenticated: #3708877 X-Provags-ID: V01U2FsdGVkX183ZqUKe9U3engNsw6uSP+41aQ650wIU5J0+CGtPs 9UW4fduaQ2dtA9 In-Reply-To: <877gxkgor3.fsf@gnu.org> (Chong Yidong's message of "Fri, 13 Apr 2012 13:54:56 +0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 213.165.64.23 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:149627 Archived-At: Chong Yidong writes: > M-x debbugs-gnu-search RET RET tag RET patch RET status RET open RET > > seems to work better, as it doesn't fetch several thousand reports. > > But I couldn't figure out the way to specify "status" = "open", so the > returned list includes fixed reports. Apparently, when I give > debbugs-gnu-search an empty search string, it does not accept the > "status" attribute. Is that a bug or a limitation of the soap query? When you give an empty query string to `debbugs-gnu-search', it falls back to the behaviour of `debbugs-gnu', which does not allow interactive setting of "status" yet. Maybe this attribute shall be added for interactive query? You could suppress showing bugs with status "done" and "forwarded" by (add-to-list 'debbugs-gnu-default-suppress-bugs '(status . "done\\|forwarded")) But this is applied client side only, when toggling the result list with "x". Not so performant in retrieving. Best regards, Michael.