all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Suggestion for bug reports
@ 2009-02-09  8:44 Nick Roberts
  2009-02-09 15:15 ` Drew Adams
  2009-02-11 22:48 ` Juri Linkov
  0 siblings, 2 replies; 10+ messages in thread
From: Nick Roberts @ 2009-02-09  8:44 UTC (permalink / raw
  To: emacs-devel

In (GDB) Bugzilla, a link is provided in e-mail messages to the web entry for
the bug report.  For example an e-mail with the subject header:

   Subject: [Bug varobj/9268] Unicode string support

will have the link:

   http://sourceware.org/bugzilla/show_bug.cgi?id=926

at the end of the message, which can be clicked on in most mail readers to
provide quick access to the full history of the bug report.

Could something similar be done foe Emacs bugs?, e.g., an e-mail with the
header :

  Subject: bug#407: gpm server stop making emacs abort()

would have the link:

http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=407

-- 
Nick                                           http://www.inet.net.nz/~nickrob




^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Suggestion for bug reports
  2009-02-09  8:44 Suggestion for bug reports Nick Roberts
@ 2009-02-09 15:15 ` Drew Adams
  2009-02-09 16:53   ` Stefan Monnier
  2009-02-11 22:48 ` Juri Linkov
  1 sibling, 1 reply; 10+ messages in thread
From: Drew Adams @ 2009-02-09 15:15 UTC (permalink / raw
  To: 'Nick Roberts', emacs-devel

> In (GDB) Bugzilla, a link is provided in e-mail messages to 
> the web entry for the bug report.  For example an e-mail with
> the subject header: Subject: [Bug varobj/9268] Unicode string support
> will have the link: http://sourceware.org/bugzilla/show_bug.cgi?id=926
> at the end of the message, which can be clicked on in most 
> mail readers to provide quick access to the full history of
> the bug report.
> 
> Could something similar be done foe Emacs bugs?

1+

FWIW, I made the same suggestion, long ago. This is common in bug trackers that
have an email interface, as it is with online reviewing tools and other
collaborative software.





^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-09 15:15 ` Drew Adams
@ 2009-02-09 16:53   ` Stefan Monnier
  2009-02-09 17:32     ` Glenn Morris
  0 siblings, 1 reply; 10+ messages in thread
From: Stefan Monnier @ 2009-02-09 16:53 UTC (permalink / raw
  To: Drew Adams; +Cc: 'Nick Roberts', emacs-devel

>> In (GDB) Bugzilla, a link is provided in e-mail messages to 
>> the web entry for the bug report.  For example an e-mail with
>> the subject header: Subject: [Bug varobj/9268] Unicode string support
>> will have the link: http://sourceware.org/bugzilla/show_bug.cgi?id=926
>> at the end of the message, which can be clicked on in most 
>> mail readers to provide quick access to the full history of
>> the bug report.
>> 
>> Could something similar be done foe Emacs bugs?

> 1+

> FWIW, I made the same suggestion, long ago.  This is common in bug
> trackers that have an email interface, as it is with online reviewing
> tools and other collaborative software.

Yes, that would be good,


        Stefan




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-09 16:53   ` Stefan Monnier
@ 2009-02-09 17:32     ` Glenn Morris
  2009-02-09 18:46       ` Stefan Monnier
  0 siblings, 1 reply; 10+ messages in thread
From: Glenn Morris @ 2009-02-09 17:32 UTC (permalink / raw
  To: Stefan Monnier; +Cc: 'Nick Roberts', Drew Adams, emacs-devel

Stefan Monnier wrote:

> Yes, that would be good,

Good luck with that:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=9596

(going on for 12 years old)




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-09 17:32     ` Glenn Morris
@ 2009-02-09 18:46       ` Stefan Monnier
  0 siblings, 0 replies; 10+ messages in thread
From: Stefan Monnier @ 2009-02-09 18:46 UTC (permalink / raw
  To: Don Armstrong; +Cc: emacs-devel

Nick Roberts wrote:
> In (GDB) Bugzilla, a link is provided in e-mail messages to 
> the web entry for the bug report.  For example an e-mail with
> the subject header: Subject: [Bug varobj/9268] Unicode string support
> will have the link: http://sourceware.org/bugzilla/show_bug.cgi?id=926
> at the end of the message, which can be clicked on in most 
> mail readers to provide quick access to the full history of
> the bug report.
> 
> Could something similar be done for Emacs bugs?

Stefan Monnier wrote:
> Yes, that would be good,

Glenn Morris wrote:
> Good luck with that:
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=9596
> (going on for 12 years old)

Don, is there any hope to see this fixed before hell freezes over?


        Stefan





^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-09  8:44 Suggestion for bug reports Nick Roberts
  2009-02-09 15:15 ` Drew Adams
@ 2009-02-11 22:48 ` Juri Linkov
  2009-02-11 23:38   ` Reiner Steib
  1 sibling, 1 reply; 10+ messages in thread
From: Juri Linkov @ 2009-02-11 22:48 UTC (permalink / raw
  To: Nick Roberts; +Cc: emacs-devel

> Could something similar be done foe Emacs bugs?, e.g., an e-mail with the
> header :
>
>   Subject: bug#407: gpm server stop making emacs abort()
>
> would have the link:
>
> http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=407

     (add-hook 'gnus-article-mode-hook
               (lambda ()
                 (setq bug-reference-url-format
                       "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s")
                 (bug-reference-mode 1)))

and you can click on the bug number in the subject header.

-- 
Juri Linkov
http://www.jurta.org/emacs/




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-11 22:48 ` Juri Linkov
@ 2009-02-11 23:38   ` Reiner Steib
  2009-02-12  3:30     ` Glenn Morris
                       ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Reiner Steib @ 2009-02-11 23:38 UTC (permalink / raw
  To: Juri Linkov; +Cc: Nick Roberts, emacs-devel

On Wed, Feb 11 2009, Juri Linkov wrote:

>> Could something similar be done foe Emacs bugs?, e.g., an e-mail with the
>> header :
>>
>>   Subject: bug#407: gpm server stop making emacs abort()
>>
>> would have the link:
>>
>> http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=407
>
>      (add-hook 'gnus-article-mode-hook
>                (lambda ()
>                  (setq bug-reference-url-format
>                        "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s")
>                  (bug-reference-mode 1)))
>
> and you can click on the bug number in the subject header.

Or put point on the bug number and do 
M-x gnus-read-ephemeral-emacs-bug-group RET.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-11 23:38   ` Reiner Steib
@ 2009-02-12  3:30     ` Glenn Morris
  2009-02-12  7:24     ` Nick Roberts
  2009-02-17 18:35     ` Stefan Monnier
  2 siblings, 0 replies; 10+ messages in thread
From: Glenn Morris @ 2009-02-12  3:30 UTC (permalink / raw
  To: Juri Linkov; +Cc: Nick Roberts, emacs-devel

Reiner Steib wrote:

>>      (add-hook 'gnus-article-mode-hook
>>                (lambda ()
>>                  (setq bug-reference-url-format
>>                        "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s")
>>                  (bug-reference-mode 1)))
>>
>> and you can click on the bug number in the subject header.
>
> Or put point on the bug number and do 
> M-x gnus-read-ephemeral-emacs-bug-group RET.


As a general rule, please note such things in admin/notes/bugtracker
(added).




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-11 23:38   ` Reiner Steib
  2009-02-12  3:30     ` Glenn Morris
@ 2009-02-12  7:24     ` Nick Roberts
  2009-02-17 18:35     ` Stefan Monnier
  2 siblings, 0 replies; 10+ messages in thread
From: Nick Roberts @ 2009-02-12  7:24 UTC (permalink / raw
  To: Reiner Steib; +Cc: Juri Linkov, emacs-devel

 > >      (add-hook 'gnus-article-mode-hook
 > >                (lambda ()
 > >                  (setq bug-reference-url-format
 > >                        "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s")
 > >                  (bug-reference-mode 1)))
 > >
 > > and you can click on the bug number in the subject header.
 > 
 > Or put point on the bug number and do 
 > M-x gnus-read-ephemeral-emacs-bug-group RET.

Yes, but if it was implemented by the bug tracker it would be available to
those who don't use gnus, or even Emacs for their mail.


-- 
Nick                                           http://www.inet.net.nz/~nickrob




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Suggestion for bug reports
  2009-02-11 23:38   ` Reiner Steib
  2009-02-12  3:30     ` Glenn Morris
  2009-02-12  7:24     ` Nick Roberts
@ 2009-02-17 18:35     ` Stefan Monnier
  2 siblings, 0 replies; 10+ messages in thread
From: Stefan Monnier @ 2009-02-17 18:35 UTC (permalink / raw
  To: Juri Linkov; +Cc: Nick Roberts, emacs-devel

> Or put point on the bug number and do 
> M-x gnus-read-ephemeral-emacs-bug-group RET.

Indeed.  It's very handy.  It also works with just M-x g-emacs-bug RET
(and similarly M-x g-debian-bug RET).


        Stefan




^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2009-02-17 18:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-09  8:44 Suggestion for bug reports Nick Roberts
2009-02-09 15:15 ` Drew Adams
2009-02-09 16:53   ` Stefan Monnier
2009-02-09 17:32     ` Glenn Morris
2009-02-09 18:46       ` Stefan Monnier
2009-02-11 22:48 ` Juri Linkov
2009-02-11 23:38   ` Reiner Steib
2009-02-12  3:30     ` Glenn Morris
2009-02-12  7:24     ` Nick Roberts
2009-02-17 18:35     ` Stefan Monnier

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.