RE: Browsing to an anchor

2001-08-07 Thread Javier Lopez
I will need to look into this more but this is my assessment. This command typed from my bash shell does exactly what is supposed to IEXPLORE.EXE file:///D:/jdk1.3.1/docs/api/java/util/Hashtable.html#entrySet\(\) Opens the documentation and goes to the entrySet anchor. I believe you are

RE: Browsing to an anchor

2001-08-07 Thread Nick Sieger
- From: Nick Sieger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 9:49 AM To: 'Javier Lopez'; 'Paul Kinnucan'; '[EMAIL PROTECTED]' Subject: RE: Browsing to an anchor The second case that you describe, Javier, may be more user-friendly than forcing the user to specify the path to IE

RE: Browsing to an anchor

2001-08-07 Thread Paul Kinnucan
At 09:48 AM 8/7/2001 -0500, Nick Sieger wrote: The second case that you describe, Javier, may be more user-friendly than forcing the user to specify the path to IE. It's more work for the JDE, but less work for the user. That's a lousy hack by M$ that iexplore.exe parses and receives the anchor

RE: Browsing to an anchor

2001-08-07 Thread Don Coleman
Title: RE: Browsing to an anchor -Original Message- From: Paul Kinnucan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 11:09 AM To: Nick Sieger; 'Javier Lopez'; [EMAIL PROTECTED] Subject: RE: Browsing to an anchor At 09:48 AM 8/7/2001 -0500, Nick Sieger wrote

RE: Browsing to an anchor

2001-08-07 Thread Paul Kinnucan
At 10:01 AM 8/7/2001 -0500, Nick Sieger wrote: How about this - I just tried M-x browse-url javascript:window.navigate(file:///C:/java/jdk1.3.1/docs/api/java/lang/Stri ng.html#hashCode()) and it worked. Don't know if it will work with Netscape/Mozilla, though (don't have it installed) - can

RE: Browsing to an anchor

2001-08-07 Thread Don Coleman
Title: RE: Browsing to an anchor The attachement in my last email was broken by our mail gateway (which also insists on translating all my outgoing mail to HTML) HTML HEAD META HTTP-EQUIV=Refresh CONTENT=0; URL=http://jde.sunsite.dk/ /HEAD /HTML -Original Message- From: Paul

RE: Browsing to an anchor

2001-08-07 Thread Nick Sieger
we're back to the temp HTML file with the META HTTP-EQUIV=refresh ... tag solution that Don pointed out. /Nick -Original Message- From: Paul Kinnucan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 10:22 AM To: Nick Sieger; 'Javier Lopez'; '[EMAIL PROTECTED]' Subject: RE: Browsing

RE: Browsing to an anchor

2001-08-07 Thread Paul Kinnucan
AM To: Nick Sieger; 'Javier Lopez'; [EMAIL PROTECTED] Subject: RE: Browsing to an anchor At 09:48 AM 8/7/2001 -0500, Nick Sieger wrote: The second case that you describe, Javier, may be more user-friendly than forcing the user to specify the path to IE. It's more work for the JDE

Re: Browsing to an anchor

2001-08-07 Thread Paul Kinnucan
At 12:40 PM 8/7/2001 -0500, you wrote: Paul Kinnucan [EMAIL PROTECTED] writes: Hi all, I am trying to write an Emacs command that will show help for a class field or method. To do this, I need to get Internet Explorer to browse to the specific place in the document for the class member.