-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
244 lines (243 loc) · 9.65 KB
/
plugin.xml
File metadata and controls
244 lines (243 loc) · 9.65 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
id="com.cooperconrad.storytellerplugin.storytellercategory"
name="Storyteller">
</category>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.startPlayback"
name="Start Playback">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.viewStoryboards"
name="View Storyboards">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.createProjectFromDB"
name="Create a project from a db">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.addADeveloper"
name="Add a developer">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.changeDeveloperGroup"
name="Change developer group">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.mergeFromLocalDb"
name="Merge from the local db">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.mergeFromARemoteDb"
name="Merge from a remote db">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.createANewBranch"
name="from the current state of the IDE">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.createATag"
name="Create a tag">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.findStoryboardsFromSelectedText"
name="Find Storyboards">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.moveToABranch"
name="from a previous node">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.stopRecordingAndDeleteDatabase"
name="Stop recording and delete database">
</command>
<command
categoryId="com.cooperconrad.storytellerplugin.storytellercategory"
id="com.cooperconrad.storytellerplugin.startRecordingAndCreateDatabase"
name="Start recording and create a database">
</command>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="com.cooperconrad.storyteller.menus.storytellerMenu"
label="Storyteller">
</menu>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?after=additions">
<menu
label="Storyteller">
<command
commandId="com.cooperconrad.storytellerplugin.startPlayback"
style="push">
<visibleWhen
checkEnabled="false">
<with
variable="activeEditor">
<instanceof
value="org.eclipse.ui.IEditorPart">
</instanceof>
</with>
</visibleWhen>
</command>
<command
commandId="com.cooperconrad.storytellerplugin.findStoryboardsFromSelectedText"
style="push">
</command>
</menu>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="menu:com.cooperconrad.storyteller.menus.storytellerMenu?after=additions">
<menu
label="Playback">
<command
commandId="com.cooperconrad.storytellerplugin.startPlayback"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.viewStoryboards"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.findStoryboardsFromSelectedText"
style="push">
</command>
</menu>
<menu
label="Projects">
<command
commandId="com.cooperconrad.storytellerplugin.createProjectFromDB"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.stopRecordingAndDeleteDatabase"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.startRecordingAndCreateDatabase"
style="push">
</command>
</menu>
<menu
label="Developers">
<command
commandId="com.cooperconrad.storytellerplugin.addADeveloper"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.changeDeveloperGroup"
style="push">
</command>
</menu>
<menu
label="Branch and Merge">
<command
commandId="com.cooperconrad.storytellerplugin.mergeFromLocalDb"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.mergeFromARemoteDb"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.createATag"
style="push">
</command>
<menu
label="Branch">
<command
commandId="com.cooperconrad.storytellerplugin.createANewBranch"
style="push">
</command>
<command
commandId="com.cooperconrad.storytellerplugin.moveToABranch"
style="push">
</command>
</menu>
</menu>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="com.cooperconrad.storytellerplugin.StartPlaybackHandler"
commandId="com.cooperconrad.storytellerplugin.startPlayback">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.ViewStoryboardsHandler"
commandId="com.cooperconrad.storytellerplugin.viewStoryboards">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.CreateProjectFromDBHandler"
commandId="com.cooperconrad.storytellerplugin.createProjectFromDB">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.AddADeveloperHandler"
commandId="com.cooperconrad.storytellerplugin.addADeveloper">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.ChangeDeveloperGroupHandler"
commandId="com.cooperconrad.storytellerplugin.changeDeveloperGroup">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.MergeFromLocalDbHandler"
commandId="com.cooperconrad.storytellerplugin.mergeFromLocalDb">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.MergeFromARemoteDbHandler"
commandId="com.cooperconrad.storytellerplugin.mergeFromARemoteDb">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.CreateANewBranchHandler"
commandId="com.cooperconrad.storytellerplugin.createANewBranch">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.CreateATagHandler"
commandId="com.cooperconrad.storytellerplugin.createATag">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.FindStoryboardFromSelectedTextHandler"
commandId="com.cooperconrad.storytellerplugin.findStoryboardsFromSelectedText">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.MoveToABranchHandler"
commandId="com.cooperconrad.storytellerplugin.moveToABranch">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.StopRecordingAndDeleteDatabase"
commandId="com.cooperconrad.storytellerplugin.stopRecordingAndDeleteDatabase">
</handler>
<handler
class="com.cooperconrad.storytellerplugin.StartRecordingAndCreateDatabase"
commandId="com.cooperconrad.storytellerplugin.startRecordingAndCreateDatabase">
</handler>
</extension>
<extension
point="org.eclipse.ui.startup">
<startup
class="com.cooperconrad.storytellerplugin.StorytellerStartup">
</startup>
</extension>
</plugin>