Questions about active help [message #470168] |
Sat, 27 October 2007 06:37  |
Eclipse User |
|
|
|
Hi,
1) can you confirm that the following step:
-----------------------------
This script reference should be placed in the HEAD section of your HTML:
<script language="JavaScript"
src="PLUGINS_ROOT/org.eclipse.help/livehelp.js> </script>
-----------------------------
mentioned in the "Platform Plug-in Developer Guide > Programmer's Guide
> User assistance support > Help > Help content > Active help >
Invoking the action from HTML" topic is no longer necessary as of
Eclipse 3.3, as
-----------------------------
<script language="JavaScript"
src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"> </script>
-----------------------------
seems to be automatically inserted by the help system in every topic.
2) some html files in the org.eclipse.platform.doc.isv plugin (maybe
other plugins as well) already have livehelp.js script elements,
inserted "manually".
ex: Platform Plug-in Developer Guide > Programmer's Guide > User
assistance support > Help > Help content > Active help"
Why is there a difference in the src attribute syntax of the script element?
manual: src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"
automatic: src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"
3) can you confirm that active help is neither supported by the
infocenter nor the standalone help?
"Platform Plug-in Developer Guide > Programmer's Guide > User assistance
support > Help > Configuration/setup > Infocenter"
says:
"All features of help system except context help, active help, command
support, and the help view are supported."
"Platform Plug-in Developer Guide > Programmer's Guide > User assistance
support > Help > Configuration/setup > Standalone help"
says:
"The stand-alone help system has all the features of the integrated help
system, except workbench-integrated context help, the help view, and
active help."
However, "Platform Plug-in Developer Guide > Programmer's Guide > User
assistance support > Help > Configuration/setup > Product customization"
only says:
"Allows enabling and disabling execution of active help. The option has
no effect in the infocenter setup, where active help is disabled."
Hence, my hesitation.
NB: I'm using Eclipse 3.3.1.
Thanks for your help,
Pierre
|
|
|
Re: Questions about active help [message #470558 is a reply to message #470168] |
Mon, 29 October 2007 12:10  |
Eclipse User |
|
|
|
Pierre Candela wrote:
> Hi,
> 1) can you confirm that the following step:
>
> -----------------------------
> This script reference should be placed in the HEAD section of your HTML:
> <script language="JavaScript"
> src="PLUGINS_ROOT/org.eclipse.help/livehelp.js> </script>
> -----------------------------
>
> mentioned in the "Platform Plug-in Developer Guide > Programmer's Guide
> > User assistance support > Help > Help content > Active help >
> Invoking the action from HTML" topic is no longer necessary as of
> Eclipse 3.3, as
>
> -----------------------------
> <script language="JavaScript"
> src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"> </script>
> -----------------------------
>
> seems to be automatically inserted by the help system in every topic.
Yes, this is inserted into every topic.
>
> 2) some html files in the org.eclipse.platform.doc.isv plugin (maybe
> other plugins as well) already have livehelp.js script elements,
> inserted "manually".
> ex: Platform Plug-in Developer Guide > Programmer's Guide > User
> assistance support > Help > Help content > Active help"
> Why is there a difference in the src attribute syntax of the script
> element?
> manual: src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"
> automatic: src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"
I wasn't aware that sometimes the path was inserted manually. In this
case the help system ends up computing the same path.
>
> 3) can you confirm that active help is neither supported by the
> infocenter nor the standalone help?
Live help is definitely not supported in infocenter mode. I don't
believe it would work in standalone mode but I haven't tried it.
>
> "Platform Plug-in Developer Guide > Programmer's Guide > User assistance
> support > Help > Configuration/setup > Infocenter"
> says:
> "All features of help system except context help, active help, command
> support, and the help view are supported."
>
> "Platform Plug-in Developer Guide > Programmer's Guide > User assistance
> support > Help > Configuration/setup > Standalone help"
> says:
> "The stand-alone help system has all the features of the integrated help
> system, except workbench-integrated context help, the help view, and
> active help."
>
> However, "Platform Plug-in Developer Guide > Programmer's Guide > User
> assistance support > Help > Configuration/setup > Product customization"
> only says:
> "Allows enabling and disabling execution of active help. The option has
> no effect in the infocenter setup, where active help is disabled."
>
> Hence, my hesitation.
>
> NB: I'm using Eclipse 3.3.1.
>
> Thanks for your help,
> Pierre
|
|
|
Re: Questions about active help [message #592641 is a reply to message #470168] |
Mon, 29 October 2007 12:10  |
Eclipse User |
|
|
|
Pierre Candela wrote:
> Hi,
> 1) can you confirm that the following step:
>
> -----------------------------
> This script reference should be placed in the HEAD section of your HTML:
> <script language="JavaScript"
> src="PLUGINS_ROOT/org.eclipse.help/livehelp.js> </script>
> -----------------------------
>
> mentioned in the "Platform Plug-in Developer Guide > Programmer's Guide
> > User assistance support > Help > Help content > Active help >
> Invoking the action from HTML" topic is no longer necessary as of
> Eclipse 3.3, as
>
> -----------------------------
> <script language="JavaScript"
> src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"> </script>
> -----------------------------
>
> seems to be automatically inserted by the help system in every topic.
Yes, this is inserted into every topic.
>
> 2) some html files in the org.eclipse.platform.doc.isv plugin (maybe
> other plugins as well) already have livehelp.js script elements,
> inserted "manually".
> ex: Platform Plug-in Developer Guide > Programmer's Guide > User
> assistance support > Help > Help content > Active help"
> Why is there a difference in the src attribute syntax of the script
> element?
> manual: src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"
> automatic: src="../content/PLUGINS_ROOT/org.eclipse.help/livehelp.js"
I wasn't aware that sometimes the path was inserted manually. In this
case the help system ends up computing the same path.
>
> 3) can you confirm that active help is neither supported by the
> infocenter nor the standalone help?
Live help is definitely not supported in infocenter mode. I don't
believe it would work in standalone mode but I haven't tried it.
>
> "Platform Plug-in Developer Guide > Programmer's Guide > User assistance
> support > Help > Configuration/setup > Infocenter"
> says:
> "All features of help system except context help, active help, command
> support, and the help view are supported."
>
> "Platform Plug-in Developer Guide > Programmer's Guide > User assistance
> support > Help > Configuration/setup > Standalone help"
> says:
> "The stand-alone help system has all the features of the integrated help
> system, except workbench-integrated context help, the help view, and
> active help."
>
> However, "Platform Plug-in Developer Guide > Programmer's Guide > User
> assistance support > Help > Configuration/setup > Product customization"
> only says:
> "Allows enabling and disabling execution of active help. The option has
> no effect in the infocenter setup, where active help is disabled."
>
> Hence, my hesitation.
>
> NB: I'm using Eclipse 3.3.1.
>
> Thanks for your help,
> Pierre
|
|
|
Powered by
FUDForum. Page generated in 0.04845 seconds