Gnus development mailing list
 help / color / mirror / Atom feed
* URL button buglet
@ 1999-01-27 12:47 James H. Cloos Jr.
  1999-01-27 21:48 ` Michael Welsh Duggan
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: James H. Cloos Jr. @ 1999-01-27 12:47 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

I middle-clicked on this URL:

http://www.zdnet.com/zdnn/stories/comment/0,5859,2194863,00.html

and ended up with this one instead:

http://www.zdnet.com/zdnn/stories/comment/02c58592c21948632c00.html

Note the replacement of the `,'s with `2c's, rather than `%2c's.

Pgnus 0.73, emacs 20.3 (via rh-5.2 rpm).

- -JimC

P.S.  What does one need to do to make C-x5m open a new frame?
      It has never worked for me in emacs 20....

- -- 
James H. Cloos, Jr.  <http://www.jhcloos.com/cloos/public_key> 1024D/ED7DAEA6 
<cloos@jhcloos.com>     E9E9 F828 61A4 6EA9 0F2B  63E7 997A 9F17 ED7D AEA6
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v0.9.2 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE2rwrvmXqfF+19rqYRAiy4AJ4nQgVQQmFo5kvpAA9dKq4bmnHMgwCeMVR6
mZt9b3qqyJ2R0MknVva8X2M=
=fpqV
-----END PGP SIGNATURE-----

--GAA15305.917441276/jhcloos.com--



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

* Re: URL button buglet
  1999-01-27 12:47 URL button buglet James H. Cloos Jr.
@ 1999-01-27 21:48 ` Michael Welsh Duggan
  1999-01-28 18:08   ` Hrvoje Niksic
  1999-01-27 21:49 ` Michael Welsh Duggan
  1999-01-27 21:50 ` Shenghuo ZHU
  2 siblings, 1 reply; 8+ messages in thread
From: Michael Welsh Duggan @ 1999-01-27 21:48 UTC (permalink / raw)



"James H. Cloos Jr." <cloos@jhcloos.com> writes:

> P.S.  What does one need to do to make C-x5m open a new frame?
>       It has never worked for me in emacs 20....

Hmm...  It doesn't work because `message-mail' doesn't pay any
attention to the `switch-function' argument.

-- 
Michael Duggan
(md5i@cs.cmu.edu)
.



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

* Re: URL button buglet
  1999-01-27 12:47 URL button buglet James H. Cloos Jr.
  1999-01-27 21:48 ` Michael Welsh Duggan
@ 1999-01-27 21:49 ` Michael Welsh Duggan
  1999-01-28  0:49   ` James H. Cloos Jr.
  1999-01-27 21:50 ` Shenghuo ZHU
  2 siblings, 1 reply; 8+ messages in thread
From: Michael Welsh Duggan @ 1999-01-27 21:49 UTC (permalink / raw)



"James H. Cloos Jr." <cloos@jhcloos.com> writes:

> P.S.  What does one need to do to make C-x5m open a new frame?
>       It has never worked for me in emacs 20....

As a temp fix, you can rebind `C-x 5 m' to `message-mail-other-frame'.

-- 
Michael Duggan
(md5i@cs.cmu.edu)
.



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

* Re: URL button buglet
  1999-01-27 12:47 URL button buglet James H. Cloos Jr.
  1999-01-27 21:48 ` Michael Welsh Duggan
  1999-01-27 21:49 ` Michael Welsh Duggan
@ 1999-01-27 21:50 ` Shenghuo ZHU
  1999-01-28  0:19   ` James H. Cloos Jr.
  1999-01-28  0:22   ` Dave Love
  2 siblings, 2 replies; 8+ messages in thread
From: Shenghuo ZHU @ 1999-01-27 21:50 UTC (permalink / raw)
  Cc: fx

>>>>> "James" == James H Cloos <cloos@jhcloos.com> writes:

James> I middle-clicked on this URL:

James> http://www.zdnet.com/zdnn/stories/comment/0,5859,2194863,00.html

James> and ended up with this one instead:

James> http://www.zdnet.com/zdnn/stories/comment/02c58592c21948632c00.html

James> Note the replacement of the `,'s with `2c's, rather than `%2c's.

James> Pgnus 0.73, emacs 20.3 (via rh-5.2 rpm).


It is a bug in browse-url.el not gnus.

-- 
Shenghuo

--- browse-url.el	1999/01/27 21:41:01	1.1
+++ browse-url.el	1999/01/27 21:41:10
@@ -700,7 +700,7 @@
   ;; include at least commas; presumably also close parens.
   (while (string-match "[,)]" url)
     (setq url (replace-match
-	       (format "%x" (string-to-char (match-string 0 url))) t t url)))
+	       (format "%%%x" (string-to-char (match-string 0 url))) t t url)))
   (let* ((process-environment (browse-url-process-environment))
          (process (apply 'start-process
  			(concat "netscape " url) nil



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

* Re: URL button buglet
  1999-01-27 21:50 ` Shenghuo ZHU
@ 1999-01-28  0:19   ` James H. Cloos Jr.
  1999-01-28  0:22   ` Dave Love
  1 sibling, 0 replies; 8+ messages in thread
From: James H. Cloos Jr. @ 1999-01-28  0:19 UTC (permalink / raw)
  Cc: ding, fx

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

>>>>> "ZSH" == Shenghuo ZHU <zsh@cs.rochester.edu> writes:

ZSH> It is a bug in browse-url.el not gnus.

That fixes it.

Seems like it used to work for me though.  Guess I must have patched
it in 20.2 and then promptly forgotten about it....

- -JimC
- -- 
James H. Cloos, Jr.  <http://www.jhcloos.com/cloos/public_key> 1024D/ED7DAEA6 
<cloos@jhcloos.com>     E9E9 F828 61A4 6EA9 0F2B  63E7 997A 9F17 ED7D AEA6

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v0.9.2 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE2r60AmXqfF+19rqYRAk0xAJ4yCH4u0E20LxHo8yB8xPLxALZ2ugCeLPX7
AuHRxyPI6Aqz6zdX/08LWYE=
=JH9O
-----END PGP SIGNATURE-----


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

* Re: URL button buglet
  1999-01-27 21:50 ` Shenghuo ZHU
  1999-01-28  0:19   ` James H. Cloos Jr.
@ 1999-01-28  0:22   ` Dave Love
  1 sibling, 0 replies; 8+ messages in thread
From: Dave Love @ 1999-01-28  0:22 UTC (permalink / raw)
  Cc: ding

>>>>> "ZSH" == Shenghuo ZHU <zsh@cs.rochester.edu> writes:

 ZSH> It is a bug in browse-url.el not gnus.

Yes, fixed shortly after 20.3 IIRC; it should escape soon.  Thanks
anyhow.


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

* Re: URL button buglet
  1999-01-27 21:49 ` Michael Welsh Duggan
@ 1999-01-28  0:49   ` James H. Cloos Jr.
  0 siblings, 0 replies; 8+ messages in thread
From: James H. Cloos Jr. @ 1999-01-28  0:49 UTC (permalink / raw)
  Cc: ding

>>>>> "Michael" == Michael Welsh Duggan <md5i@cs.cmu.edu> writes:

Michael> As a temp fix, you can rebind `C-x 5 m' to `message-mail-other-frame'.

Thanks.

-JimC
-- 
James H. Cloos, Jr.  <http://www.jhcloos.com/cloos/public_key> 1024D/ED7DAEA6 
<cloos@jhcloos.com>     E9E9 F828 61A4 6EA9 0F2B  63E7 997A 9F17 ED7D AEA6


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

* Re: URL button buglet
  1999-01-27 21:48 ` Michael Welsh Duggan
@ 1999-01-28 18:08   ` Hrvoje Niksic
  0 siblings, 0 replies; 8+ messages in thread
From: Hrvoje Niksic @ 1999-01-28 18:08 UTC (permalink / raw)


Michael Welsh Duggan <md5i@cs.cmu.edu> writes:

> "James H. Cloos Jr." <cloos@jhcloos.com> writes:
> 
> > P.S.  What does one need to do to make C-x5m open a new frame?
> >       It has never worked for me in emacs 20....
> 
> Hmm...  It doesn't work because `message-mail' doesn't pay any
> attention to the `switch-function' argument.

Yes.  :-(

When I reported this as a bug in "message", Lars said he would
implement this when he gets around to it.  I tried it myself, but
found the code in `message.el' too complex to muck around with until I 
studied it in depth.


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

end of thread, other threads:[~1999-01-28 18:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-01-27 12:47 URL button buglet James H. Cloos Jr.
1999-01-27 21:48 ` Michael Welsh Duggan
1999-01-28 18:08   ` Hrvoje Niksic
1999-01-27 21:49 ` Michael Welsh Duggan
1999-01-28  0:49   ` James H. Cloos Jr.
1999-01-27 21:50 ` Shenghuo ZHU
1999-01-28  0:19   ` James H. Cloos Jr.
1999-01-28  0:22   ` Dave Love

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).