Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2003-01-13 21:27:17 +0000
committerMichael Valenta2003-01-13 21:27:17 +0000
commit6587f16dba53fea30a90117f953521fb73d6890c (patch)
treea487834f33e46484f1e1bc9930854743d0a5780f /bundles
parenta3d528f2529529d1d4ed7305bf17b434fdfc3f3c (diff)
downloadeclipse.platform.team-6587f16dba53fea30a90117f953521fb73d6890c.tar.gz
eclipse.platform.team-6587f16dba53fea30a90117f953521fb73d6890c.tar.xz
eclipse.platform.team-6587f16dba53fea30a90117f953521fb73d6890c.zip
29042: [Key Bindings] VCM actions need to cooperate with the new key bindings architecture.
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/plugin.properties4
-rw-r--r--bundles/org.eclipse.team.cvs.ui/plugin.xml22
2 files changed, 21 insertions, 5 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/plugin.properties b/bundles/org.eclipse.team.cvs.ui/plugin.properties
index 7527fee56..7f51a307e 100644
--- a/bundles/org.eclipse.team.cvs.ui/plugin.properties
+++ b/bundles/org.eclipse.team.cvs.ui/plugin.properties
@@ -146,14 +146,12 @@ UnmanageFolder.tooltip=Disconnect from the CVS repository.
CVSActionSet.description=Actions that apply when working with CVS repositories
CVSActionSet.newLabel=New CVS Repository Location
CVSActionSet.newTooltip=Create a new CVS Repository Location
-CVSActionSet.syncLabel=Synchronize all
+CVSActionSet.syncLabel=Synchronize all with CVS
CVSActionSet.syncTooltip=Synchronize all CVS projects with their repositories
RestoreFromRepositoryAction.label=&Restore from Repository...
RestoreFromRepositoryAction.tooltip=Restore resources that have been deleted from the remote folder.
-
-
ShowEditorsAction.label=Show Editors
ShowEditorsAction.tooltip=Perform a ''cvs editors'' on the selected file
diff --git a/bundles/org.eclipse.team.cvs.ui/plugin.xml b/bundles/org.eclipse.team.cvs.ui/plugin.xml
index 036f92744..8529154fa 100644
--- a/bundles/org.eclipse.team.cvs.ui/plugin.xml
+++ b/bundles/org.eclipse.team.cvs.ui/plugin.xml
@@ -94,6 +94,22 @@
id="org.eclipse.team.ccvs.ui.propertyPages.CVSRepositoryPropertiesPage">
</page>
</extension>
+
+<!-- ******************* Action Definitions ******************** -->
+ <extension
+ point="org.eclipse.ui.actionDefinitions">
+ <actionDefinition
+ name="%CVSActionSet.syncLabel"
+ description="%CVSActionSet.syncTooltip"
+ id="org.eclipse.team.cvs.ui.sync.all">
+ </actionDefinition>
+ <actionDefinition
+ name="%CVSActionSet.newLabel"
+ description="%CVSActionSet.newTooltip"
+ id="org.eclipse.team.cvs.ui.new.location">
+ </actionDefinition>
+ </extension>
+
<!-- ******************* Menus ******************** -->
<extension
point="org.eclipse.ui.popupMenus">
@@ -756,7 +772,8 @@
tooltip="%CVSActionSet.newTooltip"
icon="icons/full/wizards/newconnect_wiz.gif"
class="org.eclipse.team.internal.ccvs.ui.actions.NewRepositoryAction"
- id="org.eclipse.team.cvs.ui.actions.NewRepositoryAction">
+ id="org.eclipse.team.cvs.ui.actions.NewRepositoryAction"
+ definitionId="org.eclipse.team.cvs.ui.new.location">
</action>
<action
toolbarPath="Normal/CVS"
@@ -764,7 +781,8 @@
tooltip="%CVSActionSet.syncTooltip"
icon="icons/full/wizards/cvs_synch.gif"
class="org.eclipse.team.internal.ccvs.ui.actions.SyncAllAction"
- id="org.eclipse.team.cvs.ui.actions.SyncAllAction">
+ id="org.eclipse.team.cvs.ui.actions.SyncAllAction"
+ definitionId="org.eclipse.team.cvs.ui.sync.all">
</action>
</actionSet>
</extension>

Back to the top