Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Templates: how to use the help= attribute


> Thanks for the tip. Does this mean that I can define a context somewhere:
>
>      <contexts>
>        <context id="org.eclipse.cdt.ui.MyPropertyGroup">
>          <description>My Property Group Help</description>
>          <topic href=""  label="My Help"/>
>        </context>
>        ...
>      </contexts.


The plugin qualifier part of the id attribute ("org.eclipse.cdt.ui") comes from
the plugin attribute in the extension-point - so in this case you'd have:

plugin.xml:
    <extension
            point="org.eclipse.help.contexts">
        <context>
            file="contexts.xml"
            plugin="org.eclipse.cdt.ui">
        </contexts>
    </extension>

contexts.xml:
    <contexts>
       <context id="MyPropertyGroup">
           <description>My Property Group Help</description>
           <topic href=""  label="My Help"/>

        </context>
       ...

    </contexts>

I've attached a patch to 218486 that shows how you'd theoretically do this for one of the
plug-ins built in to the managedbuilder:
    https://bugs.eclipse.org/bugs/attachment.cgi?id=89389

Discover tomorrow's technology on today's phones... Visit the Symbian Stand, 8A77, Hall 8, at Mobile World Congress 2008, 11-14 February, Barcelona, Spain


**********************************************************************
Symbian Software Ltd is a company registered in England and Wales with registered number 4190020 and registered office at 2-6 Boundary Row, Southwark, London, SE1 8HP, UK. This message is intended only for use by the named addressee and may contain privileged and/or confidential information. If you are not the named addressee you should not disseminate, copy or take any action in reliance on it. If you have received this message in error please notify postmaster@xxxxxxxxxxx and delete the message and any attachments accompanying it immediately. Neither Symbian nor any of its Affiliates accepts liability for any corruption, interception, amendment, tampering or viruses occurring to this message in transit or for any message sent by its employees which is not in compliance with Symbian corporate policy.
**********************************************************************


Back to the top