issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
updated_files
stringlengths
29
34.1k
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
timestamp[us, tz=UTC]
report_datetime
timestamp[us, tz=UTC]
202,639
Bug 202639 [Import/Export] [Import/Export] Improve warning messages in WizardFileSystemResourceExportPage1
null
verified fixed
adfb893
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/DataTransferMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardFileSystemResourceExportPage1.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-02-01T17:46:55Z
2007-09-07T15:46:40Z
187,796
Bug 187796 [KeyBindings] IBindingService cannot return best active bindings for a ParameterizedCommand
IBindingService only supports getBestActiveBindingFor(final String commandId) ... there must be an equivalent method for ParameterizedCommands PW
verified fixed
82271bc
["bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/BindingManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/keys/IBindingService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/menus/CommandContributionItem.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/keys/BindingManagerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-02-01T16:59:36Z
2007-05-18T12:06:40Z
215,069
Bug 215069 [Viewers] Problems with FocusCellOwnerDrawHighlighter
I have been experimenting with using TreeViewerEditor and related facilities, such as FocusCellOwnerDrawHighlighter. Have noticed a few problems with the current implementation: 1. At least on Windows, the background color for the selection in the tree should alter depending on whether or not the overall tree widget has focus or not. FocusCellOwnerDrawHighlighter does not implement this feedback. 2. If you don't set SWT.FULL_SELECTION when creating the tree, the selection doesn't get painted on any column besides the first one. If this is expected behavior, this should at least be in javadoc. 3. Regardless of whether or not SWT.FULL_SELECTION is used, the selection extent in the first column is not restricted to the text (as it typical on Windows for trees). It goes all the way to the left margin of the tree widget and covers tree controls, icon and the checkbox. This doesn't look particularly good. Following native behavior here would be desirable. The FocusCellOwnerDrawHighlighter also needs javadoc since it's public API.
verified fixed
fb08aa8
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/FocusCellOwnerDrawHighlighter.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/SWTFocusCellManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewerRow.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerRow.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerCell.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerRow.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-02-01T15:18:01Z
2008-01-11T19:33:20Z
210,752
Bug 210752 [Viewers]Cannot use custom CellNavigationStrategy in TableViewerFocusCellManager
Build ID: I20070621-1340 Steps To Reproduce: We need to use custom CellNavigationStrategy, where the next selected cell is chosen with respect to model elements. But we have run into the problem that even if CellNavigationStrategy is public, so we can by all means customize it as we wish(by subclassing), we are not able to use this customized instance in TableViewerFocusCellManager because there is no way how to set it(it's private). So we propose that the TableViewerFocusCellManager will have the ability to use user defined instance of CellNavigationStrategy(maybe set in costructor). More information:
verified fixed
fc42381
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewerFocusCellManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerFocusCellManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-02-01T15:10:12Z
2007-11-23T12:13:20Z
217,200
Bug 217200 [Markers] MarkerPreferencePage not setting the dialog font
Window>Preferences>Markers Dialog font is not set for widgets within page.
verified fixed
71e0299
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/FiltersConfigurationDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerPreferencesDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-31T21:34:51Z
2008-01-31T00:40:00Z
215,734
Bug 215734 [Progress] Need way to listen to when DeferredTreeContentManager is finished
In PDE, we are trying to initialize the Plug-ins view using DeferredTreeContentManager. I am currently running into a few problems. The first is that since we have a count and I don't know when the content manager has removed the place holder, I have to hack up some code to analyze the last element in the tree to see if it is the place holder. If I could some how listen to the place holder's removal, I could them update the count when this even occurs. The second is that for a long list, the removal of the placeholder sets the visibility of the list to the bottom. In a perfect world, I would love to see a call to reset the scrollbar to the top like it would normally be initialized. But, if I could listen to the removal of the place holder, I could manually reset the scrollbar. I have thought of different ways to solve this problem. One way would be to allow users to add a job change listener which would be added to both jobs. The less invasive way would be to create a protected function called "getClearPlaceHolderJob(PendingUpdateAdapter)" or something like that. This would allow me to extend the DeferredTreeContentManager class and add my own IJobChangeListener to the removal job when it is created. If there is anything I can do to help, please let me know.
verified fixed
8f6d7b6
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/DeferredTreeContentManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-31T21:26:06Z
2008-01-18T01:33:20Z
216,811
Bug 216811 [Markers] ExtendedMarkersView#setFocus doesn't
The result is that focus is lost if you drag the view to another stack... The most common implementation seems to be 'viewer.getControl().setFocus()... To test: select an element in the Problems or Tasks view. Drag the view to a new location (could be in an existing stack or a new one) notice that while the view is the active view the arrow keys don't navigate...
verified fixed
702cb0e
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ExtendedMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-31T21:01:52Z
2008-01-28T19:53:20Z
217,096
Bug 217096 [Markers] NPE from new problems view on startup
I20080122-1600 Started eclipse and got the following error: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3716) at org.eclipse.swt.SWT.error(SWT.java:3634) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3735) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3372) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:564) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1251) Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.views.markers.ExtendedMarkersView.getCategoriesToExpand(ExtendedMarkersView.java:1506) at org.eclipse.ui.internal.views.markers.ExtendedMarkersView.access$4(ExtendedMarkersView.java:1497) at org.eclipse.ui.internal.views.markers.ExtendedMarkersView$11.runInUIThread(ExtendedMarkersView.java:1039) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:94) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130) ... 22 more Steps: no exact steps to reproduce, although the problems view was open when I started eclipse.
verified fixed
fb9dd60
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ExtendedMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-31T17:52:35Z
2008-01-30T13:33:20Z
217,217
Bug 217217 [KeyBindings] NPE in WidgetMethodHandler during shutdown
Build ID: I20071213-1700 Steps To Reproduce: 1. This happens in automated tests sometimes during shutdown. More information: Here is the trace, fix looks pretty simple, it's checking for focus when the display is gone. I will provide a patch. Thread [main] (Suspended (exception NullPointerException)) WidgetMethodHandler.getMethodToExecute() line: 193 WidgetMethodHandler.isEnabled() line: 184 HandlerProxy.isEnabled() line: 264 Command.isEnabled() line: 831 Command.setHandler(IHandler) line: 938 HandlerAuthority.updateCommand(String, IHandlerActivation) line: 535 HandlerAuthority.deactivateHandler(IHandlerActivation) line: 256 HandlerService.deactivateHandler(IHandlerActivation) line: 144 HandlerService.deactivateHandlers(Collection) line: 153 HandlerPersistence.clearActivations(IHandlerService) line: 101 HandlerPersistence.dispose() line: 107 HandlerService.dispose() line: 159 ServiceLocator.dispose() line: 133 Workbench.shutdown() line: 2722 Workbench.busyClose(boolean) line: 924 Workbench.access$15(Workbench, boolean) line: 841 Workbench$22.run() line: 1085 BusyIndicator.showWhile(Display, Runnable) line: 67 Workbench.close(int, boolean) line: 1083 Workbench.close() line: 1055 WorkbenchTestable$2.run() line: 121 RunnableLock.run() line: 35 UISynchronizer(Synchronizer).runAsyncMessages(boolean) line: 130 Display.runAsyncMessages(boolean) line: 3312 Display.readAndDispatch() line: 2985 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 2381 Workbench.runUI() line: 2345 Workbench.access$4(Workbench) line: 2211 Workbench$4.run() line: 473 Realm.runWithDefault(Realm, Runnable) line: 288 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 468 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 TestMainWindow.start(IApplicationContext) line: 464 UITestApplication.start(IApplicationContext) line: 52 EclipseAppHandle.run(Object) line: 193 EclipseAppLauncher.runApplication(Object) line: 106 EclipseAppLauncher.start(Object) line: 76 EclipseStarter.run(Object) line: 362 EclipseStarter.run(String[], Runnable) line: 175 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 585 Main.invokeFramework(String[], URL[]) line: 561 Main.basicRun(String[]) line: 501 Main.run(String[]) line: 1239 Main.main(String[]) line: 1215
verified fixed
79de464
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/WidgetMethodHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-31T15:23:49Z
2008-01-31T06:13:20Z
184,908
Bug 184908 [Wizards] [Forms] Widget disposed error in forms while closing Java project wizard
Build: I20070501-0010 After clicking around in the source tab on the second page of the new Java project wizard, I hit Esc to cancel and close the dialog. The following exception appeared in the log. I was unable to reproduce it... org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3542) at org.eclipse.swt.SWT.error(SWT.java:3465) at org.eclipse.swt.SWT.error(SWT.java:3436) at org.eclipse.swt.widgets.Widget.error(Widget.java:432) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:325) at org.eclipse.swt.widgets.Control.getParent(Control.java:1329) at org.eclipse.ui.internal.forms.widgets.FormUtil.getScrolledComposite(FormUtil.java:198) at org.eclipse.ui.internal.forms.widgets.FormUtil.setFocusScrollingEnabled(FormUtil.java:502) at org.eclipse.ui.forms.widgets.FormText.setFocus(FormText.java:1696) at org.eclipse.jface.wizard.WizardDialog.stopped(WizardDialog.java:1220) at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:941) at org.eclipse.jdt.internal.ui.wizards.JavaProjectWizardSecondPage.removeProject(JavaProjectWizardSecondPage.java:394) at org.eclipse.jdt.internal.ui.wizards.JavaProjectWizardSecondPage.performCancel(JavaProjectWizardSecondPage.java:435) at org.eclipse.jdt.internal.ui.wizards.JavaProjectWizard.performCancel(JavaProjectWizard.java:116) at org.eclipse.jface.wizard.WizardDialog.okToClose(WizardDialog.java:859) at org.eclipse.jface.wizard.WizardDialog.close(WizardDialog.java:426) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:736) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:682) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:91) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:962) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:947) at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:301) at org.eclipse.swt.widgets.Shell.close(Shell.java:476) at org.eclipse.swt.widgets.Shell.traverseEscape(Shell.java:1634) at org.eclipse.swt.widgets.Control.traverse(Control.java:3382) at org.eclipse.swt.widgets.Control.translateTraversal(Control.java:3359) at org.eclipse.swt.widgets.Composite.translateTraversal(Composite.java:973) at org.eclipse.swt.widgets.Display.translateTraversal(Display.java:4195) at org.eclipse.swt.widgets.Display.filterMessage(Display.java:1153) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3280) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.actions.NewWizardShortcutAction.run(NewWizardShortcutAction.java:126) at org.eclipse.ui.internal.incubator.WizardElement.execute(WizardElement.java:41) at org.eclipse.ui.internal.incubator.CtrlEAction$QuickAccessPopup.handleElementSelected(CtrlEAction.java:289) at org.eclipse.ui.internal.incubator.FilteringInfoPopup$5.keyPressed(FilteringInfoPopup.java:309) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:154) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:962) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:947) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:975) at org.eclipse.swt.widgets.Text.sendKeyEvent(Text.java:1299) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:971) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1285) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3764) at org.eclipse.swt.widgets.Text.WM_CHAR(Text.java:2013) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3664) at org.eclipse.swt.widgets.Text.windowProc(Text.java:2008) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4342) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2257) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3282) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2365) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2329) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:615)
verified fixed
8ef8e17
["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-30T14:41:28Z
2007-05-01T17:20:00Z
216,667
Bug 216667 [Decorators] DecorationScheduler hangs onto objects forever sometimes
Build ID: I20071213-1700 Steps To Reproduce: I have an RCP app that uses the CommonNavigator and I don't use any decorations. So in this case, the listenerList in the DecorationScheduler is empty. However, the removedListeners are never cleared in that case and accumulate, causing a leak when the view is created and recreated. More information:
verified fixed
3e506e2
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/DecorationScheduler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-29T21:07:57Z
2008-01-26T12:20:00Z
216,212
Bug 216212 [FastView] Views cannot get focus when opening as FastView and dragging to a position
null
closed fixed
771f5c5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-28T20:22:55Z
2008-01-23T01:00:00Z
211,926
Bug 211926 [Markers] Invalid entries allowed for marker limits
1. Open the Task view 2. Go to the view toolbar menu > Preferences... 3. Type down an unallowed expression("abcd", "0.54", etc.) and click OK Result: An error is logged Additional Information Error Fri Nov 30 15:37:45 EET 2007 Unhandled event loop exception java.lang.NumberFormatException: For input string: "hg" at java.lang.NumberFormatException.forInputString(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at java.lang.Integer.<init>(Unknown Source) at org.eclipse.jface.preference.IntegerFieldEditor.doStore(IntegerFieldEditor.java:136) at org.eclipse.jface.preference.FieldEditor.store(FieldEditor.java:676) at org.eclipse.ui.views.markers.internal.MarkerViewPreferenceDialog.okPressed(MarkerViewPreferenceDialog.java:138) at org.eclipse.jface.dialogs.Dialog.buttonPressed(Dialog.java:464) at org.eclipse.ui.preferences.ViewSettingsDialog.buttonPressed(ViewSettingsDialog.java:47) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:616) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.views.markers.internal.MarkerView.openPreferencesDialog(MarkerView.java:903) at org.eclipse.ui.views.markers.internal.MarkerView.access$3(MarkerView.java:896) at org.eclipse.ui.views.markers.internal.MarkerView$6.openViewPreferencesDialog(MarkerView.java:883) at org.eclipse.ui.preferences.ViewPreferencesAction.run(ViewPreferencesAction.java:35) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:546) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Unknown Source) at org.eclipse.equinox.launcher.Main.basicRun(Unknown Source) at org.eclipse.equinox.launcher.Main.run(Unknown Source)
verified fixed
62f294a
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerPreferencesDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerPreferencesHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-25T21:09:42Z
2007-12-04T20:26:40Z
213,181
Bug 213181 [ActivityMgmt] Activities pattern bindings should provide the option to use non-regular Expression strings
null
verified fixed
f8a4b4d
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/IActivityPatternBinding.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ActivityPatternBinding.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ActivityPatternBindingDefinition.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/MutableActivityManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/PatternUtil.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/Persistence.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/ActivitiesTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/PatternUtilTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/UtilTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-24T14:39:35Z
2007-12-17T16:46:40Z
216,146
Bug 216146 [Decorators] Lightweight Decorator Manager holds onto element in lightweight runnable
null
verified fixed
aec1bef
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/LightweightDecoratorManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-23T21:42:36Z
2008-01-22T16:40:00Z
215,985
Bug 215985 [Markers] Description column not sorting text
Currently the description column in the problems view is sorting by severity but not comparing Strings of equal severity.
verified fixed
b96a1e1
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CachedMarkerBuilder.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerEntry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-22T20:41:23Z
2008-01-21T12:53:20Z
138,359
Bug 138359 [ProblemsView] Filters not restored on import
I have 2 problems view filters in my saved preferences. 1 is the default filter, changed to only work on the select item. 2 is a new filter, where the sev is Error. When created, it defaulted to "On working set" where the working set default was the Workspace Working set. I just created a new workspace in N20060425-0010, imported my preferences, and grabbed platform-ui from HEAD. None of the errors (for win32 and carbon) showed up, and when I checked my #2 filter, the working set has been changed to non-selected. PW
verified fixed
9963919
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CachedMarkerBuilder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-22T18:20:25Z
2006-04-25T13:00:00Z
176,986
Bug 176986 [Markers] Move tasks into the problems view
We should consider moving the tasks into the problem view as currently no one is using them in the tasks view. The main issue this could create is performance - problems change rapidly but tasks are generally pretty static and it may be a fair amount of extra time spent sorting them.
verified fixed
5246d04
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/AllMarkersView.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerProblemSeverityAndMessageField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerSeverityAndDescriptionField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerSeverityAndMessageField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerSupportRegistry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-21T20:17:16Z
2007-03-12T14:33:20Z
215,945
Bug 215945 [OLE] NullPointerException when saving an ole document
Build ID: Build id: I20071213-1700 Steps To Reproduce: 1. Open excel document with File/Open file... 2. Save excel document with File/Save 3. NullPointer Exception More information: Also Problem with "Save As": no FileDialog appears, no save is done.
verified fixed
76969be
["bundles/org.eclipse.ui.win32/src/org/eclipse/ui/internal/editorsupport/win32/OleEditor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-21T19:57:58Z
2008-01-21T07:20:00Z
120,691
Bug 120691 [Markers] Expanded categories not persisted between sessions
build I20051213 - in the Problems view in hierarchical mode, with many problems showing, - expand a few categories, select some leaf problems - shutdown / restart - the tree is collapsed Users will expect that the work they did to expand/collapse categories to see the problems they care most about will be persisted between sessions.
verified fixed
83dff56
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ExtendedMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-21T14:15:27Z
2005-12-13T18:53:20Z
195,137
Bug 195137 [Viewers] Tooltip for multiline comment in History view hinders selection
N20070702-0010 The tooltip for multiline comments in the History view hinders selection of the row behind, e.g.: - open CVS History for /org.eclipse.core.expressions/.classpath - move mouse to column "Comment" of rev. 1.7 - click -> clicks "through" the tooltip and selects the row - move mouse down to rev. 1.6 - Shift+click to select both items -> mouse click does nothing -> expected: should select rev. 1.6 and dismiss the tooltip If you now press Alt+Tab to file a bug, the tooltip even stays up, although the workbench window has lost focus.
verified fixed
d586596
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewerToolTipSupport.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/window/ToolTip.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-18T22:31:45Z
2007-07-02T12:40:00Z
208,335
Bug 208335 [JFace] AbstractColumnLayout does not handle columns with minimum and weight correctly
When calculating the widths of columns that have a ColumnWeightData with both weight and minimum width, the AbstractColumnLayout appends the minimum width on to the width calculation rather than using it as an actual minimum value. This causes the widths of the columns not to honor their weight settings correctly. Say for instance that you construct a table or tree with two columns, the first with a weight of 1 and a min width of 50, the second with a weight of 1 and a min width of 100. If there are 400 pixels of available space we should see both columns having equal width. The minimums should not come in to play in this instance. Instead the second column is larger than the first. The algorithm in question is located in AbstractColumnLayout#layoutTableTree
verified fixed
f9dd015
["bundles/org.eclipse.jface/src/org/eclipse/jface/layout/AbstractColumnLayout.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/layout/AbstractColumnLayoutTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/layout/AllTests.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-18T21:56:48Z
2007-10-31T22:33:20Z
58,419
Bug 58419 [Progress] "Run in Background" dialog should be possible to remember my decision
I20040413 I like the new dialog which allows me to push stuff into the background. There's just one thing: now all operations are modal again but with a dialog. It should be possible to remember my decision (of course by operation): - if I press "Run in Background" and check "Remember my decision" then all following operations which are of the same type will automatically run in background - if I simply check "Remember my decision" and don't put it into background then all following operations which are of the same type will automatically run modal And of course: the must be UI (preferences) to change my mind later.
verified fixed
53de7f1
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorFocusJobDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorJobsDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-18T14:22:15Z
2004-04-14T08:06:40Z
213,168
Bug 213168 [Markers] problems view: polish sort menu
3.4 M4 - open the problems view - open the view menu The menu has two entries: - By column (sub menu) - Ascending (radio) a. Ascending should either be a check box or a second radio option 'Descending' should be added b. It might be more comfortable for users to not have a 'By Column' but have this entries directly below 'Sort' (separated with a separator from 'Ascending' and 'Descending') (not sure if SWT allow to have two separate radio groups in the same menu)
verified fixed
a4d558b
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/SortDirectionContribution.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/SortFieldContribution.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-17T15:48:30Z
2007-12-17T14:00:00Z
213,479
Bug 213479 [Markers] Move more often used view menu items up
I20071218-0800. 'Preferences' and 'New xyz View' aren't used often (personally almost never) and hence should be at the end of the view menu of the new markers views. We might even think of moving the 'Configure Contents...' into 'Show': Show [ ] custom filter1 [ ] custom filter2 ... --- [ ] Show All ---- Configure... Group By --- New xyz View Preferences... (see the dots)
verified fixed
7e5c2c6
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ConfigureFiltersHandler.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/FiltersContribution.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerMessages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-16T21:28:13Z
2007-12-19T16:00:00Z
215,365
Bug 215365 [About] Migrate about dialog to new signed content API
null
verified fixed
358c95d
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/about/AboutBundleData.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/BundleSigningTray.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-16T14:18:38Z
2008-01-15T15:13:20Z
214,443
Bug 214443 [Markers] Problem view filter created even if I hit Escape
3.0M4 If I Configure Contents in the Problems view and push the New button to create a Filter, hitting Cancel in the input dialog still creates a filter.
verified fixed
504356e
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/FiltersConfigurationDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-15T21:48:37Z
2008-01-07T01:40:00Z
215,159
Bug 215159 [PropertiesView] description of last selected item stays in status line after deselection
Build ID: M20071023-1652 Steps To Reproduce: 1. use a standard java project 2. make sure the package explorer and properties view are open 3. select the "src" folder in the package explorer -> status line shows "project - src" 4. select a random property in the properties view (e.g. "path") -> status line shows "path" 5. select the "JRE System Library" in the package explorer -> status line shows "JRE System Library ... - project" 6. set focus on the (now empty) properties view -> status line shows "path" (should be empty, shouldn't it?) More information: I found this one developing a RCP using PropertyDescriptors and its setDescription(String) method. It's a cosmetic bug, but I think it won't be much work clearing the status line when the properties view looses all content.
verified fixed
7b02908
["bundles/org.eclipse.ui.views/src/org/eclipse/ui/views/properties/PropertySheetViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-15T19:18:38Z
2008-01-14T00:20:00Z
214,762
Bug 214762 [Markers] "Filters" list should be "Show"
In the "Configure Contents" page, the first list is filters, so things that are checked I won't see. But the "Type" list is the opposite: things that are selected I *will* see. I think I was expecting the first list to be inclusive, not exclusive, since it was "Configure Contents" which I equated with decide what I will see (not what I won't). The fact that one list is exclusive and the other inclusive may be a subtle point of confusion for some. I don't feel strongly about this though and perhaps filters is the right answer.
verified fixed
dd7daf0
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/FiltersConfigurationDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerMessages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-15T15:56:43Z
2008-01-09T17:33:20Z
214,763
Bug 214763 [Markers] "Configure Contents" dialog needs title changed
The "Configure Contents" dialog has title (in title bar) "Show Problems Matching:". Two observations: 1) The title shouldn't have a colon in it 2) It would be better if the title matched the name of the menu item that got me there "Configure Contents".
verified fixed
f24a427
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/FiltersConfigurationDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerMessages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-15T14:41:33Z
2008-01-09T17:33:20Z
215,244
Bug 215244 [Markers] Show All menu entry is not persisted
If you select Show All it will not be restored on return. Not an issue in the dialog.
verified fixed
1061d5b
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CachedMarkerBuilder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-14T18:38:37Z
2008-01-14T17:00:00Z
168,757
Bug 168757 [KeyBindings] Add keybinding for 'collapse all' button in Navigator & Package Explorer
Just a nice to have - would be very handy to assign something like CTRL-minus to the 'collapse all' button in Navigator and Package Explorer views (really, anything w/ a tree view and than button).
verified fixed
430f411
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/CollapseAllAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceNavigator.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorActionGroup.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/actions/CollapseAllAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/handlers/CollapseAllHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-14T18:26:49Z
2006-12-20T18:40:00Z
215,004
Bug 215004 [Markers] New Problems view: 'Group by > Type' broken
null
verified fixed
1a3917e
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerTypeField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TypeMarkerGroup.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-14T18:03:26Z
2008-01-11T11:13:20Z
205,332
Bug 205332 [FilteredItemsSelectionDialog] FilteredItemsSelectionDialog: history size off by 1 and Javadoc clarifications
null
verified fixed
0cafe1e
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/SearchPattern.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-11T15:10:00Z
2007-10-03T19:33:20Z
214,502
Bug 214502 [ErrorHandling] [Status Handling] test bed should be removed from org.eclipse.ui.tests
null
verified fixed
a0ce3e8
["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/FaultyExportWizard.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/WizardsStatusHandlingTestCase.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/actions/OpenErrorDialogAction.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/actions/OpenInfoDialogAction.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/actions/OpenWarningDialogAction.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/actions/ThrowNullPointerAction.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/actions/ThrowOutOfMemoryAction.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/handlers/EclipseStatus.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/jobs/TestJob.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/jobs/UITestJob.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/views/PartInitExceptionEditor.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/views/PartInitExceptionView.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/views/RuntimeExceptionEditor.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/views/RuntimeExceptionView.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/views/StatusHandlingView.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/wizards/FaultyExportWizard.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-11T14:29:26Z
2008-01-07T15:33:20Z
214,492
Bug 214492 [Markers] Need to be able to add filters to existing markers views
Currently you can only add filters to a new markerContentProvider. We need to able to bind them to existing markerContentProviders as well.
verified fixed
26f0798
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerSupportRegistry.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TypeMarkerGroup.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/markers/FIXMEParameters.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-11T14:25:25Z
2008-01-07T15:33:20Z
214,813
Bug 214813 [PerspectiveBar] Perspective bar does not expand to show newly opened perspective(s)
null
verified fixed
37abb50
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-10T19:16:15Z
2008-01-09T20:20:00Z
214,649
Bug 214649 [Markers] Allow markerAttributeGroupings and markerGroups to be specified within contentGenerators
With everything at the top level it is hard to see the relation to a contentGenerator and the groups and attribute groupings. These should be sub elements a la menus.
verified fixed
a0f3012
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CachedMarkerBuilder.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/AttributeMarkerGrouping.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroupingEntry.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerSupportRegistry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-09T16:49:16Z
2008-01-08T19:20:00Z
214,697
Bug 214697 [Viewers] No @since tag for DeferredTreeContentManager(AbstractTreeViewer) constructor
null
verified fixed
bd6f28a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/DeferredTreeContentManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-09T15:56:02Z
2008-01-09T00:53:20Z
214,680
Bug 214680 [Trim] TrimContributionManager won't accept IToolBarContributionItem
Build ID: M20071023-1652 Steps To Reproduce: We are building a new presentation for Eclipse 3.3 and have implemented a custom IToolBarManager. We would like to be able to use the org.eclipse.ui.menus extension point to allow adding custom controls to the status bar. Unfortunately, TrimContributionManager checks for the ToolBarContributionItem class instead of the IToolBarContributionItem interface, so our contributions are ignored. It's not possible for our presentation implementation to use ToolBarContributionItem directly since it has an assertion/cast in its constructor from IToolBarManager to ToolBarManager. Our custom tool bar manager extends ContributionManager and implements IToolBarManager so we get an assertion failure here. More information: Here is the assertion failure stack I get when attempting to use ToolbarContributionItem: !ENTRY org.eclipse.ui.workbench 4 2 2008-01-08 14:26:00.842 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 org.eclipse.core.runtime.AssertionFailedException: assertion failed: at org.eclipse.core.runtime.Assert.isTrue(Assert.java:109) at org.eclipse.core.runtime.Assert.isTrue(Assert.java:95) at org.eclipse.jface.action.ToolBarContributionItem.<init>(ToolBarContributionItem.java:126) at org.eclipse.jface.internal.provisional.action.ToolBarContributionItem2.<init>(ToolBarContributionItem2.java:51) at myplugin.MyPresentationFactory.createToolBarContributionItem(MyPresentationFactory.java:74) at org.eclipse.ui.internal.menus.MenuAdditionCacheEntry.createToolBarAdditionContribution(MenuAdditionCacheEntry.java:206) at org.eclipse.ui.internal.menus.MenuAdditionCacheEntry.createContributionItems(MenuAdditionCacheEntry.java:181) at org.eclipse.ui.internal.menus.TrimContributionManager.update(TrimContributionManager.java:224) at org.eclipse.ui.internal.WorkbenchWindow.updateLayoutDataForContents(WorkbenchWindow.java:3582) at org.eclipse.ui.internal.WorkbenchWindow.setLayoutDataForContents(WorkbenchWindow.java:3593) at org.eclipse.ui.internal.WorkbenchWindow.createDefaultContents(WorkbenchWindow.java:1090) at org.eclipse.ui.internal.WorkbenchWindowConfigurer.createDefaultContents(WorkbenchWindowConfigurer.java:624) at org.eclipse.ui.application.WorkbenchWindowAdvisor.createWindowContents(WorkbenchWindowAdvisor.java:268) at myplugin.ApplicationWorkbenchWindowAdvisor.createWindowContents(ApplicationWorkbenchWindowAdvisor.java:141) ...
verified fixed
618f4ea
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimContributionManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-09T14:36:33Z
2008-01-08T22:06:40Z
212,479
Bug 212479 [Browser] URL selection in Eclipse browser is not possible for documents or forms
Attempting to select a URL from the URL navigation drop down list is not possible if the current loaded page is a *.doc, *.frm, or *.xfdl file. As soon as the list is selected the currently loaded form reloads. Steps: 1. Open an html file in eclipse. 2. Once the browser is loaded, type in the location of a *.doc or *.frm file (eg. D:\Jonathan's Docs\test.doc or D:\Jonathan's Docs\test.frm) and press enter. 3. In the case of a document, select [Open] on the pop dialog to open. 4. The document or form will now be loaded in the browser. 5. Now attempt to select the drop down arrow of the URL navigation control to select a previously loaded page. 6. Note that as soon as you click on the drop down, the current document reloads leaving you no chance to make a selection.
resolved fixed
f0603d7
["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/BrowserViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-09T00:05:42Z
2007-12-11T02:26:40Z
214,648
Bug 214648 [Markers] AttributeMarkerGroupings and GroupingEntries not being cleaned up on removal
We are still leaving the references to AttributeMarkerGroupings and GroupingEntries when we unload
verified fixed
0f57440
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/AttributeMarkerGrouping.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroupingEntry.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerSupportRegistry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-08T20:12:33Z
2008-01-08T19:20:00Z
214,621
Bug 214621 [Viewers] Make ComboViewer non-final
null
verified fixed
09e0369
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ComboViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-08T15:25:18Z
2008-01-08T16:33:20Z
214,355
Bug 214355 [Databinding] Make ObservableListContentProvider useable for 3rd party AbstractTableViewer implementations
null
verified fixed
84a41f1
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ObservableListContentProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-07T21:25:18Z
2008-01-04T15:20:00Z
191,503
Bug 191503 [ActivityMgmt] NPE from "Identifier Update Job"
No idea what this is or where it came from. Was looking at some doc plugins and had one html editor open in the workbench. !SESSION 2007-06-07 11:14:48.921 ----------------------------------------------- eclipse.buildId=I20070606-0010 java.version=1.5.0_06 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US Command-line arguments: -os win32 -ws win32 -arch x86 !ENTRY org.eclipse.core.jobs 4 2 2007-06-07 11:23:54.937 !MESSAGE An internal error occurred during: "Identifier Update Job". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.activities.Identifier.fireIdentifierChanged(Identifier.java:111) at org.eclipse.ui.internal.activities.MutableActivityManager.notifyIdentifiers(MutableActivityManager.java:240) at org.eclipse.ui.internal.activities.MutableActivityManager.access$3(MutableActivityManager.java:229) at org.eclipse.ui.internal.activities.MutableActivityManager$2.run(MutableActivityManager.java:781) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
verified fixed
e1376a8
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/MutableActivityManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-07T18:54:01Z
2007-06-07T15:26:40Z
214,396
Bug 214396 [Markers] NPE in ExtendedMarkersView
N20080104 testResourceMappings failed in this build with the following stack: Failed to execute runnable (java.lang.NullPointerException) org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3716) at org.eclipse.swt.SWT.error(SWT.java:3634) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3265) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3003) at org.eclipse.ui.tests.markers.ResourceMappingMarkersTest.testResourceMappings(ResourceMappingMarkersTest.java:80) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:195) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3265) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3003) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.test.UITestApplication.runApplication(UITestApplication.java:138) at org.eclipse.test.UITestApplication.run(UITestApplication.java:60) at org.eclipse.test.UITestApplication.start(UITestApplication.java:210) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:561) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:501) at org.eclipse.equinox.launcher.Main.run(Main.java:1239) at org.eclipse.equinox.launcher.Main.main(Main.java:1215) at org.eclipse.core.launcher.Main.main(Main.java:30) Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.views.markers.ExtendedMarkersView.updateTitle(ExtendedMarkersView.java:1421) at org.eclipse.ui.internal.views.markers.ExtendedMarkersView$11.runInUIThread(ExtendedMarkersView.java:1047) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:94) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130)
verified fixed
6945414
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ExtendedMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-07T16:07:28Z
2008-01-04T20:53:20Z
214,137
Bug 214137 [Markers] Unbound system filters should be bound to problems view.
In 3.3 we supported systemFilters which are not currently picked up by the problems view. We should pick these up for compatiblity.
verified fixed
e19aea8
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CachedMarkerBuilder.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CompatibilityFieldFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CompatibilityMarkerFieldFilterGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CompletionFieldFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/DescriptionFieldFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerFieldFilterGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerTypeFieldFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/PriorityMarkerFieldFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/SeverityAndDescriptionFieldFilter.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/markers/DeclarativeFilterDeclarationTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-04T13:44:37Z
2008-01-02T18:53:20Z
118,516
Bug 118516 [DataBinding] Asserts should provide meaningful messages
Currently we use JDK Assert in various places in the code. However, if an assert fails, there often is no indication of why it failed or what the assert failure means without looking at the code indicated by the stack trace. It would be nicer if we would log exceptions or throw RuntimeExceptions with useful error messages instead.
verified fixed
da01855
["bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/internal/beans/ListenerSupport.java", "bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/AbstractObservable.java", "bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/ChangeManager.java", "bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/list/AbstractObservableList.java", "bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/map/AbstractObservableMap.java", "bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/internal/databinding/observable/tree/TreePath.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/DataBindingContext.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/AbstractObservable.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/ChangeManager.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/list/AbstractObservableList.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/map/AbstractObservableMap.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/tree/TreePath.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/CComboObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ComboObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/SpinnerObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/ThreadRealm.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/TableSingleSelectionObservableValueTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-03T20:57:34Z
2005-11-29T21:33:20Z
214,223
Bug 214223 [Markers] 'Marker id not found' exceptions from GroupMarkerField#compare(..) in log
I20071218-0800 Log fills up with these during an incremental auto-build. IIRC, the Problems has not been made visible since the last restart. Warning Thu Jan 03 14:22:58 CET 2008 Marker id 4826685 not found. org.eclipse.core.internal.resources.ResourceException: Marker id 4826685 not found. at org.eclipse.core.internal.resources.Marker.checkInfo(Marker.java:56) at org.eclipse.core.internal.resources.Marker.getType(Marker.java:194) at org.eclipse.ui.views.markers.internal.MarkerGroup$GroupMarkerField.compare(MarkerGroup.java:306) at org.eclipse.ui.internal.provisional.views.markers.MarkerComparator.compare(MarkerComparator.java:88) at java.util.Arrays.mergeSort(Arrays.java:1293) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.sort(Arrays.java:1210) at org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder.sortAndMakeCategories(CachedMarkerBuilder.java:951) at org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder.buildAllMarkers(CachedMarkerBuilder.java:251) at org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder$1.run(CachedMarkerBuilder.java:368) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
verified fixed
4401937
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/CachedMarkerBuilder.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/DeleteHandler.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerCompletionField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerContentGenerator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerDescriptionField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerEntry.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerFieldFilterGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerPriorityField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerSupportInternalUtilities.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkersPropertyPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/TypeFieldGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/api/MarkerField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/MarkerViewUtil.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerSupportRegistry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-03T18:51:19Z
2008-01-03T14:20:00Z
213,486
Bug 213486 [Markers] view descriptions wrong when grouped
I20071218-0800. When grouped the view says 'Filter matches 100 of xyz items' but below you see that there are many more items shown as the marker filter is applied per group.
verified fixed
06289be
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/ExtendedMarkersView.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerCategory.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-03T16:31:16Z
2007-12-19T16:00:00Z
213,474
Bug 213474 [Markers] Unchecking filter does not update
I20071218-0800. 1. Show > TODO ==> filter is applied 2. Show > TODO ==> nothing happens, old filter stays but view menu looks like this: [ ] TODO ---- [x] Show All
verified fixed
e4fd38a
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/CachedMarkerBuilder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-01-03T14:53:28Z
2007-12-19T16:00:00Z
213,451
Bug 213451 [Viewers] Visibility of OwnerDrawLabelProvider.OwnerDrawListener
1. Why is the internal class package scoped and not private 2. Why is the constructor public (at least on my eclipse install this shows up as an error because all public/protected methods have to have JavaDoc)
verified fixed
9c7db49
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/OwnerDrawLabelProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-19T16:48:13Z
2007-12-19T13:13:20Z
213,165
Bug 213165 [Markers] Marker context menu should not be team menu
null
verified fixed
b27d9b8
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerEntry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-18T16:03:22Z
2007-12-17T11:13:20Z
213,117
Bug 213117 [Trim] fast view bar is broken
In Eclipse 3.4m4 fast view bar doesn't show more then 5 icons and it is not rendered correctly when docked to the left of the Workbench
verified fixed
b4c22b1
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewBar.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-17T20:20:17Z
2007-12-16T21:20:00Z
213,166
Bug 213166 [Viewers] Problems with OwnerDrawLabelProvider.setUpOwnerDraw
3.4 M4 To set up the owner draw callbacks for a viewer OwnerDrawLabelProvider.setUpOwnerDraw is offered. The problem of this is: a. there's no way to uninstall the callbacks. In our views we want to allow to enable and disable owner draw in the preferences b. from an API client perspective, it would be nicer if the label provider could install itself when installed. A good solution would be to add more life cycle to a label provider. CellLabelProvider.initialize(ColumnViewer, int column) There's already ILableProvider.dispose when a label provider is removed from a viewer.
verified fixed
6630484
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CellLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ContentViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/OwnerDrawLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/SimpleStyledCellLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerColumn.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-17T20:03:52Z
2007-12-17T11:13:20Z
212,408
Bug 212408 [Markers] Markers updating during inconsistent state
We are updating during builds. As a result we get a lot of half constructed markers. We should 1) Cache default state 2) delay updates while a build is going on
verified fixed
58330c9
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/CachedMarkerBuilder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-17T19:26:10Z
2007-12-10T15:20:00Z
213,014
Bug 213014 [Markers] New view doesn't rank fatal errors first any longer when sorting per Java type
null
verified fixed
706defc
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerGroup.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-17T13:22:31Z
2007-12-14T13:46:40Z
213,040
Bug 213040 [Markers] Selected filters not being kept on restart
When I select "Warnings on Selection" and then restart it is not selected when I come back in. We need to retain these selections. Note this is only a problem when selecting from the menu - from the dialog works fine.
verified fixed
fb464a8
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerContentGenerator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-17T13:20:20Z
2007-12-14T16:33:20Z
212,901
Bug 212901 [QuickAccess] spurious empty roll-over tooltips
null
verified fixed
87bb3ee
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessEntry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-14T16:44:56Z
2007-12-13T15:33:20Z
212,913
Bug 212913 perspective bar not resized
1. Set perspective switcher to be Top Right, with text showing. 2. Change it to be on the left. 3. Change it to not show text. ==> Perspective Switcher is not resized. 4. Reset perspective ==> Perspective Switcher is not reset to top right, and it is not resized.
verified fixed
5e278de
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-13T19:53:41Z
2007-12-13T18:20:00Z
212,821
Bug 212821 Only WorkbenchMarkerResolutions being shown
Looks like quick fixes are broken in the I20071212-0010 build. The markers in question (tried some custom WTP markers and some JDT ones as well) correctly display the "Quick Fix" menu item (the IMarkerResolutionGenerator is successfully called and returns the fixes) but, when "Quick Fix" is selected, you get a dialog with title "Could not fix" and text "No fixes available for <marker description>". Looks like this issue has appeared at some point recently during M4.
verified fixed
d00a88e
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/QuickFixHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-13T14:50:18Z
2007-12-12T22:53:20Z
212,663
Bug 212663 [QuickAccess] Roll-over tooltip too wide
[I20071211-0010], Windows XP and Windows Vista Steps: 1. Hit Ctrl-3 to open the Quick Access Dialog 2. Type "er" 3. Hover over one of the cut-off entries -> a roll-over tooltip (native) appears. It is way too wide. Note that in the build referenced above, you will see another tooltip (non-native), which I will remove. This bug is only about the native one being to wide.
resolved fixed
05324e4
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessEntry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-12T16:48:31Z
2007-12-11T21:53:20Z
212,733
Bug 212733 [Markers] Problem view no longer updates when changing the visible marker limit
Version: 3.4.0 Build id: I20071211-0010 By default, the view shows 100 markers. When changing this limit (through marker prefs), the view doesn't update. One need to close/reopen for this to get taken into account. This is a regression.
verified fixed
695c2ad
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/ExtendedMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-12T15:05:55Z
2007-12-12T11:46:40Z
212,728
Bug 212728 [Markers] New Tasks view not showing completion icon
I20071212-0010 The new Tasks view does not allow to mark a task as completed by clicking into the corresponding field.
verified fixed
7292bff
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerCompletionField.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-12T14:18:00Z
2007-12-12T11:46:40Z
191,673
Bug 191673 [QuickAccess] Tooltips only partially overlap the hovered item
null
resolved fixed
d06b43f
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-11T20:57:43Z
2007-06-08T10:53:20Z
212,305
Bug 212305 [Markers] NPE in Perspective.findView trying to open Markers view
This appears to be the result of double clicking on a marker in an editor !ENTRY org.eclipse.ui 4 0 2007-12-07 14:01:06.609 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.Perspective.findView(Perspective.java:306) at org.eclipse.ui.internal.WorkbenchPage.findViewReference(WorkbenchPage.java:1800) at org.eclipse.ui.internal.WorkbenchPage.findViewReference(WorkbenchPage.java:1787) at org.eclipse.ui.internal.WorkbenchPage.findView(WorkbenchPage.java:1774) at org.eclipse.ui.views.markers.MarkerViewUtil.showMarker(MarkerViewUtil.java:110) at org.eclipse.ui.texteditor.SelectMarkerRulerAction.run(SelectMarkerRulerAction.java:121) at org.eclipse.jdt.internal.ui.javaeditor.JavaSelectAnnotationRulerAction.runWithEvent(JavaSelectAnnotationRulerAction.java:100) at org.eclipse.jdt.internal.ui.javaeditor.JavaSelectAnnotationRulerAction.run(JavaSelectAnnotationRulerAction.java:77) at org.eclipse.ui.texteditor.AbstractRulerActionDelegate.run(AbstractRulerActionDelegate.java:104) at org.eclipse.ui.internal.handlers.ActionDelegateHandlerProxy.execute(ActionDelegateHandlerProxy.java:289) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:475) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:470) at org.eclipse.ui.actions.ContributedAction.runWithEvent(ContributedAction.java:177) at org.eclipse.ui.internal.actions.CommandAction.run(CommandAction.java:171) at org.eclipse.ui.texteditor.AbstractTextEditor$14.triggerAction(AbstractTextEditor.java:2890) at org.eclipse.ui.texteditor.AbstractTextEditor$14.access$1(AbstractTextEditor.java:2884) at org.eclipse.ui.texteditor.AbstractTextEditor$15.run(AbstractTextEditor.java:2903) at org.eclipse.swt.widgets.Display.runTimer(Display.java:3813) at org.eclipse.swt.widgets.Display.messageProc(Display.java:3031) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2329) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3359) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2381) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2345) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2211) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:473) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:468) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:561) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:501) at org.eclipse.equinox.launcher.Main.run(Main.java:1239)
verified fixed
a5095c2
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/MarkerViewUtil.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-10T18:29:13Z
2007-12-07T20:40:00Z
212,235
Bug 212235 [DataBinding] Tests for ShellObservableValue
Will attach patch..
verified fixed
ca2100b
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ShellObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/ShellObservableValueTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-10T04:05:25Z
2007-12-07T04:00:00Z
58,777
Bug 58777 [Viewers] add API to not deactivate CellEditor on FocusLost
TableViewerImpl installs a FocusListener on CellEditors, which calls applyEditorValue() on focusLost events. This FocusListener must be removed since applying the editor value is not always the wanted behavior on focusLost. Subclasses of CellEditor already handle focus loss in an extensible way: they install their own FocusListener and call a hook method focusLost() (which can be extended or reimplemented by subclasses with special needs). To support content assist in table cells (such as in the Change Method Signature dialog), we need to stay in editing mode even while the proposal list has focus. This is currently not implementable, since TableViewerImpl deactivates the CellEditor even if the CellEditor's focusLost() is reimplemented. The fix is to simply remove the redundant FocusListener in TableViewerImpl.
verified fixed
36b9d7a
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CellEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TextCellEditor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-10T01:27:59Z
2004-04-16T07:20:00Z
204,788
Bug 204788 [Contributions] Second context menu created from MenuManager does not show
Build ID: I20070621-1340 Steps To Reproduce: 1. Create a MenuManager m with some menu items. 2. Call c.setMenu(m.createContextMenu(c)) on some Control c. 3. Observe that right-clicking on c produces the menu. 4. Dispose the menu. 5. Repeat step 2. (Alternatively, install m on a different control.) 6. The menu now doesn't appear. More information: I'm using Linux/GTK. The debugger tells me that the menu is created and handleAboutToShow() is called. I can't see a problem in the Java code, but nothing appears on the screen. Maybe something is wrong in the native code? If I use a different MenuManager to create the second menu, it works fine.
verified fixed
451b539
["bundles/org.eclipse.jface/src/org/eclipse/jface/action/MenuManager.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/action/MenuManagerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-07T20:12:27Z
2007-09-27T10:46:40Z
201,293
Bug 201293 [MinMax] NPE when maximixing a minimized window
java.lang.NullPointerException at org.eclipse.ui.internal.PartStack.smartUnzoom(PartStack.java:1409) at org.eclipse.ui.internal.PartStack$3.runWithException(PartStack.java:1480) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:152) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:118) at org.eclipse.swt.widgets.Display.syncExec(Display.java:3897) at org.eclipse.ui.internal.StartupThreading.runWithoutExceptions(StartupThreading.java:94) at org.eclipse.ui.internal.PartStack.setState(PartStack.java:1473) at org.eclipse.ui.internal.WorkbenchPage.setState(WorkbenchPage.java:3765) at org.eclipse.ui.internal.WorkbenchPage.toggleZoom(WorkbenchPage.java:3837) at org.eclipse.ui.internal.MaximizePartAction.run(MaximizePartAction.java:68) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:119) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:475) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:429) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:165) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:470) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:821) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:879) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:568) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:510) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:126) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1423) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1100) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1125) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1110) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1137) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:663) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:2533) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:679) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1486) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4234) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3973) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:5593) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1192) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2969) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169)
verified fixed
df77e86
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveHelper.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-07T19:00:44Z
2007-08-27T18:40:00Z
212,038
Bug 212038 [Preferences] WorkbenchPreferenceManager mishandles dynamic contributions
The WorkbenchPreferenceManager has issues handling dynamic contributions when a PreferenceNode is created programmatically. ClassCastExceptions get generated because WPM assumes that everything is of type WorkbenchPreferenceNode, where TestPreferenceNode is simply a PreferenceNode. I will attach a test case. By the way, I also noticed that the tree doesn't refresh properly if stuff is added dynamically.
verified fixed
7cbb947
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-06T20:21:26Z
2007-12-05T18:40:00Z
211,646
Bug 211646 [JFace] StructuredSelection.toList(...) allows modification to original selection
3.4 The implementation of StructuredSelection.toList() looks like this: "return Arrays.asList(elements == null ? new Object[0] : elements);" This returns a list with the actual underlying array of selected elements. Changes to the list returned by this method write through to the underlying array and change the original selection. I don't think this is intentional?
verified fixed
5fbd5f7
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/IStructuredSelection.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-06T19:25:00Z
2007-11-30T22:00:00Z
208,456
Bug 208456 [Workbench] StatusAdapterHelper does not check for unregistered status adapters
null
verified fixed
8978c13
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressAnimationItem.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-06T18:23:44Z
2007-11-01T18:00:00Z
212,008
Bug 212008 [Presentations] Problemss View loses icon when it gets focus in n I20071204-1547
Everything is in the title.
verified fixed
1ea4bda
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/ExtendedMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-06T18:13:07Z
2007-12-05T15:53:20Z
212,002
Bug 212002 [Markers] NPE in CachedMarkerBuilder.getMarkerItem
I20071204-1547 Sorry, no steps. Just found this in the log: !ENTRY org.eclipse.ui 4 0 2007-12-05 12:03:37.031 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder.getMarkerItem(CachedMarkerBuilder.java:555) at org.eclipse.ui.internal.provisional.views.markers.ExtendedMarkersView.setSelection(ExtendedMarkersView.java:1427) at org.eclipse.ui.internal.provisional.views.markers.MarkerSupportInternalUtilities.showMarker(MarkerSupportInternalUtilities.java:180) at org.eclipse.ui.views.markers.MarkerViewUtil.showMarker(MarkerViewUtil.java:101) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.updateMarkerViews(AbstractDecoratedTextEditor.java:1865) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updateMarkerViews(JavaEditor.java:2697) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updateStatusLine(JavaEditor.java:3116) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.selectionChanged(JavaEditor.java:1872) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor$EditorSelectionChangedListener.selectionChanged(JavaEditor.java:285) at org.eclipse.jface.text.TextViewer.firePostSelectionChanged(TextViewer.java:2560) at org.eclipse.jface.text.TextViewer.firePostSelectionChanged(TextViewer.java:2512) at org.eclipse.jface.text.TextViewer$5.run(TextViewer.java:2491) at org.eclipse.swt.widgets.Display.runTimer(Display.java:3813) at org.eclipse.swt.widgets.Display.messageProc(Display.java:3031) at org.eclipse.swt.internal.win32.OS.$$YJP$$DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2327) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3359) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2381) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2345) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2211) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:473) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:468) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:561) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:501) at org.eclipse.equinox.launcher.Main.run(Main.java:1239) at org.eclipse.equinox.launcher.Main.main(Main.java:1215)
verified fixed
c18ee6e
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/CachedMarkerBuilder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-06T17:54:27Z
2007-12-05T15:53:20Z
211,786
Bug 211786 [DataBinding] ComputedList refinements
Patch to follow which refines how staleness is handled with ComputedList's dependencies.
verified fixed
e669405
["bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/list/ComputedList.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/list/ComputedList.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/list/ComputedListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-05T04:06:24Z
2007-12-03T16:40:00Z
100,688
Bug 100688 [JFace] Geometry.setLocation does not behave as documented
Geometry.setLocation incorrectly modifies the size of the rectangle, when it should modify the origin.
verified fixed
4d00902
["bundles/org.eclipse.jface/src/org/eclipse/jface/util/Geometry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-04T22:12:11Z
2005-06-17T23:13:20Z
193,814
Bug 193814 [Progress] [Progress] Part leaked via ProgressAnimationItem.lastJobInfo
3.3 M7 - ran a long-running operation in a view, which used the site's progress service - closed the view (after the operation completed) - YourKit shows the view still being held onto via the job referenced from ProgressAnimationItem.lastJobInfo See the first ref trace in the attachment.
verified fixed
1f54c6b
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressAnimationItem.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-04T21:19:53Z
2007-06-21T18:20:00Z
152,021
Bug 152021 [Preferences] JAWS7.0 not working correctly for Eclipse preferences: not stating the results of filter
Here is the steps for how to recreate this problem. 1.Install ScreenReader JAWS7.0, 2.User1 logs in UIM and opens preferences page from File->Preferences.... 3.Now the focus located in the edit "type filter text", then user1 inputs a letter, such as "l". 4.All the matched preferences title filtered out. Please refer to the following picture. Bug: JAW7.0 doesn't state any entry in the list directly, and there is not any indication about the result of filter. Expected Result: JAW7.0 should give a notification such as "There are 3 preferences filtered out, please navigate them with TAB key."
verified fixed
d615aa3
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-04T19:25:12Z
2006-07-27T17:06:40Z
210,101
Bug 210101 [Forms] Large images does not appear as the should in FormHeading
Build ID: M20070921-1145 Steps To Reproduce: 1. Create a new ScrolledForm in a ViewPart 2. use setImage() on the form, make sure the image is larger then the default font height of the heading (19?). I used a 48x48 png image. 3. Run the test application and open the viewPart, the image should know be "clipped" at the top, only revealing the bottom of the image. More information: The layout of the TitleRegion in FormHeading is making an assumption that the font height always is larger then the height of the image. Because of this, large images are position at a negative y-position. This also has impact on the label position. I altered the calculation of the yPos to somtehing like this: int iHeight = getFontHeight(); if (bsize != null) { if (bsize.y > iHeight) { iHeight = bsize.y; } ... busyLabel.setBounds(xloc, yloc + (iHeight - bsize.y) / 2, bsize.x, bsize.y); ... titleLabel.setBounds(xloc, yloc + (iHeight - getFontHeight()) / 2, tw, tsize.y);
resolved fixed
6788198
["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TitleRegion.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-04T18:34:32Z
2007-11-16T13:33:20Z
202,474
Bug 202474 [Forms] Create a resource manager to share the bold font
If a FormToolkit is passed into FormEditor it is disposed upon disposal of the editor even though it may be shared.
resolved fixed
c5144f4
["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormText.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormToolkit.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormFonts.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormUtil.java", "tests/org.eclipse.ui.tests.forms/forms/org/eclipse/ui/tests/forms/util/AllUtilityTests.java", "tests/org.eclipse.ui.tests.forms/forms/org/eclipse/ui/tests/forms/util/FormFontsTests.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-04T18:19:41Z
2007-09-06T14:46:40Z
211,647
Bug 211647 [Workbench] 'Open Referenced Projects' dialog prompt ignores 'esc' key
null
verified fixed
975a81c
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/OpenResourceAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-04T18:01:53Z
2007-11-30T22:00:00Z
208,602
Bug 208602 [Dialogs] Open Type dialog needs accessible labels
Build ID: 3.3.1 Steps To Reproduce: The open type dialog (JavaUI.createTypeDialog) has an input text field for a user to enter the desired class, and a list of matching results. Neither of these have accessible labels according to Microsoft Inspect Objects (Inspect shows the Name of both of these fields as "none"). More information:
verified fixed
79bb38c
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-03T21:07:06Z
2007-11-02T19:00:00Z
156,456
Bug 156456 [Forms] widgets accept focus even though they can't do anything with it
Many of the widgets in the Forms library (Section, BusyIndicator, FormHeading) will accept keyboard focus even though they can't do anything with it. The impact is that when someone calls setFocus on a Form that contains a FormHeading at its top (which is quite common), keyboard focus ends up nowhere. Looking at the patterns in SWT, it appears that the correct protocol is for controls to return false from setFocus if they can't do anything with the focus so that the caller can try assigning focus somewhere else.
resolved fixed
99ea6fb
["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/ExpandableComposite.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/BusyIndicator.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormHeading.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TitleRegion.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-03T20:13:55Z
2006-09-07T00:46:40Z
19,229
Bug 19229 Changing color scheme in windows messes up view colors
Build F2 (20020602) Win2K If you switch windows color scheme after you started eclipse, then Eclipse hangs on to some of the old colors for certain things. Examples of this are background colors for view icons like the 'X' to close the view, and the gradient color of the title bar for a view. - Go to display properties in windows -> Appearance. - Set your scheme to "Maple" - Open Eclipse - Set your scheme to "Slate" - Go back to Eclipse - Focus on one of the views Notice how the views still use colors from the old scheme.
verified fixed
f59a381
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeElementHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeRegistry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/WorkbenchThemeManager.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/themes/ThemeAPITest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-03T20:07:25Z
2002-06-04T22:33:20Z
205,282
Bug 205282 [Forms] BusyIndicator causes and swallows several exceptions
Build ID: I20070921-0919 The new implementation of the BusyIndicator introduced in 3.4 M2 causes several exceptions, which, however, are swallowed in an empty catch block. You will catch these exceptions when Exception breakpoints for NPE and others are enabled. The problem obviously occurs when setBusy is called frequently. I have a search text field in my form in which every ModifyEvent triggers a new search, i.e. every character typed in will cause an update an therefore setBusy will be called in quick succession. If you have problems to reproduce the bug, I could try to cut my Forms code down to a small bug snippet. The exceptions thrown are as follows: org.eclipse.swt.SWTError: No more handles at org.eclipse.swt.SWT.error(SWT.java:3717) at org.eclipse.swt.SWT.error(SWT.java:3609) at org.eclipse.swt.SWT.error(SWT.java:3580) at org.eclipse.swt.graphics.Image.createGdipImage(Image.java:870) at org.eclipse.swt.graphics.GC.drawImage(GC.java:897) at org.eclipse.swt.graphics.GC.drawImage(GC.java:891) at org.eclipse.ui.internal.forms.widgets.BusyIndicator$2.run(BusyIndicator.java:123) java.lang.NullPointerException at org.eclipse.swt.graphics.Image.dispose(Image.java:1038) at org.eclipse.ui.internal.forms.widgets.BusyIndicator.clearImages(BusyIndicator.java:303) at org.eclipse.ui.internal.forms.widgets.BusyIndicator.access$0(BusyIndicator.java:299) at org.eclipse.ui.internal.forms.widgets.BusyIndicator$2.run(BusyIndicator.java:188) java.lang.NullPointerException at org.eclipse.swt.graphics.Image.createGdipImage(Image.java:865) at org.eclipse.swt.graphics.GC.drawImage(GC.java:897) at org.eclipse.swt.graphics.GC.drawImage(GC.java:891) at org.eclipse.ui.internal.forms.widgets.BusyIndicator$2.run(BusyIndicator.java:123) Exception in thread "Thread-72" java.lang.OutOfMemoryError: Java heap space at org.eclipse.swt.graphics.Image.getImageData(Image.java:1440) at org.eclipse.ui.internal.forms.widgets.BusyIndicator$2.run(BusyIndicator.java:122) Line 176 in org.eclipse.ui.internal.forms.widgets.BusyIndicator protected synchronized void createBusyThread() { ... busyThread = new Thread() { private Image timage; public void run() { try { ... } catch (Exception e) { <<< empty catch block swallows these exceptions } finally { ... } } ... }
resolved fixed
0524353
["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/BusyIndicator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-03T18:59:15Z
2007-10-03T11:13:20Z
208,462
Bug 208462 [Perspectives] newly created project do not appear in the Project Explorer
Build ID: I20071101092718-20071101092718 Steps to reproduce: 1. Start in a fresh new workspace. 2. Close the Java perspective 3. Open the Java EE perspective 4. Create a new Web project. The web project do not appear in the Project Explorer view. If you open the Java perspective it appears in the Package Explorer view, but still not available in the Project Explorer view. If you omit step 2 then the problem does not appear.
closed fixed
e46bdf1
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/handlers/ShowPerspectiveHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-03T18:44:43Z
2007-11-01T18:00:00Z
207,838
Bug 207838 [DataBinding] ComputedList contribution
null
verified fixed
0861375
["bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/list/ComputedList.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/list/ComputedList.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-12-02T19:05:45Z
2007-10-29T20:33:20Z
146,623
Bug 146623 [Commands] Define command / retargetable action / keybinding for switching pages in a PageBookView
N20060611-0010 The platform should define a command for cycling through pages of a PageBookView (e.g. Search, Console, Synchronize) or other views that use a notion of switchable pages (e.g. JUnit, Type Hierarchy, Call Hierarchy). There should be a retargetable action that can be used by views that want to support easy switching between their pages. The action cannot be bound by default, since some PageBookViews may not want to give the user this power (e.g. Outline), or they need to know about page switching events (e.g. JUnit). Good default keybindings would be Alt+PageUp / Alt+PageDown. Today, using such views is often cumbersome, since the views usually only offer a dropdown toolbar button, which has a very small target area to open a menu. Furthermore, opening the menu is unnecessary when the user already knows she wants to go to the previous/next page.
verified fixed
ed2df4a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CycleBaseHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CycleEditorHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CyclePerspectiveHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CycleViewHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/CyclePageHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/PageSwitcher.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-30T19:55:24Z
2006-06-12T16:33:20Z
211,493
Bug 211493 [Markers] [Markers] New Markers view slows down traversal in Package Explorer
I20071127-0800 Traversing over elements in the Package Explorer via Arrow_Down key is slowed down by the new Markers view. Steps: - select org.eclipse.jdt.doc.user (from CVS) - press Arrow_Right - press and hold Arrow_Down => selection moves slowly, gets faster after folders with many files have been passed I quickly profiled this and found that a lot of time is burned in org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder$1.run(IProgressMonitor) This is probably because ExtendedMarkersView.createPartControl(Composite) contains: ISelectionListener listener = getPageSelectionListener(); getSite().getPage().addSelectionListener(listener); listener.selectionChanged(getSite().getPage().getActivePart(), getSite().getPage().getSelection()); 1. => should not leak the listener when the view is disposed 2. => should not update when the Markers view is not visible 3. => should not use addSelectionListener() but addPostSelectionListener()
verified fixed
20ace3c
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/ExtendedMarkersView.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerEntry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-30T18:38:37Z
2007-11-29T18:13:20Z
203,595
Bug 203595 [Contributions] SubMenuManager should use ListenerList's clear() method
null
verified fixed
d78542d
["bundles/org.eclipse.jface/src/org/eclipse/jface/action/SubMenuManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-30T17:36:33Z
2007-09-17T14:40:00Z
211,610
Bug 211610 [Forms] Adopt new MPE key binding API
null
resolved fixed
e222d12
["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/editor/FormEditor.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/editor/SharedHeaderFormEditor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-30T17:35:29Z
2007-11-30T16:26:40Z
184,074
Bug 184074 [MPE] Need API to disable key bindings in shared editor header
null
verified fixed
eb23f3b
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/MultiPageEditorPart.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-30T17:06:05Z
2007-04-25T16:53:20Z
36,446
Bug 36446 [Contributions] widgets: Associating Actions with Buttons
Actions can be associated with Menu items , and tool bar items using MenuManager and ToolBarManager but there is not way to associate Action with a regular button and obtaining a reference to that button the closest thing is creating an ActionContributionItem with the desired action in its constructor , then filling the parent composite with ActionContributionItem.fill(Control parent) this creats the button , but it doesn't return a reference to that button , so for example i can't give it any layout data i suggest the ActionContributionItem.fill(Control parent) returns the created widget
verified fixed
9e28ee4
["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ActionContributionItem.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/action/ContributionItemTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-30T16:52:24Z
2003-04-14T11:33:20Z
79,581
Bug 79581 [Commands] request: Declare a command for "Link with Editor"
I200411240800 Platform/UI should declare a retargetable toggling action/command for "Link with Editor". Currently, almost every decent view that shows editable elements has its own view toolbar button "Link with Editor". I would like to toggle these buttons via a keyboard shortcut (and the shortcut should be the same in every view :-). I'm not sure whether this should go into to the IDE or the RCP layer, but I'm sure you'll find a good place.
verified fixed
7930751
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceNavigator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ToggleLinkingAction.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorActionGroup.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/actions/LinkEditorAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-30T15:10:11Z
2004-11-26T17:26:40Z
210,946
Bug 210946 [Workbench] Unproper error handling in class ModalContext
Build ID: M20070921-1145 Steps To Reproduce: A caught Throwable is not written to the Eclipse log. It is just written on the console. org.eclipse.jface.operation.ModalContext public void block() { if (display == Display.getCurrent()) { while (continueEventDispatching) { // Run the event loop. Handle any uncaught exceptions caused // by UI events. try { if (!display.readAndDispatch()) { display.sleep(); } } // ThreadDeath is a normal error when the thread is dying. We must // propagate it in order for it to properly terminate. catch (ThreadDeath e) { throw (e); } // For all other exceptions, log the problem. catch (Throwable e) { System.err.println("Unhandled event loop exception during blocked modal context."); //$NON-NLS-1$ e.printStackTrace(); } More information:
verified fixed
044d907
["bundles/org.eclipse.jface/src/org/eclipse/jface/operation/ModalContext.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-29T21:04:55Z
2007-11-26T18:00:00Z
211,179
Bug 211179 [DetachedWindows] Detached eclipse windows may render outside desktop
Build ID: I20070621-1340 Steps To Reproduce: 1. Start with XP on two monitors (right click on Desktop, Properties, Settings, "Extend my Windows desktop onto this monitor") 2. Detach a view into a floating window (doesn't matter what view) 3. Move that window onto the second monitor/desktop 4. Shutdown Eclipse 5. Switch XP to a single monitor (reverse process in step 1) 6. Restart Eclipse 7. The view will now not be visible. It remains rendered off screen on the now defunct second desktop. It is very difficult to move this window back onto the first desktop, or even "re-attach" it, since you can't click on it. More information: I found this issue when using remote desktops onto my main machine.
verified fixed
b694393
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/DetachedWindow.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-28T21:21:44Z
2007-11-28T08:53:20Z
211,212
Bug 211212 Cannot delete a bookmark in the new markers view
The delete action is not enabled for bookmarks
verified fixed
26ee623
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/EditablePropertyTester.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-28T20:14:45Z
2007-11-28T14:26:40Z
211,122
Bug 211122 [Markers] Errors 'Marker id 301832 not found.' logged when opening new Markers view
[I20071127-0800] Not sure what I did other than opening the new Markers view. The error log does not have any detail other than 'Marker id 301832 not found.' and 'Marker id 301833 not found.'. Related question: why is there no associated stack trace in the log? The plug-in id says 'org.eclipse.core.resources' - does this really come from Resources? Could they produce a stack trace in this case to help debug the issue?
verified fixed
6ff9750
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/Policy.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerEntry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-28T13:57:17Z
2007-11-27T21:46:40Z
210,934
Bug 210934 [ErrorHandling] [StatusHandling] StatusManager#handle(StatusAdapter) should log that the adapter or status is null
null
verified fixed
84af3d5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/StatusManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2007-11-28T11:56:55Z
2007-11-26T15:13:20Z