blob: 4cacdd6bf01a68e74287bdfeaebcd9ea715edfe7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.browser;
import java.net.URL;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.program.Program;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.browser.AbstractWebBrowser;
/**
* An instance of a running system Web browser.
*/
public class SystemBrowserInstance extends AbstractWebBrowser {
public SystemBrowserInstance(String id) {
super(id);
}
public void openURL(URL url) throws PartInitException {
String urlText = null;
if (url != null)
urlText = url.toExternalForm();
// change spaces to "%20"
if (urlText != null && !WebBrowserUtil.isWindows()) {
int index = urlText.indexOf(" "); //$NON-NLS-1$
while (index >= 0) {
urlText = urlText.substring(0, index) + "%20" //$NON-NLS-1$
+ urlText.substring(index + 1);
index = urlText.indexOf(" "); //$NON-NLS-1$
}
}
Trace.trace(Trace.FINEST, "Launching system Web browser: " + urlText); //$NON-NLS-1$
Program program = Program.findProgram("html"); //$NON-NLS-1$
if (program != null) {
if (program.execute(urlText))
return;
}
if (!Program.launch(urlText))
throw new PartInitException(NLS.bind(Messages.errorCouldNotLaunchWebBrowser, url.toExternalForm()));
}
}