From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Richard Subject: Re: org-debbugs.el Date: Fri, 11 Oct 2013 13:55:56 +0200 Message-ID: <874n8oggxf.fsf@yahoo.fr> References: <86ioxp2vbb.fsf@somewhere.org> <20130925080403.GS12411@kuru.dyndns-at-home.com> <86siwt1d9c.fsf@somewhere.org> <8738otjkdt.fsf@gmx.de> <871u4czq4t.fsf@gmx.de> <20130926002156.GA13887@kuru.dyndns-at-home.com> <86vc1of3cp.fsf@somewhere.org> <87eh8ckjtk.fsf@gmx.de> <87mwmydpz3.fsf_-_@gmx.de> <87li2cjetb.fsf@gmx.de> <871u3sp73d.fsf@gmx.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUbJu-00008s-M4 for emacs-orgmode@gnu.org; Fri, 11 Oct 2013 07:55:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VUbJo-0001U0-Js for emacs-orgmode@gnu.org; Fri, 11 Oct 2013 07:55:50 -0400 Received: from plane.gmane.org ([80.91.229.3]:58618) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUbJo-0001Tt-CD for emacs-orgmode@gnu.org; Fri, 11 Oct 2013 07:55:44 -0400 Received: from public by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VUbJl-0005mz-Py for emacs-orgmode@gnu.org; Fri, 11 Oct 2013 13:55:41 +0200 In-Reply-To: <871u3sp73d.fsf@gmx.de> (Michael Albinus's message of "Fri, 11 Oct 2013 10:03:34 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Michael Albinus Cc: public-emacs-orgmode-mXXj517/zsQ@plane.gmane.org Michael Albinus writes: > Michael Albinus writes: > > Hi, > >> If the org-mode maintainers find this package useful, it could be added >> to the contrib directory. > > Still no response from the maintainers. Before I continue to invest into > this package, I would like to know whether it is a suitable > approach. Otherwise, I could spend my time better. Hello Michael, While trying your package, I noticed that C-h m would not work because of a misplaced docstring. Here's the patch (but I'm not sure I have the latest version, sorry if this is already fixed). Also, I heard recently on #org-mode about bugpile, which is an old (last updated more than a year ago) of Thorsten Jolitz and Eric Schulte. The doc says: ,---- | The Bugpile project has two goals: | | Develop a bugtracker (called Bugpile) for GNU Emacs Org-mode, | using Elisp, Elnode, Org-mode, and a dVCS. | As part of the engineering process, abstract out a web-framework | (iOrg) based on these GNU Emacs technologies. `---- Source: http://orgmode.org/worg/org-contrib/gsoc2012/student-projects/bugpile/ Unfortunately I did not find any usable documentation in the project (README is empty) and I have no idea how/if it can be related to org-debbugs in any way. diff --git a/contrib/lisp/org-debbugs.el b/contrib/lisp/org-debbugs.el index 9c31b2b..fe5430e 100644 --- a/contrib/lisp/org-debbugs.el +++ b/contrib/lisp/org-debbugs.el @@ -409,11 +409,11 @@ returned." hits)))))) (defconst org-debbugs-mode-map - "Keymap for the `org-debbugs-mode' minor mode." (let ((map (make-sparse-keymap))) (define-key map (kbd "C-c # c") 'debbugs-gnu-send-control-message) (define-key map (kbd "C-c # d") 'debbugs-gnu-display-status) - map)) + map) + "Keymap for the `org-debbugs-mode' minor mode.") -- Nico.