我有一个eclipse插件,它的扩展名为:
<extension
point="org.eclipse.help.contexts">
<contexts
file="contexts.xml"
plugin="my.plugin.id">
</contexts>
</extension>
contexts.xml具有:
<contexts>
<context id="test_context" title="About Contexts">
<description>This is written by me.</description>
<topic href="http://www.google.com" label="Search about me" />
</context>
</contexts>
我将其用作:
PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, "my.plugin.id.test_context");
在主题href中,我如何使用系统。中的html文件? :ike它在C:/ test中吗?
我试过了
href="C:/test/t.html" label="Search about me"/>
我也尝试用\代替/ in href,sytill没有用。似乎它只占用了工作区中的html文件!任何解决方法?
最佳答案
我在项目中创建了一个中间html文件,并从中使用eclipse帮助javascript文件调用了外部html文件。