Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2009-03-04 21:33:17 +0000
committermkersten2009-03-04 21:33:17 +0000
commit831c6dfca3809d5b0db6810d7771e0861718963b (patch)
tree8377811616759f49cfc027c8d160c9af1115344e /org.eclipse.mylyn.tasks.ui/plugin.xml
parentb27fd76e8ceed4682cbe005ee23d29af836aa8fb (diff)
downloadorg.eclipse.mylyn.tasks-831c6dfca3809d5b0db6810d7771e0861718963b.tar.gz
org.eclipse.mylyn.tasks-831c6dfca3809d5b0db6810d7771e0861718963b.tar.xz
org.eclipse.mylyn.tasks-831c6dfca3809d5b0db6810d7771e0861718963b.zip
RESOLVED - bug 267112: need a way of viewing unformatted task editor comment text when WikiText is enabled
https://bugs.eclipse.org/bugs/show_bug.cgi?id=267112
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/plugin.xml')
-rw-r--r--org.eclipse.mylyn.tasks.ui/plugin.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/plugin.xml b/org.eclipse.mylyn.tasks.ui/plugin.xml
index 0ee2398e2..f12d10f31 100644
--- a/org.eclipse.mylyn.tasks.ui/plugin.xml
+++ b/org.eclipse.mylyn.tasks.ui/plugin.xml
@@ -324,6 +324,7 @@
</extension>
<extension point="org.eclipse.ui.popupMenus">
+
<viewerContribution
id="org.eclipse.mylyn.tasklist.ui.viewerContribution"
targetID="org.eclipse.mylyn.tasks.ui.views.tasks">
@@ -1541,6 +1542,19 @@
</extension>
<extension
point="org.eclipse.ui.menus">
+ <menuContribution
+ locationURI="popup:org.eclipse.mylyn.tasks.ui.editors.task?after=additions">
+ <command
+ commandId="org.eclipse.mylyn.tasks.ui.viewSource.command"
+ id="org.eclipse.mylyn.sandbox.ui.viewSource"
+ label="View Unformatted Text"
+ style="toggle">
+ <visibleWhen
+ checkEnabled="true">
+ </visibleWhen>
+ </command>
+ </menuContribution>
+
<menuContribution
locationURI="popup:org.eclipse.mylyn.tasks.ui.views.tasks?after=properties">
<command
@@ -1791,7 +1805,7 @@
<command
categoryId="org.eclipse.mylyn.tasks.ui.commands"
defaultHandler="org.eclipse.mylyn.internal.tasks.ui.commands.ViewSourceHandler"
- id="org.eclipse.mylyn.sandbox.ui.viewSource.command"
+ id="org.eclipse.mylyn.tasks.ui.viewSource.command"
name="%commands.ViewSourceHandler.name">
</command>
</extension>

Back to the top