Project

General

Profile

Download (15.1 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?eclipse version="3.2"?>
3
<plugin>
4
   <extension
5
         id="application"
6
         name="%extension.name"
7
         point="org.eclipse.core.runtime.applications">
8
      <application
9
            cardinality="singleton-global"
10
            thread="main"
11
            visible="true">
12
         <run
13
               class="eu.etaxonomy.taxeditor.Application">
14
         </run>
15
      </application>
16
   </extension>
17
   <extension
18
         point="org.eclipse.ui.perspectives">
19
      <perspective
20
            class="eu.etaxonomy.taxeditor.perspective.Taxonomic"
21
            id="eu.etaxonomy.taxeditor.application.perspective.taxonomic"
22
            name="%perspective.name">
23
      </perspective>
24
      <!--perspective
25
            class="eu.etaxonomy.taxeditor.perspective.BulkEditing"
26
            id="eu.etaxonomy.taxeditor.application.perspective.bulkeditor"
27
            name="Bulk Editing">
28
      </perspective-->
29
      <perspective
30
            class="eu.etaxonomy.taxeditor.perspective.PolytomousKey"
31
            id="eu.etaxonomy.taxeditor.application.perspective.polytomous"
32
            name="%perspective.name.0">
33
      </perspective>
34
      <perspective
35
            class="eu.etaxonomy.taxeditor.perspective.Uses"
36
            id="eu.etaxonomy.taxeditor.application.perspective.uses"
37
            name="%perspective.name.1">
38
      </perspective>
39
      <perspective
40
            class="eu.etaxonomy.taxeditor.perspective.DerivatePerspective"
41
            icon="icons/specimen_derivate-16x16-32.png"
42
            id="eu.etaxonomy.taxeditor.application.perspective.derivates"
43
            name="%perspective.name.2">
44
      </perspective>
45
     
46
   </extension>
47
   <!--extension
48
         point="org.eclipse.ui.views">
49
      <view
50
            class="eu.etaxonomy.taxeditor.navigation.taxonomictree.TaxonomicTreeView"
51
            id="eu.etaxonomy.taxeditor.navigation.taxonomictree.treeView"
52
            name="Taxonomic Tree">
53
      </view>
54
      <view
55
            allowMultiple="true"
56
            class="eu.etaxonomy.taxeditor.navigation.search.SearchResultView"
57
            id="eu.etaxonomy.taxeditor.navigation.search.searchResultView"
58
            name="Search Result"
59
            restorable="true">
60
      </view>
61
   </extension-->
62
 <extension
63
       point="org.eclipse.ui.perspectiveExtensions">
64
    <perspectiveExtension
65
          targetID="eu.etaxonomy.taxeditor.application.perspective.bulkeditor">
66
       <showInPart
67
             id="eu.etaxonomy.taxeditor.editor.forms.detailsView">
68
       </showInPart>
69
       <showInPart
70
             id="eu.etaxonomy.taxeditor.bulkeditor.referencingobjectsview">
71
       </showInPart>
72
    </perspectiveExtension>
73
    <perspectiveExtension
74
          targetID="eu.etaxonomy.taxeditor.application.perspective.polytomous">
75
       <showInPart
76
             id="eu.etaxonomy.taxeditor.editor.forms.detailsView">
77
       </showInPart>
78
    </perspectiveExtension>
79
    <perspectiveExtension
80
          targetID="eu.etaxonomy.taxeditor.application.perspective.uses">
81
       <showInPart
82
             id="eu.etaxonomy.taxeditor.editor.forms.detailsView">
83
       </showInPart>
84
    </perspectiveExtension>
85
 </extension>
86
   <extension
87
         point="org.eclipse.ui.menus">
88
      <menuContribution
89
            locationURI="menu:org.eclipse.ui.main.menu">
90
         <menu
91
               id="org.eclipse.ui.main.menu.file"
92
               label="%menu.label">
93
         </menu>
94
         <menu
95
               id="org.eclipse.ui.main.menu.edit"
96
               label="%menu.label.0">
97
         </menu>
98
         <menu
99
               id="org.eclipse.ui.main.menu.window"
100
               label="%menu.label.1">
101
         </menu>
102
         <menu
103
               id="org.eclipse.ui.main.menu.help"
104
               label="%menu.label.2">
105
         </menu>
106
      </menuContribution>
107
      <menuContribution
108
            locationURI="menu:org.eclipse.ui.main.menu.file">
109
         <menu
110
               id="eu.etaxonomy.navigation.menu.new"
111
               label="%menu.label.3">
112
         </menu>
113
         <separator
114
               name="eu.etaxonomy.taxeditor.application.filemenu.new"
115
               visible="true">
116
         </separator>
117
         <command
118
               commandId="org.eclipse.ui.file.close"
119
               label="%command.label"
120
               style="push">
121
         </command>
122
         <command
123
               commandId="org.eclipse.ui.file.closeAll"
124
               label="%command.label.0"
125
               style="push">
126
         </command>
127
         <separator
128
               name="eu.etaxonomy.taxeditor.application.filemenu.close"
129
               visible="true">
130
         </separator>
131
         <command
132
               commandId="org.eclipse.ui.file.save"
133
               label="%command.label.1"
134
               style="push">
135
         </command>
136
         <command
137
               commandId="org.eclipse.ui.file.saveAll"
138
               label="%command.label.2"
139
               style="push">
140
         </command>
141
         <separator
142
               name="eu.etaxonomy.taxeditor.application.filemenu.save"
143
               visible="true">
144
         </separator>
145
         <command
146
               commandId="org.eclipse.ui.file.import"
147
               label="%command.label.3"
148
               style="push">
149
         </command>
150
         <command
151
               commandId="org.eclipse.ui.file.export"
152
               label="%command.label.4"
153
               style="push">
154
         </command>
155
         <separator
156
               name="eu.etaxonomy.taxeditor.application.filemenu.io"
157
               visible="true">
158
         </separator>
159
         <command
160
               commandId="org.eclipse.ui.file.exit"
161
               id="eu.etaxonomy.taxeditor.application.menu.exit"
162
               label="%command.label.5"
163
               style="push">
164
         </command>
165
      </menuContribution>
166
      <menuContribution
167
            locationURI="menu:org.eclipse.ui.main.menu.edit">
168
         <command
169
               commandId="org.eclipse.ui.edit.undo"
170
               label="%command.label.6">
171
         </command>
172
         <command
173
               commandId="org.eclipse.ui.edit.redo"
174
               label="%command.label.7"
175
               style="push">
176
         </command>
177
         <separator
178
               name="eu.etaxonomy.taxeditor.ui.edit.separator1"
179
               visible="true">
180
         </separator>
181
         <command
182
               commandId="org.eclipse.ui.edit.cut"
183
               label="%command.label.8"
184
               style="push">
185
         </command>
186
         <command
187
               commandId="org.eclipse.ui.edit.copy"
188
               label="%command.label.9"
189
               style="push">
190
         </command>
191
         <command
192
               commandId="org.eclipse.ui.edit.paste"
193
               label="%command.label.10"
194
               style="push">
195
         </command>
196
         <separator
197
               name="eu.etaxonomy.taxeditor.ui.edit.separator2"
198
               visible="true">
199
         </separator>
200
         <command
201
               commandId="org.eclipse.ui.edit.delete"
202
               label="%command.label.11"
203
               style="push">
204
         </command>
205
      </menuContribution>
206
      <menuContribution
207
            locationURI="menu:org.eclipse.ui.main.menu.window">
208
         <separator
209
               name="eu.etaxonomy.taxeditor.application.windowMenu.last"
210
               visible="true">
211
         </separator>
212
         <command
213
               commandId="org.eclipse.ui.window.preferences"
214
               label="%command.label.12"
215
               style="push">
216
         </command>
217
      </menuContribution>
218
      <menuContribution
219
            locationURI="menu:org.eclipse.ui.main.menu.help">
220
         <command
221
               commandId="org.eclipse.ui.help.helpContents"
222
               label="%command.label.13"
223
               style="push">
224
         </command>
225
         <command
226
               commandId="org.eclipse.ui.help.helpSearch"
227
               label="%command.label.14"
228
               style="push">
229
         </command>
230
         <separator
231
               name="eu.etaxonomy.taxeditor.ui.help.separator0"
232
               visible="true">
233
         </separator>
234
         <command
235
               commandId="org.eclipse.ui.help.dynamicHelp"
236
               label="%command.label.15"
237
               style="push">
238
         </command>
239
         <command
240
               commandId="eu.etaxonomy.taxeditor.application.help.parser"
241
               label="%command.label.16"
242
               style="push">
243
         </command>
244
         <separator
245
               name="eu.etaxonomy.taxeditor.ui.help.separator1"
246
               visible="true">
247
         </separator>
248
         <command
249
               commandId="org.eclipse.equinox.p2.ui.sdk.update"
250
               label="%command.label.17"
251
               style="push">
252
         </command>
253
         <command
254
               commandId="org.eclipse.equinox.p2.ui.sdk.install"
255
               label="%command.label.18"
256
               style="push">
257
         </command>
258
         <separator
259
               name="eu.etaxonomy.taxeditor.ui.help.separator2"
260
               visible="true">
261
         </separator>
262
         <command
263
               commandId="org.eclipse.ui.help.aboutAction"
264
               label="%command.label.19">
265
         </command>
266
         <command
267
               commandId="eu.etaxonomy.taxeditor.application.help.aboutPlatform"
268
               label="%command.label.20"
269
               style="push">
270
         </command>
271
      </menuContribution>
272
            <menuContribution
273
            locationURI="toolbar:org.eclipse.ui.main.toolbar">
274
         <toolbar
275
               id="eu.etaxonomy.taxeditor.editor.main">
276
            <command
277
                  commandId="org.eclipse.ui.newWizard"
278
                  label="%command.label.21"
279
                  style="push">
280
            </command>
281
            <command
282
                  commandId="org.eclipse.ui.file.save"
283
                  label="%command.label.22"
284
                  style="push">
285
            </command>
286
         </toolbar>
287
      </menuContribution>
288
   </extension>
289
   <extension
290
         id="product"
291
         point="org.eclipse.core.runtime.products">
292
      <product
293
            application="eu.etaxonomy.taxeditor.application.application"
294
            name="%product.name">
295
         <property
296
               name="windowImages"
297
               value="icons/256color_16x16.gif,icons/256color_32x32.gif,icons/256color_48x48.gif">
298
         </property>
299
         <property
300
               name="aboutText"
301
               value="%productBlurb">
302
         </property>
303
         <!--property
304
               name="startupForegroundColor"
305
               value="#C8D5EA"-->
306
         <property
307
               name="startupForegroundColor"
308
               value="000000">
309
         </property>
310
         <property
311
               name="startupProgressRect"
312
               value="5,447,366,15">
313
         </property>
314
         <property
315
               name="startupMessageRect"
316
               value="7,432,360,20">
317
         </property>
318
         <property
319
               name="appName"
320
               value="EDIT Taxonomic Editor">
321
         </property>
322
         <property
323
               name="preferenceCustomization"
324
               value="plugin_customization.ini">
325
         </property>
326
         <property
327
               name="aboutImage"
328
               value="icons/256color_48x48.gif">
329
         </property>
330
      </product>
331
   </extension>
332
   <extension
333
         point="org.eclipse.ui.commands">
334
      <command
335
            defaultHandler="eu.etaxonomy.taxeditor.OpenExternalParserHelpHandler"
336
            id="eu.etaxonomy.taxeditor.application.help.parser"
337
            name="%command.name">
338
      </command>
339
      <command
340
            defaultHandler="eu.etaxonomy.taxeditor.OpenExternalAboutPlatformHandler"
341
            id="eu.etaxonomy.taxeditor.application.help.aboutPlatform"
342
            name="%command.name.0">
343
      </command>
344
   </extension>
345

    
346
	<extension
347
		point="org.eclipse.ui.activities">
348
		<activity
349
			description="%activity.description"
350
			id="eu.etaxonomy.taxeditor.disable"
351
			name="%activity.name">
352
		</activity>
353
		<activityPatternBinding
354
			activityId="eu.etaxonomy.taxeditor.disable"
355
			pattern="org\.eclipse\.ui\.ide/org\.eclipse\.ui\.wizards\.new\.project">
356
		</activityPatternBinding>
357
		<activityPatternBinding
358
			activityId="eu.etaxonomy.taxeditor.disable"
359
			pattern="org\.eclipse\.ui\.ide/org\.eclipse\.ui\.wizards\.new\.file">
360
		</activityPatternBinding>
361
		<activityPatternBinding
362
			activityId="eu.etaxonomy.taxeditor.disable"
363
			pattern="org\.eclipse\.ui\.ide/org\.eclipse\.ui\.wizards\.new\.folder">
364
		</activityPatternBinding>
365
		<activityPatternBinding
366
			activityId="eu.etaxonomy.taxeditor.disable"
367
			pattern="org\.eclipse\.ui\.editors/org\.eclipse\.ui\.editors\.wizards\.UntitledTextFileWizard">
368
		</activityPatternBinding>
369
  <activityPatternBinding
370
        activityId="eu.etaxonomy.taxeditor.disable"
371
        pattern="org\.eclipse\..*externaltools.*">
372
  </activityPatternBinding>
373
  <activityPatternBinding
374
        activityId="eu.etaxonomy.taxeditor.disable"
375
        pattern="org\.eclipse\.debug.*">
376
  </activityPatternBinding>
377
  <activityPatternBinding
378
        activityId="eu.etaxonomy.taxeditor.disable"
379
        pattern="org\.eclipse\.team.*">
380
  </activityPatternBinding>
381
  <activityPatternBinding
382
        activityId="eu.etaxonomy.taxeditor.disable"
383
        pattern="org\.eclipse\.ant.*">
384
  </activityPatternBinding>
385
  <activityPatternBinding
386
        activityId="eu.etaxonomy.taxeditor.disable"
387
        pattern="org\.eclipse\.pde.*">
388
  </activityPatternBinding>
389
  <activityPatternBinding
390
        activityId="eu.etaxonomy.taxeditor.disable"
391
        pattern="org\.eclipse\.jdt.*">
392
  </activityPatternBinding>
393
  <activityPatternBinding
394
        activityId="eu.etaxonomy.taxeditor.disable"
395
        pattern="org\.eclipse\.search.*">
396
  </activityPatternBinding>
397
	</extension>
398
 <extension
399
       id="eu_etaxonomy_taxeditor_product"
400
       point="org.eclipse.core.runtime.products">
401
    <product
402
          application="eu.etaxonomy.taxeditor.application.application"
403
          name="%product.name.0">
404
       <property
405
             name="appName"
406
             value="EDIT Taxonomic Editor">
407
       </property>
408
       <property
409
             name="aboutImage"
410
             value="icons/256color_48x48.gif">
411
       </property>
412
       <property
413
             name="aboutText"
414
             value="%productBlurb">
415
       </property>
416
       <property
417
             name="windowImages"
418
             value="icons/256color_16x16.gif,icons/256color_32x32.gif,icons/256color_48x48.gif">
419
       </property>
420
       <property
421
             name="startupForegroundColor"
422
             value="000000">
423
       </property>
424
       <property
425
             name="startupMessageRect"
426
             value="7,432,360,20">
427
       </property>
428
       <property
429
             name="startupProgressRect"
430
             value="5,447,366,15">
431
       </property>
432
       <property
433
             name="preferenceCustomization"
434
             value="plugin_customization.ini">
435
       </property>
436
    </product>
437
 </extension>
438

    
439
</plugin>
(5-5/8)