| Summary: | org.eclipse.ui.browser does not find Firefox when installed in Program Files (x86) | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Ian Tewksbury <itewksbu> | ||||
| Component: | User Assistance | Assignee: | platform-ua-inbox <platform-ua-inbox> | ||||
| Status: | CLOSED DUPLICATE | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | cgold, remy.suen | ||||
| Version: | 3.6.2 | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows All | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
|
Description
Ian Tewksbury
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 *** |