我有一个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文件。 :它是在C:/ test? 我试过了
href="C:/test/t.html" label="Search about me"/>
我也试过用\而不是/ in href,sytill没用。好像它只占用了工作空间中的html文件!任何解决方法?
答案 0 :(得分:0)
我在项目中创建了一个中间html文件,然后我使用eclipse帮助javascript文件调用了外部html文件。