import java.util.Iterator;
import net.sourceforge.phpeclipse.PHPeclipsePlugin;
+import net.sourceforge.phpeclipse.views.PHPConsole;
+
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.jface.viewers.StructuredSelection;
-import org.eclipse.swt.program.Program;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IWorkbenchPart;
MessageFormat form = new MessageFormat(store.getString(PHPeclipsePlugin.EXTERNAL_BROWSER_PREF));
Runtime runtime = Runtime.getRuntime();
- runtime.exec(form.format(arguments));
+ String command = form.format(arguments);
+ PHPConsole.write("External Browser command: "+command+"\n");
+ runtime.exec(command);
// runtime.exec(store.getString(PHPeclipsePlugin.EXTERNAL_BROWSER_PREF) + " " + fileName);
// runtime.exec("command.com /c start iexplore " + fileName);
} else {
// MessageDialog.openInformation(shell, "localhostURL", "localhostURL: " + localhostURL);
// this doesn't work under win98 ?
// Program.launch(localhostURL);
+ PHPConsole.write("Internal Browser URL: "+localhostURL+"\n");
open(new URL(localhostURL), shell, localhostURL);
}
} catch (MalformedURLException e) {