Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-07-15 19:09:38 +0000
committermkersten2005-07-15 19:09:38 +0000
commitac3c0e6230ab1a3fe148164d369dfb73e09227c6 (patch)
treeea3737274456748934a23682c013f483d75bec53
parent791b8f13636f2d3dde5dcadc0a673213d1ef5521 (diff)
downloadorg.eclipse.mylyn.tasks-ac3c0e6230ab1a3fe148164d369dfb73e09227c6.tar.gz
org.eclipse.mylyn.tasks-ac3c0e6230ab1a3fe148164d369dfb73e09227c6.tar.xz
org.eclipse.mylyn.tasks-ac3c0e6230ab1a3fe148164d369dfb73e09227c6.zip
Progress on Bug #103418: improve active search UI
-rw-r--r--org.eclipse.mylyn.help.ui/user/limitations.html3
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java7
-rw-r--r--org.eclipse.mylyn.tasks.ui/plugin.xml2
3 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.help.ui/user/limitations.html b/org.eclipse.mylyn.help.ui/user/limitations.html
index bd80d164e..83293d3a5 100644
--- a/org.eclipse.mylyn.help.ui/user/limitations.html
+++ b/org.eclipse.mylyn.help.ui/user/limitations.html
@@ -18,6 +18,9 @@
<li>Java 5 VM or later</li>
</ul>
<p><b>Java editing</b></p>
+ <p>The Package Explorer can get into a mode where it refresh too often (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=103585">Bug
+ 103585</a>).&nbsp; The work-around is to Toggle the &quot;Apply Mylar&quot; glasses in
+ the toolbar.</p>
<p>Folding must be toggled off in order to view all the matches for &quot;mark
occurrences&quot;.&nbsp; This is not a Mylar-specific limitation but is more
noticeable when Automatic Folding is enabled.</p>
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java
index 12b76f43f..1ff8b2e3e 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/search/BugzillaReferencesProvider.java
@@ -27,6 +27,7 @@ import org.eclipse.jdt.core.JavaCore;
import org.eclipse.mylar.bugzilla.BugzillaStructureBridge;
import org.eclipse.mylar.bugzilla.MylarBugzillaPlugin;
import org.eclipse.mylar.bugzilla.ui.tasks.BugzillaReportNode;
+import org.eclipse.mylar.core.IDegreeOfSeparation;
import org.eclipse.mylar.core.IMylarContextNode;
import org.eclipse.mylar.core.search.IActiveSearchListener;
import org.eclipse.mylar.core.search.IMylarSearchOperation;
@@ -140,4 +141,10 @@ public class BugzillaReferencesProvider extends RelationshipProvider {
return reports.keySet();
}
+ @Override
+ public List<IDegreeOfSeparation> getDegreesOfSeparation() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
}
diff --git a/org.eclipse.mylyn.tasks.ui/plugin.xml b/org.eclipse.mylyn.tasks.ui/plugin.xml
index e19670122..9b0e1758c 100644
--- a/org.eclipse.mylyn.tasks.ui/plugin.xml
+++ b/org.eclipse.mylyn.tasks.ui/plugin.xml
@@ -2,7 +2,7 @@
<?eclipse version="3.0"?>
<plugin>
- <extension point="org.eclipse.ui.perspectiveExtensions">
+ <extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="org.eclipse.jdt.ui.JavaPerspective">
<viewShortcut id="org.eclipse.mylar.tasks.ui.views.TaskListView"/>
<view id="org.eclipse.mylar.tasks.ui.views.TaskListView"

Back to the top