forked from Nodeclipse/nodeclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
108 lines (101 loc) · 3.9 KB
/
plugin.xml
File metadata and controls
108 lines (101 loc) · 3.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.nodeclipse.ui.editors.NodeEditor"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
default="true"
extensions="mjs"
icon="icons/mongodb.png"
id="org.nodeclipse.mongodb.editors.MongoJSEditor"
name="MongoDB JavaScript Editor">
</editor>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.nodeclipse.mongodb.launch.LaunchConfigurationDelegate"
id="org.nodeclipse.mongodb.launch.LaunchConfigurationType"
modes="run"
name="MongoDB Shell JavaScript">
</launchConfigurationType>
</extension>
<extension
point= "org.eclipse.debug.ui.launchConfigurationTypeImages" >
<launchConfigurationTypeImage
configTypeID= "org.nodeclipse.mongodb.launch.LaunchConfigurationType"
icon= "icons/mongodb_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.mongodb.launch.LaunchConfigurationTypeImage" >
</launchConfigurationTypeImage>
</extension>
<!-- mongodb shell run -->
<extension
point= "org.eclipse.debug.ui.launchShortcuts" >
<shortcut
class= "org.nodeclipse.mongodb.launch.LaunchShortcut"
icon= "icons/mongodb_bottom_right_corner_run_half_size.png"
id= "org.nodeclipse.mongodb.launch.LaunchShortcut"
label= "MongoDB Shell JavaScript"
modes= "run" >
<configurationType
id= "org.nodeclipse.mongodb.launch.LaunchConfigurationType" >
</configurationType>
<contextualLaunch>
<enablement>
<with
variable= "selection" >
<count
value= "1" >
</count>
<iterate>
<or>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.js" >
</test>
<test
property= "org.eclipse.debug.ui.matchesPattern"
value= "*.mjs" >
</test>
</or>
</iterate>
</with>
</enablement>
</contextualLaunch>
</shortcut>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class= "org.nodeclipse.mongodb.launch.LaunchConfigurationTabGroup"
id= "org.nodeclipse.mongodb.launch.LaunchConfigurationTabGroup"
type= "org.nodeclipse.mongodb.launch.LaunchConfigurationType" >
</launchConfigurationTabGroup>
</extension>
<!-- not used
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.nodeclipse.phantomjs.preferences.PhantomjsPreferenceInitializer">
</initializer>
</extension>
-->
<extension
point="org.eclipse.ui.preferencePages">
<page
category="org.nodeclipse.ui.preferences.NodePreferencePage"
class="org.nodeclipse.mongodb.preferences.MongodbPreferencePage"
id="org.nodeclipse.mongodb.preferences.MongodbPreferencePage"
name="MongoDB">
</page>
</extension>
<extension
point="org.eclipse.help.toc">
<toc
file="HelpToc.xml"
primary="true">
</toc>
</extension>
</plugin>