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