Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 33044 Details for
Bug 123921
document list of commands for use from UA document contexts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
catalog of commands for embedding in UA documents (first draft)
EmbeddingCommands.html (text/html), 13.71 KB, created by
Christopher Daly
on 2006-01-16 00:39:31 EST
(
hide
)
Description:
catalog of commands for embedding in UA documents (first draft)
Filename:
MIME Type:
Creator:
Christopher Daly
Created:
2006-01-16 00:39:31 EST
Size:
13.71 KB
patch
obsolete
><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ><html> ><head> > <meta content="text/html; charset=ISO-8859-1" > http-equiv="content-type"> > <title>Embedding Commands as Links</title> ></head> ><body> ><h1>Embedding Commands as Links</h1> >by Chris Daly (cjdaly@us.ibm.com)<br> >version 0.1 (15-Jan-2006)<br> ><br> ><br> >This document is meant to serve as a guide to authors of Help, >Cheatsheets, Intro and possibly other document types who would benefit >from the ability to embed commands in their documents as links. >The centerpiece of this document is a catalog of commands that are >thought to be useful in embedded document contexts.<br> ><br> ><h2>Background</h2> >A <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=120523">recent >enhancement</a> to the command framework allows commands and their >parameter values to be serialized as strings and later deserialized and >executed. This allows serialized commands to be embedded in >documents and visualized as links such that activating the link has the >effect of executing the embedded command.<br> ><br> ><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=121709">Another >enhancement</a> introduces the notion of typed command >parameters. Previously, parameter values were expressed as >strings throughout the lifecycle of command parameterization and >execution. Now command parameters can declare a type and the >parameter values can be handled as objects instead of strings. >This allows:<br> ><ul> > <li>object parameter values to be handled correctly by the >serialization/deserialization mechanism described above</li> > <li>multiple handlers of a command to convert string to object >parameter values in a consistent way</li> > <li>tooling to search for commands that operate on certain types of >objects</li> ></ul> >This work was done with the goal of allowing commands to be embedded as >links in the various types of User Assistance documents: Help, >Cheatsheets and Intro. The functionality may also be useful in >other contexts.<br> ><br> >Two additional things are required for the ability to embed commands in >documents to become a useful and used feature. First, we must >have a reasonably large "catalog" of commands that do >interesting/useful things when embedded in documents. Second, >each type of document must specify how commands may be embedded and its >supporting code must present the commands in some way that allows them >to be invoked by users (such as a clickable link). These topics >are explored in detail below.<br> ><br> ><h2>An Example<br> ></h2> >Below is an HTML document that represents a Help topic. The >JavaScript <span style="font-family: monospace;">executeCommand</span> >function takes a serialized command as its argument and executes the >command when the link is clicked. <span > style="font-style: italic;">Note that this requires the patch for <a > href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122726">bug 122726</a>, >which is not yet committed.</span><br> ><br> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span > style="font-family: monospace;"><!DOCTYPE HTML PUBLIC "-//W3C//DTD >HTML 4.0 Transitional//EN"><HTML></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"><HEAD></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"><TITLE></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;">Help Link Test</span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"></TITLE></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"><script >language="JavaScript" src="../../org.eclipse.help/livehelp.js"> ></script></span><br style="font-family: monospace;"> > <span style="font-family: monospace;"></HEAD></span><br > style="font-family: monospace;"> > <br style="font-family: monospace;"> > <span style="font-family: monospace;"><body></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"><p>Execute command >link to</span><br style="font-family: monospace;"> > <span style="font-family: monospace;"><a >href='javascript:executeCommand(</span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"> >"org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.ui.views.TaskList)")'></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"> show >Tasks view</a>.</p></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"></body></span><br > style="font-family: monospace;"> > <span style="font-family: monospace;"></HTML></span><br> > </td> > </tr> > </tbody> ></table> ><br> ><br> ><h2>Catalog of Commands</h2> >What follows is a catalog of commands that may be useful in embedded >document scenarios. Some of these are available today and some >are not yet committed (indicated with [proposed] below). The >format of the tables below is:<br> ><br> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Command >Name</span> - brief description and mention of parameters<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;"><span > style="font-family: monospace;">command.id(param.id=value)</span> >« <span style="font-style: italic;">example demonstrating usage</span><br> > </div> > </td> > </tr> > </tbody> ></table> ><br> >Please refer to the JavaDoc for <span style="font-family: monospace;">ParameterizedCommand.serialize()</span> >for a description of the command serialization format.<br> ><br> ><h3>General Workbench</h3> ><small> </small><small> </small> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Show >Perspective</span> - without parameters, opens a >dialog with list of perspectives<br> > </td> > </tr> > <tr style="font-family: monospace;"> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;">org.eclipse.ui.perspectives.showPerspective</div> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Show >Perspective</span> - parameter >indicates perspective id<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;"><small><span > style="font-family: monospace;">org.eclipse.ui.perspectives.showPerspective(org.eclipse.ui.perspectives.showPerspective.perspectiveId=org.eclipse.ui.resourcePerspective)</span> > </small></div> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Show >View</span> - without parameters, opens a dialog with >list of views<br> > </td> > </tr> > <tr style="font-family: monospace;"> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;">org.eclipse.ui.views.showView</div> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Show >View</span> - parameter indicates >view id</td> > </tr> > <tr style="font-family: monospace;"> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;">org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.ui.views.TaskList)</div> > </td> > </tr> > </tbody> ></table> ><br> ><h3>Workspace</h3> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Open >Resource</span> [proposed] - open a resource given its path and/or URI >as parameter<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Show >Resource in Navigator</span> [proposed] - show in Navigator view given >resource path and/or URI as parameter</td> > </tr> > </tbody> ></table> ><br> ><h3>User Assistance</h3> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Display >Help</span> - without parameters, opens the help system<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;"><span > style="font-family: monospace;">org.eclipse.ui.help.displayHelp</span><br> > </div> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Display >Help</span> - parameter indicates help topic href<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;"><span > style="font-family: monospace;">org.eclipse.ui.help.displayHelp(href=/org.eclipse.platform.doc.user/gettingStarted/qs-02a.htm)</span><br> > </div> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Open >Cheatsheet</span> [proposed] - Chris G. indicated there would be >several variants<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Open >Intro Content</span> [proposed] - look into this...<br> > </td> > </tr> > </tbody> ></table> ><br> ><h3>Java</h3> >Note: the examples below work on a class named <span > style="font-family: monospace;">Activator</span> in a plugin called <span > style="font-family: monospace;">org.test</span>. Simply create a >new plugin called <span style="font-family: monospace;">org.test</span> >to try these examples.<br> ><br> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Open >JavaElement in Editor</span> [<a > href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=123198">proposed</a>] >- parameter encodes handle identifier of java element<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;"><small><span > style="font-family: monospace;">org.eclipse.jdt.ui.commands.openElementInEditor(elementHandleId=%=org.test/src<org.test{Activator.java[Activator)</span></small><br> > </div> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Show >JavaElement in Package Explorer View</span> [<a > href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=123198">proposed</a>] >- parameter encodes handle identifier of java element</td> > </tr> > <tr> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;"><small><span > style="font-family: monospace;">org.eclipse.jdt.ui.commands.showElementInPackageView(elementHandleId=%=org.test/src<org.test{Activator.java[Activator)</span></small><br> > </div> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Show >JavaElement in Type Hierarchy View</span> [<a > href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=123198">proposed</a>] >- parameter encodes handle identifier of java element</td> > </tr> > <tr style="font-family: monospace;"> > <td style="vertical-align: top;"> > <div style="margin-left: 40px;"><small>org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView(elementHandleId=%=org.test/src<org.test{Activator.java[Activator)<br> > </small></div> > </td> > </tr> > </tbody> ></table> ><br> ><h3>CVS</h3> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Add >Repository Location</span> [proposed] - parameter like >":pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse"<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Checkout >Project</span> [proposed] - parameter as in map files<br> > </td> > </tr> > </tbody> ></table> ><br> ><h3>Update Manager</h3> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Add >Update Site</span> [proposed] - params include site URL/path and label >(see org.eclipse.update.standalone)<br> > </td> > </tr> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Install >Feature</span> [proposed] - params for feature id, version, site, ...?<br> > </td> > </tr> > </tbody> ></table> ><br> ><br> ><h3>Browser</h3> ><table style="width: 100%; text-align: left;" border="1" cellpadding="2" > cellspacing="2"> > <tbody> > <tr> > <td style="vertical-align: top;"><span style="font-weight: bold;">Open >URL in Browser</span> [proposed] - parameter is URL<br> > </td> > </tr> > </tbody> ></table> ><br> ><br> ><br> ><h2>Command Embedding Contexts</h2> ><h3>Help</h3> >The example above shows how to embed commands in Help. See <a > href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122726">bug 122726</a> >for discussion.<br> ><br> ><h3>Cheatsheets</h3> >Talk to Chris G. about this...<br> ><br> ><h3>Intro</h3> >Investigate this...<br> ><br> ></body> ></html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <title>Embedding Commands as Links</title> </head> <body> <h1>Embedding Commands as Links</h1> by Chris Daly (cjdaly@us.ibm.com)<br> version 0.1 (15-Jan-2006)<br> <br> <br> This document is meant to serve as a guide to authors of Help, Cheatsheets, Intro and possibly other document types who would benefit from the ability to embed commands in their documents as links. The centerpiece of this document is a catalog of commands that are thought to be useful in embedded document contexts.<br> <br> <h2>Background</h2> A <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=120523">recent enhancement</a> to the command framework allows commands and their parameter values to be serialized as strings and later deserialized and executed. This allows serialized commands to be embedded in documents and visualized as links such that activating the link has the effect of executing the embedded command.<br> <br> <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=121709">Another enhancement</a> introduces the notion of typed command parameters. Previously, parameter values were expressed as strings throughout the lifecycle of command parameterization and execution. Now command parameters can declare a type and the parameter values can be handled as objects instead of strings. This allows:<br> <ul> <li>object parameter values to be handled correctly by the serialization/deserialization mechanism described above</li> <li>multiple handlers of a command to convert string to object parameter values in a consistent way</li> <li>tooling to search for commands that operate on certain types of objects</li> </ul> This work was done with the goal of allowing commands to be embedded as links in the various types of User Assistance documents: Help, Cheatsheets and Intro. The functionality may also be useful in other contexts.<br> <br> Two additional things are required for the ability to embed commands in documents to become a useful and used feature. First, we must have a reasonably large "catalog" of commands that do interesting/useful things when embedded in documents. Second, each type of document must specify how commands may be embedded and its supporting code must present the commands in some way that allows them to be invoked by users (such as a clickable link). These topics are explored in detail below.<br> <br> <h2>An Example<br> </h2> Below is an HTML document that represents a Help topic. The JavaScript <span style="font-family: monospace;">executeCommand</span> function takes a serialized command as its argument and executes the command when the link is clicked. <span style="font-style: italic;">Note that this requires the patch for <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122726">bug 122726</a>, which is not yet committed.</span><br> <br> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-family: monospace;"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML></span><br style="font-family: monospace;"> <span style="font-family: monospace;"><HEAD></span><br style="font-family: monospace;"> <span style="font-family: monospace;"><TITLE></span><br style="font-family: monospace;"> <span style="font-family: monospace;">Help Link Test</span><br style="font-family: monospace;"> <span style="font-family: monospace;"></TITLE></span><br style="font-family: monospace;"> <span style="font-family: monospace;"><script language="JavaScript" src="../../org.eclipse.help/livehelp.js"> </script></span><br style="font-family: monospace;"> <span style="font-family: monospace;"></HEAD></span><br style="font-family: monospace;"> <br style="font-family: monospace;"> <span style="font-family: monospace;"><body></span><br style="font-family: monospace;"> <span style="font-family: monospace;"><p>Execute command link to</span><br style="font-family: monospace;"> <span style="font-family: monospace;"><a href='javascript:executeCommand(</span><br style="font-family: monospace;"> <span style="font-family: monospace;"> "org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.ui.views.TaskList)")'></span><br style="font-family: monospace;"> <span style="font-family: monospace;"> show Tasks view</a>.</p></span><br style="font-family: monospace;"> <span style="font-family: monospace;"></body></span><br style="font-family: monospace;"> <span style="font-family: monospace;"></HTML></span><br> </td> </tr> </tbody> </table> <br> <br> <h2>Catalog of Commands</h2> What follows is a catalog of commands that may be useful in embedded document scenarios. Some of these are available today and some are not yet committed (indicated with [proposed] below). The format of the tables below is:<br> <br> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Command Name</span> - brief description and mention of parameters<br> </td> </tr> <tr> <td style="vertical-align: top;"> <div style="margin-left: 40px;"><span style="font-family: monospace;">command.id(param.id=value)</span> « <span style="font-style: italic;">example demonstrating usage</span><br> </div> </td> </tr> </tbody> </table> <br> Please refer to the JavaDoc for <span style="font-family: monospace;">ParameterizedCommand.serialize()</span> for a description of the command serialization format.<br> <br> <h3>General Workbench</h3> <small> </small><small> </small> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Show Perspective</span> - without parameters, opens a dialog with list of perspectives<br> </td> </tr> <tr style="font-family: monospace;"> <td style="vertical-align: top;"> <div style="margin-left: 40px;">org.eclipse.ui.perspectives.showPerspective</div> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Show Perspective</span> - parameter indicates perspective id<br> </td> </tr> <tr> <td style="vertical-align: top;"> <div style="margin-left: 40px;"><small><span style="font-family: monospace;">org.eclipse.ui.perspectives.showPerspective(org.eclipse.ui.perspectives.showPerspective.perspectiveId=org.eclipse.ui.resourcePerspective)</span> </small></div> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Show View</span> - without parameters, opens a dialog with list of views<br> </td> </tr> <tr style="font-family: monospace;"> <td style="vertical-align: top;"> <div style="margin-left: 40px;">org.eclipse.ui.views.showView</div> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Show View</span> - parameter indicates view id</td> </tr> <tr style="font-family: monospace;"> <td style="vertical-align: top;"> <div style="margin-left: 40px;">org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.ui.views.TaskList)</div> </td> </tr> </tbody> </table> <br> <h3>Workspace</h3> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Open Resource</span> [proposed] - open a resource given its path and/or URI as parameter<br> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Show Resource in Navigator</span> [proposed] - show in Navigator view given resource path and/or URI as parameter</td> </tr> </tbody> </table> <br> <h3>User Assistance</h3> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Display Help</span> - without parameters, opens the help system<br> </td> </tr> <tr> <td style="vertical-align: top;"> <div style="margin-left: 40px;"><span style="font-family: monospace;">org.eclipse.ui.help.displayHelp</span><br> </div> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Display Help</span> - parameter indicates help topic href<br> </td> </tr> <tr> <td style="vertical-align: top;"> <div style="margin-left: 40px;"><span style="font-family: monospace;">org.eclipse.ui.help.displayHelp(href=/org.eclipse.platform.doc.user/gettingStarted/qs-02a.htm)</span><br> </div> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Open Cheatsheet</span> [proposed] - Chris G. indicated there would be several variants<br> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Open Intro Content</span> [proposed] - look into this...<br> </td> </tr> </tbody> </table> <br> <h3>Java</h3> Note: the examples below work on a class named <span style="font-family: monospace;">Activator</span> in a plugin called <span style="font-family: monospace;">org.test</span>. Simply create a new plugin called <span style="font-family: monospace;">org.test</span> to try these examples.<br> <br> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Open JavaElement in Editor</span> [<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=123198">proposed</a>] - parameter encodes handle identifier of java element<br> </td> </tr> <tr> <td style="vertical-align: top;"> <div style="margin-left: 40px;"><small><span style="font-family: monospace;">org.eclipse.jdt.ui.commands.openElementInEditor(elementHandleId=%=org.test/src<org.test{Activator.java[Activator)</span></small><br> </div> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Show JavaElement in Package Explorer View</span> [<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=123198">proposed</a>] - parameter encodes handle identifier of java element</td> </tr> <tr> <td style="vertical-align: top;"> <div style="margin-left: 40px;"><small><span style="font-family: monospace;">org.eclipse.jdt.ui.commands.showElementInPackageView(elementHandleId=%=org.test/src<org.test{Activator.java[Activator)</span></small><br> </div> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Show JavaElement in Type Hierarchy View</span> [<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=123198">proposed</a>] - parameter encodes handle identifier of java element</td> </tr> <tr style="font-family: monospace;"> <td style="vertical-align: top;"> <div style="margin-left: 40px;"><small>org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView(elementHandleId=%=org.test/src<org.test{Activator.java[Activator)<br> </small></div> </td> </tr> </tbody> </table> <br> <h3>CVS</h3> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Add Repository Location</span> [proposed] - parameter like ":pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse"<br> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Checkout Project</span> [proposed] - parameter as in map files<br> </td> </tr> </tbody> </table> <br> <h3>Update Manager</h3> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Add Update Site</span> [proposed] - params include site URL/path and label (see org.eclipse.update.standalone)<br> </td> </tr> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Install Feature</span> [proposed] - params for feature id, version, site, ...?<br> </td> </tr> </tbody> </table> <br> <br> <h3>Browser</h3> <table style="width: 100%; text-align: left;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"><span style="font-weight: bold;">Open URL in Browser</span> [proposed] - parameter is URL<br> </td> </tr> </tbody> </table> <br> <br> <br> <h2>Command Embedding Contexts</h2> <h3>Help</h3> The example above shows how to embed commands in Help. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122726">bug 122726</a> for discussion.<br> <br> <h3>Cheatsheets</h3> Talk to Chris G. about this...<br> <br> <h3>Intro</h3> Investigate this...<br> <br> </body> </html>
View Attachment As Raw
Actions:
View
Attachments on
bug 123921
:
33044
|
33132
|
33685
|
33881
|
34409
|
34444
|
34981
|
35216