Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2012-08-28 12:12:16 +0000
committerDani Megert2012-08-28 12:12:16 +0000
commitaea59eb88747b76eb5105090d99025d582e3d80e (patch)
tree4812fc93e6b825b35d463992b529a47894caa4b8
parent0bce912c9fcade17a9134e6e413f9955ee598ad8 (diff)
downloadeclipse.platform.team-aea59eb88747b76eb5105090d99025d582e3d80e.tar.gz
eclipse.platform.team-aea59eb88747b76eb5105090d99025d582e3d80e.tar.xz
eclipse.platform.team-aea59eb88747b76eb5105090d99025d582e3d80e.zip
Added "reuse" keyword for Team preference page
-rw-r--r--bundles/org.eclipse.team.ui/plugin.properties8
-rw-r--r--bundles/org.eclipse.team.ui/plugin.xml14
2 files changed, 16 insertions, 6 deletions
diff --git a/bundles/org.eclipse.team.ui/plugin.properties b/bundles/org.eclipse.team.ui/plugin.properties
index 7c206fd62..ca2303c73 100644
--- a/bundles/org.eclipse.team.ui/plugin.properties
+++ b/bundles/org.eclipse.team.ui/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2011 IBM Corporation and others.
+# Copyright (c) 2000, 2012 IBM Corporation and others.
# 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
@@ -18,8 +18,10 @@ synchronizeWizards=Synchronize Wizards
scmUrlImportPages=SCM URLs Import Pages
logicalViews=Logical Synchronize Views
-PreferenceKeywords.Team=team apply patch synchronize compare
-PreferenceKeywords.FileContent=team file content type
+PreferenceKeywords.Team=team apply patch synchronize compare reuse
+PreferenceKeywords.IgnoredResources=team
+PreferenceKeywords.Models=team
+PreferenceKeywords.FileContent=team type
PreferenceKeywords.ProjectSet=repository
TeamPreferencePage.name=Team
TextPreferencePage.name=File Content
diff --git a/bundles/org.eclipse.team.ui/plugin.xml b/bundles/org.eclipse.team.ui/plugin.xml
index f305eb65f..1329369c4 100644
--- a/bundles/org.eclipse.team.ui/plugin.xml
+++ b/bundles/org.eclipse.team.ui/plugin.xml
@@ -27,6 +27,12 @@
label="%PreferenceKeywords.Team"
id="org.eclipse.team.ui.team"/>
<keyword
+ label="%PreferenceKeywords.IgnoredResources"
+ id="org.eclipse.team.ui.team.ignoredResources"/>
+ <keyword
+ label="%PreferenceKeywords.Models"
+ id="org.eclipse.team.ui.team.models"/>
+ <keyword
label="%PreferenceKeywords.FileContent"
id="org.eclipse.team.ui.team.fileContent"/>
<keyword
@@ -54,13 +60,15 @@
category="org.eclipse.team.ui.TeamPreferences"
class="org.eclipse.team.internal.ui.preferences.IgnorePreferencePage"
id="org.eclipse.team.ui.IgnorePreferences">
- <keywordReference id="org.eclipse.team.ui.team"/>
+ <keywordReference id="org.eclipse.team.ui.team.ignoredResources"/>
</page>
<page
+ name="%EnabledModels"
category="org.eclipse.team.ui.TeamPreferences"
class="org.eclipse.team.internal.ui.mapping.ModelEnablementPreferencePage"
- id="org.eclipse.team.ui.enabledModels"
- name="%EnabledModels"/>
+ id="org.eclipse.team.ui.enabledModels">
+ <keywordReference id="org.eclipse.team.ui.team.models"/>
+ </page>
</extension>
<!-- ****************** POPUP ACTIONS *************** -->
<extension

Back to the top