Eclipse 插件:如何在欢迎页面上从 Intro.xml 打开外部浏览器

Eclipse plugin: How to open external browser from Intro.xml on the Welcome page

如何通过自定义 Eclipse 欢迎页面插件上的 link 标签在外部浏览器上显示 url?

以下代码是我目前从 intro.xml 获得的示例,当我从 Eclipse 欢迎页面单击 link 时,它正在运行,但它显示 url来自Eclipse内部浏览器,我需要在外部浏览器上显示它。

                <link 
                    label="Google" 
                    url="https://www.google.com/"
                    id="link-img-google" 
                    style-id="link">
                    <text>Please read the "Please visit Google"</text>
                </link>

我通过更改 url 属性内容结构以打开外部浏览器找到了解决方案,这里是更改:

            <link 
                label="Google" 
                url="http://org.eclipse.ui.intro/openBrowser?url=https://www.google.com/"
                id="link-img-google" 
                style-id="link">
                <text>Please read the "Please visit Google"</text>
            </link>