Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48.gifbin1736 -> 2245 bytes
-rw-r--r--org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48_hov.gifbin1629 -> 2245 bytes
-rw-r--r--org.eclipse.mylyn.help.ui/intro/overviewExtensionContent.xml4
-rw-r--r--org.eclipse.mylyn.help.ui/intro/tutorialsExtensionContent.xml8
-rw-r--r--org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java2
5 files changed, 8 insertions, 6 deletions
diff --git a/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48.gif b/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48.gif
index 8c7bda4b1..d6c5de214 100644
--- a/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48.gif
+++ b/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48.gif
Binary files differ
diff --git a/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48_hov.gif b/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48_hov.gif
index b28265db8..d6c5de214 100644
--- a/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48_hov.gif
+++ b/org.eclipse.mylyn.help.ui/images/topiclabel/tu_query48_hov.gif
Binary files differ
diff --git a/org.eclipse.mylyn.help.ui/intro/overviewExtensionContent.xml b/org.eclipse.mylyn.help.ui/intro/overviewExtensionContent.xml
index cc564a3bf..7d5510bfd 100644
--- a/org.eclipse.mylyn.help.ui/intro/overviewExtensionContent.xml
+++ b/org.eclipse.mylyn.help.ui/intro/overviewExtensionContent.xml
@@ -10,10 +10,10 @@
<text>Learn more about Mylyn's Task-Focused UI</text>
</link>
-->
- <link label="Mylyn UI Legend"
+ <link label="Mylyn Overview"
url="http://org.eclipse.ui.intro/runAction?pluginId=org.eclipse.mylyn.help.ui&amp;class=org.eclipse.mylyn.internal.help.ui.actions.ShowMylynLegendAction&amp;id=org.eclipse.mylyn.doc.legend.show.action"
id="mylyn-overview" style-id="content-link">
- <text>Open the UI Legend, also available in the Help menu</text>
+ <text>See a summary of Mylyn's Task-Focused UI and open the Task List</text>
</link>
</group>
</extensionContent>
diff --git a/org.eclipse.mylyn.help.ui/intro/tutorialsExtensionContent.xml b/org.eclipse.mylyn.help.ui/intro/tutorialsExtensionContent.xml
index c6c1f5012..6f0b0a3c0 100644
--- a/org.eclipse.mylyn.help.ui/intro/tutorialsExtensionContent.xml
+++ b/org.eclipse.mylyn.help.ui/intro/tutorialsExtensionContent.xml
@@ -5,13 +5,13 @@
<group label="Mylyn" id="mylyn" style-id="content-group">
<link
url="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.mylyn.cheatsheet.query"
- label="Create a query" id="mylyn-query" style-id="content-link">
- <text>Learn how to create a query from bugs.eclipse.org.</text>
+ label="Use the Task List" id="mylyn-query" style-id="content-link">
+ <text>Learn how to create tasks and task repository queries.</text>
</link>
<link
url="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.mylyn.cheatsheet.taskfocus"
- label="Use Task-Focused UI" id="mylyn-task" style-id="content-link">
- <text>Learn how to use Task-Focused UI.</text>
+ label="Use the Task-Focused UI" id="mylyn-task" style-id="content-link">
+ <text>Learn how to reduce information overload and multitask with ease.</text>
</link>
</group>
</extensionContent>
diff --git a/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java b/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java
index 3ecaa42eb..7866c0cd8 100644
--- a/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java
+++ b/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java
@@ -11,6 +11,7 @@ package org.eclipse.mylyn.internal.help.ui.actions;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.mylyn.internal.help.ui.dialogs.UiLegendDialog;
+import org.eclipse.mylyn.internal.tasks.ui.views.TaskListView;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IViewActionDelegate;
import org.eclipse.ui.IViewPart;
@@ -32,6 +33,7 @@ public class ShowMylynLegendAction implements IWorkbenchWindowActionDelegate, IV
}
public void run(IAction action) {
+ TaskListView.openInActivePerspective();
Shell parentShell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
UiLegendDialog uiLegendDialog = new UiLegendDialog(parentShell);
uiLegendDialog.open();

Back to the top