-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathplugin.xml
More file actions
49 lines (48 loc) · 1.88 KB
/
plugin.xml
File metadata and controls
49 lines (48 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.actionSets">
<actionSet
label="Nodeclipse Plugins List Action Set"
visible="true"
id="org.nodeclipse.pluginslist.core.actionSet">
<!--
<menu
label="Node&clipse"
id="nodeclipseMenu">
<separator
name="sampleGroup">
</separator>
</menu>
-->
<action
label="Nodeclipse effort on &GitHub"
icon="icons/github-cat_green.png"
class="org.nodeclipse.pluginslist.core.GithubAction"
tooltip="https://github.com/nodeclipse/"
menubarPath="help/Nodeclipse"
toolbarPath="Nodeclipse"
id="org.nodeclipse.pluginslist.core.GithubAction">
</action>
<action
label="&Nodeclipse List of Plugins"
icon="icons/tennis_ball_16x16_bottom_right_corner_green_half_size.png"
class="org.nodeclipse.pluginslist.core.PluginsListAction"
tooltip="Nodeclipse Plugins List is convenient way to install Eclipse plugins"
menubarPath="help/Nodeclipse"
toolbarPath="Nodeclipse"
id="org.nodeclipse.pluginslist.core.PluginsListAction">
</action>
<action
label="Nodeclipse support on &Stackoverflow"
icon="icons/stackoverflow16.png"
class="org.nodeclipse.pluginslist.core.StackoverflowAction"
tooltip="http://stackoverflow.com/tags/nodeclipse"
menubarPath="help/Nodeclipse"
toolbarPath="Nodeclipse"
id="org.nodeclipse.pluginslist.core.StackoverflowAction">
</action>
</actionSet>
</extension>
</plugin>