-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
164 lines (162 loc) · 6.19 KB
/
plugin.xml
File metadata and controls
164 lines (162 loc) · 6.19 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension point="org.eclipse.ui.editors">
<editor name="%editor.name.0"
extensions="rb"
icon="icons/rubby.gif"
default="true"
class="pl.ivmx.mappum.gui.MappumEditor"
contributorClass="pl.ivmx.mappum.gui.MappumEditorActionBarContributor"
id="pl.ivmx.mappum.gui.editor">
</editor>
</extension>
<extension
point="org.eclipse.ui.importWizards">
<category
id="pl.ivmx.mappum.gui.wizzards.mappumImportCategory"
name="%category.name.1">
</category>
<wizard
category="pl.ivmx.mappum.gui.wizzards.mappumImportCategory"
class="pl.ivmx.mappum.gui.wizzards.FileImportWizard"
icon="icons/rubby.gif"
id="pl.ivmx.mappum.gui.wizzards.FileImportWizard"
name="%wizard.name.1">
<description>
</description>
</wizard>
<wizard
category="pl.ivmx.mappum.gui.wizzards.mappumImportCategory"
class="pl.ivmx.mappum.gui.wizzards.XMLSchemaImportWizard"
icon="icons/rubby.gif"
id="pl.ivmx.mappum.gui.wizzards.XMLSchemaImportWizard"
name="Mappum XML Schema Import Wizzard">
<description>
Import a file from the local file system into the workspace.
</description>
</wizard>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="pl.ivmx.mappum.gui.wizzards.mappumNewCategory"
name="Mappum">
</category>
<wizard
category="pl.ivmx.mappum.gui.wizzards.mappumNewCategory"
class="pl.ivmx.mappum.gui.wizzards.NewProjectWizard"
finalPerspective="pl.ivmx.mappum.gui.perspectives.MappumPerspective"
icon="icons/rubby.gif"
id="pl.ivmx.mappum.gui.wizzards.NewProjectWizard"
name="Mappum New Project"
project="true">
</wizard>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:org.eclipse.jdt.ui.PackageExplorer">
<command
commandId="pl.ivmx.mappum.gui.commands.id.generateModelFromXSD"
icon="icons/rubby.gif"
label="Generate mapping"
style="push">
<visibleWhen>
<with
variable="activeMenuSelection">
<iterate>
<adapt
type="org.eclipse.core.resources.IProject">
</adapt>
</iterate>
</with>
</visibleWhen>
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="pl.ivmx.mappum.gui.handlers.GenerateModelFromXsdHandler"
commandId="pl.ivmx.mappum.gui.commands.id.generateModelFromXSD">
</handler>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="pl.ivmx.mappum.gui.commands.id.generateModelFromXSD"
name="Generate model">
</command>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="pl.ivmx.mappum.gui.MappumPerspective"
icon="icons/rubby.gif"
id="pl.ivmx.mappum.gui.perspectives.MappumPerspective"
name="Mappum">
</perspective>
</extension>
<extension
id="mappumDotfiles"
name="dotfiles"
point="org.eclipse.ui.ide.resourceFilters">
<filter
pattern=".*"
selected="true">
</filter>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="pl.ivmx.mappum.gui.launch.MapServerLauncher"
delegateDescription="Starts mappum serwer that will be avilable on 9292 port on localhost"
delegateName="Mappum launcher"
id="mappum-gui.launchConfigurationType1"
modes="run"
name="mapserver"
public="true">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="pl.ivmx.mappum.gui.launch.MapserverLaunchConfigurationTabGroup"
id="mappum-gui.launchConfigurationTabGroup1"
type="mappum-gui.launchConfigurationType1">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabs">
<tab
class="pl.ivmx.mappum.gui.launch.MapserverLaunchConfigurationTab"
group="mappum-gui.launchConfigurationTabGroup1"
id="mappum-gui.tab1"
name="mappum-gui.tab1">
</tab>
</extension>
<extension
point="org.eclipse.debug.ui.launchGroups">
<launchGroup
bannerImage="mappum-gui.launchGroup1"
category="org.eclipse.ui.externaltools"
id="mappum-gui.launchGroup1"
image="mappum-gui.launchGroup1"
label="label"
mode="mappum-gui.launchGroup1"
title="Mappum">
</launchGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
category="org.eclipse.ui.externaltools"
class="launchshortcut.LaunchShortcut1"
description="Mapserver"
id="mappum-gui.shortcut1"
label="label"
modes="mappum-gui.shortcut1">
</shortcut>
</extension>
</plugin>