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: CEDET package in Emacs bug tracker Date: Mon, 15 Oct 2012 17:33:35 +0200 Message-ID: <87d30jg374.fsf@gmx.de> References: <877gquck2s.fsf@engster.org> <1obog6i4hq.fsf@fencepost.gnu.org> <87391ichv1.fsf@engster.org> <87vceeb25y.fsf@engster.org> <87bog5e46b.fsf@gmx.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1350315808 26758 80.91.229.3 (15 Oct 2012 15:43:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2012 15:43:28 +0000 (UTC) Cc: emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 15 17:43:35 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 1TNmpF-0006Zj-DV for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2012 17:43:29 +0200 Original-Received: from localhost ([::1]:35878 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNmp8-0006sa-Hm for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2012 11:43:22 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:53936) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNmp2-0006sD-68 for emacs-devel@gnu.org; Mon, 15 Oct 2012 11:43:20 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNmox-00077y-BT for emacs-devel@gnu.org; Mon, 15 Oct 2012 11:43:16 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.22]:57992) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1TNmox-00074E-27 for emacs-devel@gnu.org; Mon, 15 Oct 2012 11:43:11 -0400 Original-Received: (qmail invoked by alias); 15 Oct 2012 15:33:43 -0000 Original-Received: from p57BB9887.dip0.t-ipconnect.de (EHLO detlef.gmx.de) [87.187.152.135] by mail.gmx.net (mp010) with SMTP; 15 Oct 2012 17:33:43 +0200 X-Authenticated: #3708877 X-Provags-ID: V01U2FsdGVkX1+4RC994r+4JOfyre1ZaP5ASvBG5RH9p1xDgiIO3C 8egBZ9nKAkBEAZ In-Reply-To: (Glenn Morris's message of "Sun, 14 Oct 2012 15:18:01 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (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.22 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:154351 Archived-At: Glenn Morris writes: > If you can support the equivalent of this query: > > http://debbugs.gnu.org/cgi/pkgindex.cgi?indexon=users > > people will be able to browse the users and their tags. Not possible exactly. The SOAP interface does not allow to check for arbitrary user tags, it can only return user tags for a given user, and bugs tagged by that user with such a user tag. See . I've written today a function `debbugs-get-usertag' with the following docstring (it behaves a little bit different as the SOAP function get_usertag): | (debbugs-get-usertag USER &rest TAGS) | | Return a list of bug numbers which are tagged by USER. | | USER, a string, is either the email address of the user who has | applied a user tag, or a pseudo-user like "emacs". | | TAGS is a list of strings applied as user tags. The returning | list is filtered for these tags. | | If TAGS is nil, no bug numbers will be returned but a list of | existing tags for USER. | | Example: | | (debbugs-get-usertag "emacs") | | => ("www" "solaris" "ls-lisp" "cygwin") | | (debbugs-get-usertag "emacs" "www" "cygwin") | | => (807 1223 5637) That might be sufficient to our needs; in general USER shall be either a package name, or a user's email address. If we really want to get a list of all existing user tags, we must either extend the SOAP interface, or we must parse the output of . Not my primary choice. > I was just thinking about an explicit query of usertags, I don't think > you need to show them in the default search list. OK. I'll add a respective command to debbugs-gnu.el. Likely tomorrow. Best regards, Michael.