Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5dda03eff3809e9e8291bdb3585923fde638af18 (plain) (blame)
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?><!--
    Copyright (c) 2009 Red Hat, Inc.
    All rights reserved. This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v1.0
    which accompanies this distribution, and is available at
    http://www.eclipse.org/legal/epl-v10.html
   
    Contributors:
        Red Hat - initial API and implementation
 -->

<plugin>
   <extension
         point="org.eclipse.ui.importWizards">
      <category
            id="org.eclipse.linuxtools.rpm.ui"
            name="%category.name.0">
      </category>
      <wizard
            name="%wizard.name.1"
            icon="icons/rpm.gif"
            class="org.eclipse.linuxtools.internal.rpm.ui.SRPMImportWizard" 
            category="org.eclipse.linuxtools.rpm.ui"
            id="org.eclipse.linuxtools.rpm.ui.SRPMImportWizard">
         <description>
            %wizard.description.1
         </description>
         <selection
               class="org.eclipse.core.resources.IResource">
         </selection>
      </wizard>
   </extension>
	<extension
         point="org.eclipse.ui.propertyPages">
      <page
            class="org.eclipse.linuxtools.internal.rpm.ui.propertypage.SpecFileHeaderPage"
            id="rg.eclipse.linuxtools.rpm.ui.propertypage.SpecFileHeaderPage"
            name="%page.name.0"
            nameFilter="*.rpm">
      </page>
      <page
            class="org.eclipse.linuxtools.internal.rpm.ui.propertypage.ChangelogPage"
            id="org.eclipse.linuxtools.rpm.ui.propertypage.ChangelogPage"
            name="%page.name.1"
            nameFilter="*.rpm">
      </page>
      <page
            class="org.eclipse.linuxtools.internal.rpm.ui.propertypage.TargetPage"
            id="org.eclipse.linuxtools.rpm.ui.propertypage.TargetPage"
            name="%page.name.2"
            nameFilter="*.rpm">
      </page>
      <page
            class="org.eclipse.linuxtools.internal.rpm.ui.propertypage.InstallScriptsPage"
            id="org.eclipse.linuxtools.rpm.ui.propertypage.InstallScriptsPage"
            name="%page.name.3"
            nameFilter="*.rpm">
      </page>
      <page
            class="org.eclipse.linuxtools.internal.rpm.ui.propertypage.ProvidesPage"
            id="org.eclipse.linuxtools.rpm.ui.propertypage.ProvidesPage"
            name="%page.name.4"
            nameFilter="*.rpm">
      </page>
   </extension>
 <extension
       point="org.eclipse.ui.newWizards">
      <wizard
      		project="true"
            category="org.eclipse.linuxtools.rpm.ui.editor"
            class="org.eclipse.linuxtools.internal.rpm.ui.RPMNewProject"
            icon="icons/rpm.gif"
            id="org.eclipse.linuxtools.rpm.ui.RPMNewProject"
            name="%wizard.name.2">
      </wizard>
 </extension>
 <extension
       point="org.eclipse.ui.ide.projectNatureImages">
    <image
          icon="icons/rpm.gif"
          id="org.eclipse.linuxtools.rpm.ui.image"
          natureId="org.eclipse.linuxtools.rpm.core.rpmnature">
    </image>
 </extension>
  <extension
         point="org.eclipse.ui.console.consolePatternMatchListeners">
       <consolePatternMatchListener
            class="org.eclipse.linuxtools.internal.rpm.ui.ErrorLineMatcher"
            id="org.eclipse.linuxtools.rpm.ui.ErrorLineMatcher"
            regex=".*(error):\W(line)\W\d{1,}:.*">
         <enablement>
            <test property="org.eclipse.ui.console.consoleTypeTest" value="rpmbuild"/>
         </enablement>
      </consolePatternMatchListener>
   </extension>
  <extension
        id="org.eclipse.linuxtools.rpm.ui.popup"
        name="%extension.name"
        point="org.eclipse.ui.menus">
        <menuContribution
              locationURI="popup:org.eclipse.ui.popup.any?before=additions" >
              <menu
                    icon="icons/rpm.gif"
                    id="org.eclipse.linuxtools.rpm.ui.popup"
                    label="%menu.label">
                 <separator
                       name="org.eclipse.linuxtools.rpm.ui.buildsep"
                       visible="true">
                 </separator>
                 <separator
                       name="org.eclipse.linuxtools.rpm.ui.sourcesep"
                       visible="true">
                 </separator>
                 <separator
                       name="org.eclipse.linuxtools.rpm.ui.miscsep"
                       visible="true">
                 </separator>
              </menu>
        </menuContribution>
        <menuContribution
              locationURI="popup:org.eclipse.linuxtools.rpm.ui.popup?before=org.eclipse.linuxtools.rpm.ui.buildsep">
           <command
                 commandId="rpmEditor.build.command"
                 icon="icons/rpmBuildSRPM_16x16_toolbarIcon.PNG"
                 label="%command.name.0"
                 mnemonic="S"
                 tooltip="%command.name.0">
              <visibleWhen>
                 <iterate
                       ifEmpty="false"
                       operator="or">
                    <or>
                       <adapt
                             type="org.eclipse.core.resources.IResource">
                          <test
                                property="org.eclipse.core.resources.name"
                                value="*.spec">
                          </test>
                       </adapt>
                       <with
                             variable="activeEditorId">
                          <equals
                                value="org.eclipse.linuxtools.rpm.ui.editor.SpecfileEditor">
                          </equals>
                       </with>
                    </or>
                 </iterate>
              </visibleWhen>
              <parameter
                    name="buildType"
                    value="SOURCE">
              </parameter>
           </command>
           <command
                 commandId="rpmEditor.build.command"
                 icon="icons/rpmBuildRPMS_16x16_toolbarIcon.PNG"
                 label="%command.name.1"
                 mnemonic="R"
                 tooltip="%command.name.1">
              <visibleWhen>
                 <iterate
                       ifEmpty="false"
                       operator="or">
                    <or>
                       <adapt
                             type="org.eclipse.core.resources.IResource">
                          <test
                                property="org.eclipse.core.resources.name"
                                value="*.spec">
                          </test>
                       </adapt>
                       <with
                             variable="activeEditorId">
                          <equals
                                value="org.eclipse.linuxtools.rpm.ui.editor.SpecfileEditor">
                          </equals>
                       </with>
                    </or>
                 </iterate>
              </visibleWhen>
              <parameter
                    name="buildType"
                    value="BINARY">
              </parameter>
           </command>
           <command
                 commandId="rpmEditor.build.command"
                 icon="icons/rpmBuildAll_16x16_toolbarIcon.PNG"
                 label="%command.name.2"
                 mnemonic="A"
                 tooltip="%command.name.2">
              <visibleWhen>
                 <iterate
                       ifEmpty="false"
                       operator="or">
                    <or>
                       <adapt
                             type="org.eclipse.core.resources.IResource">
                          <test
                                property="org.eclipse.core.resources.name"
                                value="*.spec">
                          </test>
                       </adapt>
                       <with
                             variable="activeEditorId">
                          <equals
                                value="org.eclipse.linuxtools.rpm.ui.editor.SpecfileEditor">
                          </equals>
                       </with>
                    </or>
                 </iterate>
              </visibleWhen>
              <parameter
                    name="buildType"
                    value="ALL">
              </parameter>
           </command>
        </menuContribution>
  </extension>
  <extension
        point="org.eclipse.ui.commands">
     <command
           id="rpmEditor.build.command"
           name="%command.name.3">
        <commandParameter
              id="buildType"
              name="buildType"
              optional="false">
        </commandParameter>
     </command>
  </extension>
  <extension
        point="org.eclipse.ui.handlers">
     <handler
           class="org.eclipse.linuxtools.internal.rpm.ui.handlers.SpecfileEditorRPMBuildHandler"
           commandId="rpmEditor.build.command">
     </handler>
  </extension>
  <extension
        name="RPM Toolbar"
        point="org.eclipse.ui.menus">
     <menuContribution
           allPopups="false"
           locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
        <toolbar
              id="org.eclipse.linuxtools.rpm.ui.rpmBuildMenu"
              label="%toolbar.name">
           <command
                 commandId="rpmEditor.build.command"
                 icon="icons/rpmBuildAll_16x16_toolbarIcon.PNG"
                 label="%toolbar.name"
                 style="pulldown">
              <visibleWhen>
                 <iterate
                       ifEmpty="false"
                       operator="or">
                    <or>
                       <adapt
                             type="org.eclipse.core.resources.IResource">
                          <test
                                property="org.eclipse.core.resources.name"
                                value="*.spec">
                          </test>
                       </adapt>
                       <with
                             variable="activeEditorId">
                          <equals
                                value="org.eclipse.linuxtools.rpm.ui.editor.SpecfileEditor">
                          </equals>
                       </with>
                    </or>
                 </iterate>
              </visibleWhen>
              <parameter
                    name="buildType"
                    value="ALL">
              </parameter>
           </command>
        </toolbar>
     </menuContribution>
     <menuContribution
           locationURI="menu:rpmEditor.build.command">
        <command
              commandId="rpmEditor.build.command"
              icon="icons/rpmBuildSRPM_16x16_toolbarIcon.PNG"
              label="%command.name.0"
              mnemonic="S"
              tooltip="%command.name.0">
           <parameter
                 name="buildType"
                 value="SOURCE">
           </parameter>
        </command>
        <command
              commandId="rpmEditor.build.command"
              icon="icons/rpmBuildRPMS_16x16_toolbarIcon.PNG"
              label="%command.name.1"
              mnemonic="R"
              tooltip="%command.name.1">
           <parameter
                 name="buildType"
                 value="BINARY">
           </parameter>
        </command>
        <command
              commandId="rpmEditor.build.command"
              icon="icons/rpmBuildAll_16x16_toolbarIcon.PNG"
              label="%command.name.2"
              mnemonic="A"
              tooltip="%command.name.2">
           <parameter
                 name="buildType"
                 value="ALL">
           </parameter>
        </command>
     </menuContribution>
  </extension>
</plugin>

Back to the top