Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2015-10-26 03:10:14 +0000
committerSergey Prigogin2015-10-30 23:10:12 +0000
commit3627cc29207ae41b5fc1331e64a47f0dc5a39ed6 (patch)
treec1677561ec3fc9f57b20e1ef555199b672f9aa07
parentaa496b2efe099543d1abaf32be675fc8ba9d806e (diff)
downloadeclipse.platform.team-3627cc29207ae41b5fc1331e64a47f0dc5a39ed6.tar.gz
eclipse.platform.team-3627cc29207ae41b5fc1331e64a47f0dc5a39ed6.tar.xz
eclipse.platform.team-3627cc29207ae41b5fc1331e64a47f0dc5a39ed6.zip
Bug 480557 - Command contributions to the Team menu don't workI20151117-0800I20151110-0800I20151103-0800
-rw-r--r--bundles/org.eclipse.team.ui/plugin.xml72
1 files changed, 71 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/plugin.xml b/bundles/org.eclipse.team.ui/plugin.xml
index c281c51cf..6ccfea999 100644
--- a/bundles/org.eclipse.team.ui/plugin.xml
+++ b/bundles/org.eclipse.team.ui/plugin.xml
@@ -13,7 +13,7 @@
<plugin>
- <extension-point id="configurationWizards" name="%configurationWizards" schema="schema/configurationWizards.exsd"/>
+ <extension-point id="configurationWizards" name="%configurationWizards" schema="schema/configurationWizards.exsd"/>
<extension-point id="synchronizeParticipants" name="%synchronizeParticipants" schema="schema/synchronizeParticipants.exsd"/>
<extension-point id="synchronizeWizards" name="%synchronizeWizards" schema="schema/synchronizeWizards.exsd"/>
<extension-point id="teamContentProviders" name="%TeamContentProvider" schema="schema/teamContentProviders.exsd"/>
@@ -209,6 +209,76 @@
</action>
</objectContribution>
</extension>
+<!-- ****************** Menus *************** -->
+ <extension point="org.eclipse.ui.menus">
+ <menuContribution
+ locationURI="popup:org.eclipse.ui.popup.any?after=additions">
+ <menu
+ id="team.main"
+ label="%TeamGroupMenu.label">
+ <separator
+ name="group1"
+ visible="true">
+ </separator>
+ <separator
+ name="group2"
+ visible="true">
+ </separator>
+ <separator
+ name="group3"
+ visible="true">
+ </separator>
+ <separator
+ name="group4"
+ visible="true">
+ </separator>
+ <separator
+ name="group5"
+ visible="true">
+ </separator>
+ <separator
+ name="group6"
+ visible="true">
+ </separator>
+ <separator
+ name="applyPatchGroup"
+ visible="false">
+ </separator>
+ <separator
+ name="group7"
+ visible="true">
+ </separator>
+ <separator
+ name="group8"
+ visible="true">
+ </separator>
+ <separator
+ name="group9"
+ visible="true">
+ </separator>
+ <separator
+ name="showAnnotationsGroup"
+ visible="false">
+ </separator>
+ <separator
+ name="group10"
+ visible="true">
+ </separator>
+ <separator
+ name="targetGroup"
+ visible="true">
+ </separator>
+ <separator
+ name="projectGroup"
+ visible="true">
+ </separator>
+ <separator
+ name="group11"
+ visible="true">
+ </separator>
+ </menu>
+ </menuContribution>
+ </extension>
<!-- ************** Views ********************** -->
<extension
point="org.eclipse.ui.views">

Back to the top