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
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
Copyright (c) 2013 Red Hat, Inc. and others.
All rights reserved. This program andthe 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:
Neil Guzman - initial API and implementation
-->
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<category
id="org.eclipse.linuxtools.rpm.createrepo"
name="%category.name">
</category>
<wizard
category="org.eclipse.linuxtools.rpm.createrepo"
class="org.eclipse.linuxtools.internal.rpm.createrepo.wizard.CreaterepoWizard"
icon="icons/newgroup_wiz.gif"
id="org.eclipse.linuxtools.internal.rpm.createrepo.wizard.CreaterepoWizard"
name="%wizard.name"
project="true">
</wizard>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.eclipse.linuxtools.internal.rpm.createrepo.form.RepoFormEditor"
default="true"
icon="icons/repository_rep.gif"
id="org.eclipse.linuxtools.rpm.createrepo.repoEditor"
name="%editor.name">
<contentTypeBinding
contentTypeId="org.eclipse.linuxtools.rpm.createrepo.repoContent">
</contentTypeBinding>
</editor>
</extension>
<extension
point="org.eclipse.core.contenttype.contentTypes">
<content-type
base-type="org.eclipse.core.runtime.text"
file-extensions="repo"
id="org.eclipse.linuxtools.rpm.createrepo.repoContent"
name="%contentType.name"
priority="high">
</content-type>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="toolbar:formsToolbar">
<command
commandId="org.eclipse.linuxtools.rpm.createrepo.executeCommand"
icon="icons/run_exc.gif"
style="push"
tooltip="%execute.command">
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="org.eclipse.linuxtools.rpm.createrepo.executeCommand"
name="%execute.command">
</command>
</extension>
</plugin>
|