[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.ua] Generating a ToC at run-time

Hi

I am displaying a set of external HTML help files from a local filesystem within
the Eclipse help system as follows:


 docDir = getDocDirPreference();
 href = "file:" + docDir + "/myhelp.html";
 PlatformUI.getWorkbench().getHelpSystem().displayHelpResource(href);

The location of the directory containing the external help files is configurable at run-time and this may affect the precise set of help files available so I am unable to provide a static Table of Contents file when I build my plug-in.

If I generated a ToC programatically at run-time, how could I add this to the help system? Is there an API for this?

Thanks

Peter Saunders