Alien
Alien

Reputation: 3

Eclipse RCP Help in Browser

I have an RCP application that I have attached my help plugin to. Help opens when I click Open Help, then a new window opens with the help. Is there a way to make my help plugin open in a browser window?

My help plugin.xml code:

<?xml version="1.0"?>
<plugin>
   <extension
         point="org.eclipse.help.toc">
         <toc file="toc_Concepts.xml" />
         <toc file="toc_Ref.xml" />
         <toc file="toc_Tasks.xml" />
      <toc
            file="toc.xml">
      </toc>
      <toc
            file="testToc.xml"
            primary="true">
      </toc>
   </extension>
      <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="menu:org.eclipse.ui.main.menu">
         <command
               commandId="org.eclipse.ui.help.displayHelp"
               label="Open Help"
               tooltip="Open the Eclipse Help System">
         </command>
      </menuContribution>
   </extension>
</plugin>

Upvotes: 0

Views: 34

Answers (0)

Related Questions