Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/Documentation/Developer Guide/Plugging into the navigator"

(orion.navigate.command)
Line 13: Line 13:
 
;run(selection)
 
;run(selection)
 
: Takes the navigator selection as an argument, and runs a command against the selected objects.
 
: Takes the navigator selection as an argument, and runs a command against the selected objects.
 +
 +
This method will only be called when the implementation does not define a <tt>uriTemplate</tt> property.
  
 
== Service attributes ==
 
== Service attributes ==
Line 27: Line 29:
 
:A boolean attribute specifying whether the command supports only a single selected item or multiple items
 
:A boolean attribute specifying whether the command supports only a single selected item or multiple items
 
;uriTemplate
 
;uriTemplate
:A template that defines a link to another page, using variables from the selected object's metadata or validation properties.  See
+
:Optional.  A [[Orion/Documentation/Developer Guide/Plugging into Orion pages#URI Templates|URI Template]] that defines a link to another page, using variables from the selected object's metadata or validation properties.  If this property is specified, then the run service method will never be called.
 
;tooltip
 
;tooltip
 
:Tooltip text shown to the user when they hover on the command
 
:Tooltip text shown to the user when they hover on the command
 
;validationProperties
 
;validationProperties
:A JSON object containing key value pairs used to validate the item to which the command should be applied.  For example, the expression <tt>{"Git":"*", "Directory":"true"}</tt> means that the command is valid for items that have a <tt>Git</tt> property and that have a <tt>Directory</tt> property whose value is <tt>true</tt>.
+
:Optional.  An array of [[Orion/Documentation/Developer Guide/Plugging into Orion pages#Validation Properties|Validation Properties]] used to determine if the selected object should offer this command.
 +
 
  
 
== Example ==
 
== Example ==
Line 38: Line 41:
 
<pre>
 
<pre>
 
  var provider = new eclipse.PluginProvider({postInstallUrl:"/plugin/list.html"});
 
  var provider = new eclipse.PluginProvider({postInstallUrl:"/plugin/list.html"});
  provider.registerServiceProvider("orion.navigate.command", {
+
  provider.registerServiceProvider("orion.navigate.command", {}, {
  run : function(item) {
+
    return "http://www.google.com/#q=" + item.Name;
+
  }
+
}, {
+
 
   image: "http://www.google.com/favicon.ico",
 
   image: "http://www.google.com/favicon.ico",
 
   name: "Google Search",
 
   name: "Google Search",
 
   id: "sample.commands.sample4",
 
   id: "sample.commands.sample4",
 
   forceSingleItem: true,
 
   forceSingleItem: true,
   href: true,
+
   uriTemplate: "http://www.google.com/#q={Name}",
 
   tooltip: "Link to google search for this file name"
 
   tooltip: "Link to google search for this file name"
 
  });
 
  });

Revision as of 17:29, 13 April 2012

Overview of contributing services to the Navigator

The Navigator page provides a view for users to browse and manipulate files in their workspace. The Navigator defines some services to allow plug-ins to contribute commands to this view.

orion.navigate.command

The orion.navigate.command service is used to contribute commands that are relevant to a selected file or folder. When the service is executed, a file object or array of file objects is passed to the service's run method. The command can perform some operation on the provided files. If the command is simply linking to another page, a uriTemplate can be used to specify the link.

Service methods

Implementations of orion.navigate.command may define the following function:

run(selection)
Takes the navigator selection as an argument, and runs a command against the selected objects.

This method will only be called when the implementation does not define a uriTemplate property.

Service attributes

Implementations of orion.navigate.command may define the following attributes:

image
The URL of an icon to associate with the command
name
The command text show to the user
id
The command id
forceSingleItem
A boolean attribute specifying whether the command supports only a single selected item or multiple items
uriTemplate
Optional. A URI Template that defines a link to another page, using variables from the selected object's metadata or validation properties. If this property is specified, then the run service method will never be called.
tooltip
Tooltip text shown to the user when they hover on the command
validationProperties
Optional. An array of Validation Properties used to determine if the selected object should offer this command.


Example

Here is a sample plug-in that contributes a link to a Google search for the selected file's name:

 var provider = new eclipse.PluginProvider({postInstallUrl:"/plugin/list.html"});
 provider.registerServiceProvider("orion.navigate.command", {}, {
   image: "http://www.google.com/favicon.ico",
   name: "Google Search",
   id: "sample.commands.sample4",
   forceSingleItem: true,
   uriTemplate: "http://www.google.com/#q={Name}",
   tooltip: "Link to google search for this file name"
 });
 provider.connect();

When this plug-in is installed, the user will see the google search command in the Navigator menu as follows:

Orion-file-command-example.png

For more examples of contributing Navigator commands see the sample commands plugin.

orion.navigate.openWith

The orion.navigate.openWith service is used to associate a registered editor (see orion.edit.editor) with a registered content type (see orion.core.contenttype). Once this association has been made, the editor will be presented as a choice in the "Open With" menu beside files of that content type.

By default, the Orion client UI provides an editor with ID orion.editor, to be used for editing source code. You can refer to this editor ID when you want to associate a new content type with the Orion Editor.

Service methods

None. This service is purely declarative.

Service attributes

Implementations of orion.navigate.openWith must define the following attributes:

editor
String The ID of the editor we want to associate. This must match exactly the editor's ID as given in orion.edit.editor.
contentType
String[] An array of one or more content type IDs that will be associated with the editor.

Example

Here is a sample plug-in that associates the Orion Editor with the "text.markdown" content type. This example assumes that the "text.markdown" type has been previously registered with the orion.core.contenttype service.

 var provider = new eclipse.PluginProvider();
 provider.registerServiceProvider("orion.navigate.openWith", {},
   {  id: "orion.editor",
      contentType: ["text.markdown"]
   });
 provider.connect();

When this plug-in is installed, the user will see the Orion Editor as an available target in the Open With Navigator menu beside files of the Markdown content type:

Orion-file-openWith-example.png

orion.core.contenttype

The content type service tells Orion about a new kind of file. The content types contributed to this service don't have any direct effect on the Orion UI, but they can be referred to by other services that need to associate themselves with a particular kind of file. For an example, see orion.navigate.openWith.

The Orion client UI defines a bunch of content types by default: see webEditingPlugin.html in the client UI code.

Service attributes

contentTypes
An Array containing one or more content types to register. Each element of the array defines a new content type, and must have this shape:
id
String The unique identifier of the content type. This is a simple hierarchical name and should start with a category like "text" or "image".
name
String The user-readable name of the content type.
extension
String[] Optional. Array of file extensions characterizing this content type. (Extensions are given without the leading "." character).
filename
String[] Optional. Array of filenames characterizing this content type. Use this when a type does not have a characteristic file extension, but rather a filename. (For example, "Makefile", "README", "passwd").
extends
String Optional. If this content type is a subtype of another, this gives the parent content type's ID.
image
String Optional. URL of an image to display beside files of this type (for example, in the Orion navigator).

Service methods

None. This service is purely declarative.

Example

This example code contributes contributes a new content type for Perl files. A Perl file extends from "text.plain" and has the extension .pl.

 provider.registerServiceProvider("orion.core.contenttype", {}, {
   contentTypes: [{  id: "text.perl",
                     name: "Perl",
                     extension: ["pl"],
                     "extends": "text.plain"
                  }] });
 provider.connect();

The example code below contributes a new content type for Ant build files. An Ant build file is a special kind of XML file that always has the name "build.xml".

 provider.registerServiceProvider("orion.core.contenttype", {}, {
   contentTypes: [{  id: "text.ant",
                     name: "Ant build file",
                     filename: ["build.xml"],
                     "extends": "text.xml"
                  }] });
 provider.connect();

Back to the top