Community
Participate
Working Groups
When Firefox is installed on a Windows 7 64bit machine by default it is installed in "Program Files (x86)". The problem is the hard coded location paths for the Firefox browser in the org.eclipse.ui.browser plugin only list: Program Files\mozilla.org\Firefox\firefox.exe Program Files\Mozilla Firefox\firefox.exe Another location should be added to support the "Program Files (x86)" directory: Program Files (x86)\Mozilla Firefox\firefox.exe
Created attachment 197820 [details] Patch Attaching tested patch for this issue.
Thanks for the patch.
Chris, No problem at all. Would it be possible to get this fix in 3.6.x? An adopter product based on that stream is in need of this fix.
It was just pointed out to me that this was already fixed in head by bug 310926. But again, an adopter really needs this at the 3.6.x level.
Yes, this was fixed for Eclipse 3.7, I hadn't noticed that this was exactly the same as a fix I recently made myself. If this is needed for a product one workaround would be to create a simple plug-in containing this extension in plugin.xml. <extension point="org.eclipse.ui.browser.browsers"> <browser id="org.eclipse.ui.browser.firefox" name="Firefox (x86)" os="Win32" executable="firefox.exe"> <location>Program Files (x86)\Mozilla Firefox\firefox.exe</location> </browser> </extension> you would have to make sure that this plug-in was only included for Eclipse 3.6 and earlier.
(In reply to comment #5) > Yes, this was fixed for Eclipse 3.7, I hadn't noticed that this was exactly the > same as a fix I recently made myself. > > If this is needed for a product one workaround would be to create a simple > plug-in containing this extension in plugin.xml. > > <extension point="org.eclipse.ui.browser.browsers"> > <browser > id="org.eclipse.ui.browser.firefox" > name="Firefox (x86)" > os="Win32" > executable="firefox.exe"> > <location>Program Files (x86)\Mozilla Firefox\firefox.exe</location> > </browser> > </extension> > > you would have to make sure that this plug-in was only included for Eclipse 3.6 > and earlier. That worked. But it seemed to get the browser list to update with my new contribution I had to create a clean workspace. What about people with existing workspaces?
The same situation would apply if the patch was built into Eclipse, anyone with an existing workspace would not see the new browsers. If you press "Restore Defaults" in the Web Browser preferences I think that will cause the new browser to show up.
*** This bug has been marked as a duplicate of bug 310926 ***