Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2010-11-30 00:27:37 +0000
committerJeff Johnston2010-11-30 00:27:37 +0000
commit5c6aa9b97f605a16800bd4286e2a9ed20c23e814 (patch)
tree0ceca311bb5b6d807ee1732915886c90b43c5d7d /changelog/org.eclipse.linuxtools.changelog.core
parent9dfc8db50fc02422a7d6ac2cdbd692153b5fb7c8 (diff)
downloadorg.eclipse.linuxtools-5c6aa9b97f605a16800bd4286e2a9ed20c23e814.tar.gz
org.eclipse.linuxtools-5c6aa9b97f605a16800bd4286e2a9ed20c23e814.tar.xz
org.eclipse.linuxtools-5c6aa9b97f605a16800bd4286e2a9ed20c23e814.zip
2010-11-29 Jeff Johnston <jjohnstn@redhat.com>
Bug #331243 * plugin.xml: Add enablement options for Prepare ChangeLog under Project menu so that project must have been checked out of CVS or SVN.
Diffstat (limited to 'changelog/org.eclipse.linuxtools.changelog.core')
-rw-r--r--changelog/org.eclipse.linuxtools.changelog.core/ChangeLog6
-rw-r--r--changelog/org.eclipse.linuxtools.changelog.core/plugin.xml15
2 files changed, 21 insertions, 0 deletions
diff --git a/changelog/org.eclipse.linuxtools.changelog.core/ChangeLog b/changelog/org.eclipse.linuxtools.changelog.core/ChangeLog
index 695280f153..0b7dc013e8 100644
--- a/changelog/org.eclipse.linuxtools.changelog.core/ChangeLog
+++ b/changelog/org.eclipse.linuxtools.changelog.core/ChangeLog
@@ -1,3 +1,9 @@
+2010-11-29 Jeff Johnston <jjohnstn@redhat.com>
+
+ Bug #331243
+ * plugin.xml: Add enablement options for Prepare ChangeLog under Project menu so that
+ project must have been checked out of CVS or SVN.
+
2010-11-26 Jeff Johnston <jjohnstn@redhat.com>
Bug #331244
diff --git a/changelog/org.eclipse.linuxtools.changelog.core/plugin.xml b/changelog/org.eclipse.linuxtools.changelog.core/plugin.xml
index f9bbb1e55a..a40f3dbaa4 100644
--- a/changelog/org.eclipse.linuxtools.changelog.core/plugin.xml
+++ b/changelog/org.eclipse.linuxtools.changelog.core/plugin.xml
@@ -75,11 +75,15 @@
menubarPath="project/"
tooltip="%prepChangeLog.tooltip">
<enablement>
+ <and>
<or>
<objectClass
name="org.eclipse.core.resources.IResource">
</objectClass>
<objectClass
+ name="org.eclipse.jdt.core.IJavaElement">
+ </objectClass>
+ <objectClass
name="org.eclipse.team.ui.synchronize.ISynchronizeModelElement">
</objectClass>
<objectState
@@ -87,6 +91,17 @@
value="org.eclipse.cdt.core.cnature">
</objectState>
</or>
+ <or>
+ <objectState
+ name="projectPersistentProperty"
+ value="org.eclipse.team.core.repository=org.eclipse.team.svn.core.svnnature">
+ </objectState>
+ <objectState
+ name="projectPersistentProperty"
+ value="org.eclipse.team.core.repository=org.eclipse.team.cvs.core.cvsnature">
+ </objectState>
+ </or>
+ </and>
</enablement>
</action>
<action

Back to the top