[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] Re: Need help with the eclipse standalone help

Hi Jenny,

I'm adding the eclipse.platform.ua newsgroup to this thread.

That newsgroup includes a focus on the Eclipse help system, and folks who hang out there might see ways to help you.

What do you mean by "tried to use the same href twice"? The hrefs in your code snippet below look unique. Do you mean the same HTML file is in two different toc.xml files?

I'm not sure that your displayHelpResource parameters are proper. Can you describe what you expect to see displayed in the help system from executing that command?

Best regards,
Lee Anne


Jenny wrote:
Hi,

I use the eclipse native help system and encountered a problem:
i want to use a html page at two different places, but don't know how to do this.


yet i tried to use the same href twice but the help don't show the right path and i tried link_toc but than he don't show the actual tree on the left; so neither one with satisfying success

For Example:

<toc label="gettingstarted" link_to="toc.xml#gettingstarted"> <topic label="maintopic" href="html/gettingstarted/maintopic.html"> </topic> <topic label="subtopic"> <link toc="tocreference.xml"/> </topic> </toc>
<toc label="reference" link_to="toc.xml#reference"> <topic label="subtopic" href="html/reference/subtopic.html"> </topic> </toc>


PlatformUI.getWorkbench().getHelpSystem().displayHelpResource("toc=/HelpBook/tocgettingstarted.xml&topic=/HelpBook/html/reference/subtopic.html");

Can anybody help me?