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
unknown | report_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
17,375 | Bug 17375 Cheese on Java Scrapbook page ruler | Bulid F1 on SuSe 7.3 1) Create a new Java Scrapbook page and open it 2) Right-click on scrapbook page editor's ruler A tiny 3D square shows up on the ruler (it usually appears where the mouse is but sometimes appears at a completely different place) Looks like it might be some sort of stray widget... It disappears when focus is removed from the ruler. This doesn't happen on Linux/Motif or Win32. | resolved fixed | c65bd10 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-29T21:01:20Z" | "2002-05-23T16:06:40Z" |
17,637 | Bug 17637 Resize problem when diableing overview ruler in Editor | F1 Suse 8.0, KDE 3.0, GTK 2 - open Java file - disable all Editor->Apperance settings observe: the vertical scrollbar is somehow clipped. | resolved fixed | c440936 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/GtkFixed.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-29T17:40:57Z" | "2002-05-24T14:20:00Z" |
17,022 | Bug 17022 SWT Layouts example - missing window title | Start the SWT Layouts example Click on 'Code' The window which comes up has no title. | resolved fixed | e25ca0f | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/layoutexample/Tab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-28T21:00:31Z" | "2002-05-22T20:40:00Z" |
16,828 | Bug 16828 CTabFolder flashing tooltip | Windows 2000 F1 Place cursor at very bottom edge of CTabFolder tabs. Tooltip appears but then mouse enters the tooltip which means it leaves the CTabFolder and the tooltip closes. Repeats until you move the mouse up. Note this can also be a problem if tabs are on bottom of folder. | resolved fixed | acddacf | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-28T20:13:01Z" | "2002-05-22T15:06:40Z" |
16,549 | Bug 16549 Cannot navigate tabbed notebook with keyboard | On Linux motif you cannot switch between tabs of a tabbed notebook using the keyboard only. This does work on Windows STEPS 1) Open a tabbed notebook on Windows 2000. 2) Tab until you get focus on the tab 3) Hit the right arrow - it will go to the next tab\ 4) Open a tabbed notebook on Linux motif 5) Tab until you get focus on the tab 6) Hit the right arrow - nothing will happen | resolved fixed | 59a7781 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/tabfolder/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-28T19:40:53Z" | "2002-05-21T14:06:40Z" |
16,775 | Bug 16775 TableTree.setSelection/showItem fails for deeply nested items | I built a TableTree with three nested TableTreeItems. If I close the tree entirely and call showItem() on the innermost child, I get a null argument exception even though the child is not null. I don't get an exception if I expand the tree entirely, or if I call showItem() on the first or second level child items. I get the same results if I use setSelection(). Also calling showItem() successively from the higher level to lower level items (to "gradually" open the tree) produces the same exception. i.e. ... TableTree tree = new TableTree(composite,SWT.FULL_SELECTION); TableTreeItem root = new TableTreeItem(tree,SWT.NONE); root.setText("root"); TableTreeItem child = new TableTreeItem(root,SWT.NONE); child.setText("child"); TableTreeItem child2 = new TableTreeItem(child,SWT.NONE); child2.setText("child2"); ... if ( child2!=null ) tree.showItem(child2); // raises exception if child2 is unexpanded ... gives java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:1873) at org.eclipse.swt.SWT.error(SWT.java:1819) at org.eclipse.swt.widgets.Widget.error(Widget.java:368) at org.eclipse.swt.widgets.Table.indexOf(Table.java:962) at org.eclipse.swt.widgets.Table.setSelection(Table.java:1834) at org.eclipse.swt.custom.TableTree.setSelection(TableTree.java:664) ... I'm using SWT that came with Eclipse build 20020416, on a Windows 98 machine. | resolved fixed | 1bdda2f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableTree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-28T18:54:47Z" | "2002-05-22T12:20:00Z" |
17,497 | Bug 17497 FileDialog open() returns wrong result | The snippet at the bottom opens a file dialog, leaves the user to select some file, then prints the path of the selected file after the user presses OK. It gets its result from the return value of the FileDialog.open() invocation. On all platforms except hpux this returns a full path (eg.- "/opt/eclipse/jre/lib/rt.jar"). But on hpux only the last portion is answered (eg.- "rt.jar"). This inconsistency is quite bad because it prevents the file selection function on the Java -> Classpath Variables preference page from working properly. import org.eclipse.swt.widgets.*; public class FileDialogFullPath { public static void main(String[] args) { FileDialog dialog = new FileDialog(new Shell()); String result = dialog.open(); System.out.println("open result: " + result); } } | resolved fixed | 81ca82d | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-28T18:41:25Z" | "2002-05-23T21:40:00Z" |
16,200 | Bug 16200 Tracker leaves cheese | null | resolved fixed | 423a36e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tracker.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-28T13:44:15Z" | "2002-05-16T20:13:20Z" |
17,932 | Bug 17932 Emulated Coolbar do not resize when the last item on the row is removed | build 20020521 F1 1 - Run the Car's coolbar example on: /Car/coolbartest/CoolBarIconTest.java 2 - Resize the window to be bigger 3 - Drag the last Item to the next row 4 - Remove the Item on index 5 (ie. the item that you just dragged) 5 - The coolbar do not resize, so there is a extra row empty where you just removed the item. | resolved fixed | d1a1f46 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-27T22:29:39Z" | "2002-05-27T14:33:20Z" |
17,802 | Bug 17802 Moving a sash requires an extra click to take effect | Build F1 (20020521) Redhat 7.2, GTK2, KDE 2.2-10 (GTK only) See the SWT example ControlExample under the "Sash" tab. If you click on the sash and drag the mouse then release, it doesn't do anything except draw another sash (well, a gray bar) where you released. But then if you click on that new sash then it resizes and refreshes everything properly. I couldn't find any sashes _x0003_in eclipse to confirm this so it's possible that the problem is the example itself. | resolved fixed | a7e4b86 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Scrollable.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-27T20:59:48Z" | "2002-05-24T19:53:20Z" |
17,632 | Bug 17632 "Color Button" doesn't update | F1 Suse 8.0, KDE 3.0, GTK 2 - open Preference->Editor - resize preference dialog so that the color list at the bottom is fully visible. - select different entries from the color list observe: the buttom to the right doesn't change its icon. Works on Motif and Windows. | resolved fixed | 061b74d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TabItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-27T19:08:59Z" | "2002-05-24T14:20:00Z" |
17,832 | Bug 17832 Vertical Scrollbar clipped | Eclipse F1 Synchronize a file that has outoging changes. Select the file so that the Java Source Compare is visibile. There is a scrollbar on the far right hand side of the Java Source Compare and it is clipped. I am not sure if SWT is giving the wrong answer for the width of teh scrollbar or if Java Source Compare is just guessing the width. | resolved fixed | 262a2e4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Scrollable.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-27T17:56:31Z" | "2002-05-24T19:53:20Z" |
17,305 | Bug 17305 Search Dialog: Java Page clipped | F1 Suse 8.0, KDE 3.0, GTK 2 - create Java file - open in editor - open search dialog observe: dialog is clipped. Works well under Windows and Motif | resolved fixed | ee5b8a8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-27T16:02:10Z" | "2002-05-23T13:20:00Z" |
16,995 | Bug 16995 HoverHelp example does not create ON_TOP Shell for tooltips | The shell created to show the tooltip does not have the ON_TOP style. It causes the main window to loose focus when the tooltip is shown. | resolved fixed | cc651b7 | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/hoverhelp/HoverHelp.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-23T14:08:49Z" | "2002-05-22T17:53:20Z" |
16,458 | Bug 16458 Trying to free a GdkEvent: pointer=NULL | ControlExample prints many warnings: gdk_event_free: assertion `event != NULL' failed | resolved fixed | c49ce2d | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-21T17:56:26Z" | "2002-05-20T18:40:00Z" |
16,576 | Bug 16576 ACC: Checkboxes in lists are not real checkboxes | Options in the list look like checkboxes but the aren't real checkboxes. MS Inspect identfies the Role as 'list item' instead of checkbox. The Filters List page contains a Table component, and one of the columns cell editor is a CheckboxCellEditor; (this is similar with the Task List view, where the 'completed' column cell editor is a CheckboxCellEditor) With the current CheckboxCellEditor implementation there's no way to add a real checkbox component into the table; you have to specify two icons to be used by the enable/disable state | resolved fixed | cafda17 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-21T16:00:02Z" | "2002-05-21T14:06:40Z" |
16,245 | Bug 16245 CTabFolder - tooltips and arrowing around | CTabfolder should move by a full page when using the arrow keys. The tooltips on CTabFolder show stay around when you move inside the tab area - just like in toolbars. | resolved fixed | b2a57ac | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-21T00:01:39Z" | "2002-05-17T12:53:20Z" |
11,516 | Bug 11516 ViewForm should override computeTrim | In the current ViewForm implementation, it is not possible to calculate the required bounds rectangle for a desired client area since computeTrim is not overridden. It seems to me that, in general, any control that provides a getClientArea implementation should also override computeTrim. This also affects the fix for 10025, where minimum dimension calculations depend on computeTrim to correctly account for trimmings. | resolved fixed | 8e5c97c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/ViewForm.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-20T23:56:16Z" | "2002-03-18T05:40:00Z" |
15,466 | Bug 15466 ImageData.blit throws ArrayIndexOutOfBounds Exception | I'm running the M5 version of SWT and I get the ArrayIndexOutOfBounds exception when creating an Image with a large ImageData. This testcase passes when run with the version of swt that shipped with eclipse 1.0. Here's my test case : import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.ImageData; import org.eclipse.swt.graphics.PaletteData; import org.eclipse.swt.graphics.RGB; import org.eclipse.swt.widgets.Display; public class SwtTestCase { public static void main(String[] args){ SwtTestCase b = new SwtTestCase(); ImageData a = new ImageData(100000, 90, 1, b.createPalette()); try{ Image c = new Image(Display.getDefault(), a); } catch (ArrayIndexOutOfBoundsException e){ System.out.println("Array Index out of Bounds case by Image constructor"); e.printStackTrace(); } System.out.println("Finished"); } private PaletteData createPalette(){ try{ RGB[] tempRGB = {new RGB(255,255,255), new RGB(0,0,0)}; return (new PaletteData(tempRGB)); } catch (Exception e){ System.out.println(e); } return null; } } And here's my output for the M5 Version of swt : Array Index out of Bounds case by Image constructor java.lang.ArrayIndexOutOfBoundsException Stack trace: java/lang/Throwable.<init>()V java/lang/Throwable.<init>(Ljava/lang/String;)V java/lang/ArrayIndexOutOfBoundsException.<init>(Ljava/lang/String;)V org/eclipse/swt/graphics/ImageData.blit(I[BIIIIIII[B[B[BI[BI[BIIIIIII[B[B [BZZ)V org/eclipse/swt/graphics/Image.init (Lorg/eclipse/swt/graphics/Device;Lorg/eclipse/swt/graphics/Image;Lorg/ec lipse/swt/graphics/ImageData;)[I org/eclipse/swt/graphics/Image.init (Lorg/eclipse/swt/graphics/Device;Lorg/eclipse/swt/graphics/ImageData;)V org/eclipse/swt/graphics/Image.<init> (Lorg/eclipse/swt/graphics/Device;Lorg/eclipse/swt/graphics/ImageData;) V SwtTestCase.main([Ljava/lang/String;)V Finished And here's the output for swt 1.0 : Finished | resolved fixed | ac75cd4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/ImageData.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-20T19:22:19Z" | "2002-05-07T19:33:20Z" |
15,513 | Bug 15513 CCombo.setTooltipText() doesn't work | CCombo.setTooltipText() doesn't work at all. How about the following implementation ? CCombo.setTooltipText(String text) { text.setTooltipText(text); arrow.setTooltipText(text); } | verified fixed | 1c11fbf | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-17T14:33:34Z" | "2002-05-08T12:13:20Z" |
15,989 | Bug 15989 Coolbar walkback when adding item | 1. Run the attached test case. 2. Move the Script coolitem and the launch coolitem down to a new row (so that there are two rows). 3. Press the Add button. Walkback. Only happens on Linux. | resolved fixed | 9d056f9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-17T02:51:54Z" | "2002-05-14T23:46:40Z" |
15,172 | Bug 15172 focus not on text field for OpenTypeDialog | This happens on Linux-Motif, but not on w2k with 20020502: When the OpenTypeDialog comes up, the 'Show in Type Hierarchy' checkbox gets the focus, instead of the text field. I haven't touched OpenTypeDialog for a long time. | resolved fixed | 1aa7e60 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-16T01:03:43Z" | "2002-05-03T07:13:20Z" |
12,398 | Bug 12398 Accessibility problems | 20020326, Win2K When I launch the Help view, the tab key does not actually do anything. I need to first click on one of the "live" areas before it starts working (eg. the banner with the tool buttons, the nav frame or the content frame. We should be starting the Help view in a way that can be immediately navigated via the keyboard. | resolved wontfix | 321e787 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/ole/win32/IOleInPlaceObject.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-15T16:37:05Z" | "2002-03-27T23:00:00Z" |
15,224 | Bug 15224 FileDialog does not return the file selected on PocketPC | The FileDialog.open() method does not return the path of the selected file on PocketPC. When I run the following testcase, I type "bob.txt" in the name field of the dialog and select some folder from the list. After pressing ok, the open() method returns a "null" value instead of "bob.txt". --- cut here --- import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class TestSwtFileDialog { public static void main(String[] arguments) { new TestSwtFileDialog().run(); } public void run() { Display display = new Display(); Shell shell = new Shell(display); shell.setText(getClass().getName()); shell.setLayout(new FillLayout()); FileDialog dialog = new FileDialog(shell, SWT.SAVE); dialog.setText("Save File Title"); String result = dialog.open(); System.out.println(result + " chosen"); } } ---- cut here ----- | resolved fixed | 2f3d1b8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-14T22:37:15Z" | "2002-05-03T18:20:00Z" |
15,868 | Bug 15868 StyledText - Put back double buffering | Changes that have been made in Eclipse have improved scrolling but typing still remains flashy due to unnecessary style setting. Put double buffering back in in all instances. Felipe checked performance and gave the okay on it. | resolved fixed | b1a0e6d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-13T19:22:23Z" | "2002-05-13T17:13:20Z" |
15,705 | Bug 15705 Editor with focus, tab text disappears sometimes | WinMe, large fonts setting, 1280x1024, True color (32 bit) Strangely, editor tabs with focus for files which start with the letter "W" disappear when there are many editors.] Selecting another tab makes the text visible. This is only true for a few files - this isn't a textcolor = backgroundcolor problem. | resolved fixed | 092b285 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-10T21:05:03Z" | "2002-05-10T03:06:40Z" |
15,686 | Bug 15686 Copying content in more than format to Clipboard only registers one | build 20020502 -Run org.eclipse.swt.examples.texteditor.TextEditor -type some text -select the text and copy it to the clipboard -paste the text into notepad ->this works so there must be non RTF text in the clipboard -in Wordpad check the available clipboard formats using Edit-Paste Special ->Only RTF shows up, we put RTF and unformatted text into the clipboard. This works in SWT build 2012b and is broken in build 2013. | resolved wontfix | 900c6e2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-10T16:30:55Z" | "2002-05-09T21:33:20Z" |
15,637 | Bug 15637 Cheese in Table when setting column image | Eclipse 20020508 Linux Motif Run the folloiwng example. When you add an image to the header you get cheese. (Note: You have to supply your own image, use one that is bigger than the column heaer size.) And similarly when you remove the image. public static void main(String[] args) { Display display = new Display(); final Image image = new Image(display, _Scrapbook.class.getResourceAsStream ("image3.bmp")); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Table table = new Table(shell, SWT.BORDER); table.setHeaderVisible(true); final TableColumn column1 = new TableColumn(table, SWT.NONE); column1.setText("Column 1"); final TableColumn column2 = new TableColumn(table, SWT.NONE); column2.setText("Column 2"); final TableColumn column3 = new TableColumn(table, SWT.NONE); column3.setText("Column 3"); for (int i = 0; i < 100; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText("item " + i); } column1.pack(); column2.pack(); column3.pack(); Button b = new Button(shell, SWT.PUSH); b.setText("Change Image"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { Image image2 = column2.getImage(); if (image2 == null) { column2.setImage(image); } else { column2.setImage(null); } } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } image.dispose(); display.dispose(); } | resolved fixed | 76715a3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TableColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-10T16:23:40Z" | "2002-05-09T16:00:00Z" |
15,643 | Bug 15643 Cheese in Table when changing font | Eclipse 20020508 Windows 2000 Run the following example. Note the cheese in the header. Same thing happens when setting a small font. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Table table = new Table(shell, SWT.BORDER); table.setHeaderVisible(true); FontData fontData = table.getFont().getFontData()[0]; fontData.setHeight(16); //fontData.setHeight(4); final Font largeFont = new Font(display, fontData); final TableColumn column1 = new TableColumn(table, SWT.NONE); column1.setText("Column 1"); final TableColumn column2 = new TableColumn(table, SWT.NONE); column2.setText("Column 2"); final TableColumn column3 = new TableColumn(table, SWT.NONE); column3.setText("Column 3"); for (int i = 0; i < 100; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText("item " + i); } column1.pack(); column2.pack(); column3.pack(); shell.open(); table.setFont(largeFont); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } largeFont.dispose(); display.dispose(); } | resolved fixed | 6cc1e8b | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-10T15:46:54Z" | "2002-05-09T16:00:00Z" |
12,360 | Bug 12360 TraverseEvent e.doit doesn't turn off on TabFolder | Build: 20020321 Description: When hooking a TraverseListener onto a control on a TabFolder, setting e.doit = false turns off the default behaviour on Windows, but not on Linux. This behaviour is found only when there is a TabFolder as a recursive parent of the control. If the same controls are built on a Composite or directly on a shell, setting e.doit = false will turn off the default behaviour. To see the behaviour: 1. Run the following sample code. 2. Click on the "Add" button. "Hit me" will be printed to the console. 3. Click on the combo. 4. Hit enter on the keyboard. 5. On Windows, nothing will happen. On Motif, "Hit me" will be printed. import org.eclipse.swt.widgets.*; import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.events.*; public class DoitBug { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); TabFolder tabFolder = new TabFolder (shell, SWT.NULL); tabFolder.setLayout (new GridLayout ()); Combo marginRight = new Combo (tabFolder, SWT.NONE); marginRight.addTraverseListener (new TraverseListener () { public void keyTraversed (TraverseEvent event) { if (event.detail == SWT.TRAVERSE_RETURN) { event.doit = false; } } }); Button add = new Button (tabFolder, SWT.PUSH); add.setText ("Add"); add.addSelectionListener(new SelectionAdapter () { public void widgetSelected(SelectionEvent e) { System.out.println ("Hit me"); } }); shell.setSize (200,200); shell.open(); while (! shell.isDisposed()) { if (! display.readAndDispatch()) display.sleep(); } } } | resolved fixed | 6f47264 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-06T22:40:25Z" | "2002-03-27T17:26:40Z" |
15,208 | Bug 15208 StyledText - text change even mechanism poorly documented | build 20020430 The TextChangeListener doc is incomplete and misleading. The class doc says that "It is not intended for use by users of the StyledText widget or implementors of StyledTextContent". This is misleading because implementors of StyledTextContent need to invoke the apropriate listener method. So they need to use the TextChangeListener. Should change to ...should not be implemented by users of StyledText... etc. The textChanged and textSet methods are not documented at all. The doc for StyledTextContent.addTextChangeListener, replaceTextRange and setText is incomplete. The last two methods should mention which methods the text events should be sent to. This should be pretty obvious when looking at the TextChangeListener but we may just want to mention it explicitly. | resolved fixed | 9b5ecf1 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextContent.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TextChangeListener.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TextChangedEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TextChangingEvent.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-06T14:49:45Z" | "2002-05-03T15:33:20Z" |
14,935 | Bug 14935 EmulatedWidgetTests fail on Linux | build 20020426 There are a number of unexpected errors and failures when running org.eclipse.swt.tests.junit.EmulatedWidgetTests. One is related to Table.remove(int[]) and another to TableItem.getImageBounds (). The rest are in inherited tests of Widget and Control. I did not try running AllTests. | resolved fixed | 30be2a8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-03T21:55:58Z" | "2002-04-30T15:20:00Z" |
15,115 | Bug 15115 removeColumn are broken in Emulated Table | Knut, I was playing with the your TableInteractiveTest this morning. the tests removeColumn and removeLastColumn are complete broken, removing a single column leads the table in a irreversible bad state (lost of cheeses). The problem is the method removeColumnVisual in Table. It's adding plus one for the index of first column to be shift. It's a bug because at this step the column been removed was already remove from the vector. So, changing the line: moveColumns(column.getIndex() + 1, columnWidth * -1); by: moveColumns(column.getIndex(), -columnWidth); is enough to fix this bug. Here is the patch: Index: Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java =================================================================== RCS file: /home/eclipse/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java,v retrieving revision 1.16 diff -u -r1.16 Table.java --- Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java 1 May 2002 20:57:41 -0000 1.16 +++ Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java 2 May 2002 15:58:12 -0000 @@ -1902,7 +1902,7 @@ int columnWidth = column.getWidth(); // move following columns to the left - moveColumns(column.getIndex() + 1, columnWidth * -1); + moveColumns(column.getIndex(), -columnWidth); redraw(); getHeader().redraw(); } | resolved fixed | 7eff1c9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-03T19:27:01Z" | "2002-05-02T17:20:00Z" |
14,880 | Bug 14880 Column resize problems/cheese | build 20020426 Run the test case below. Start a column resize and move the column resize indicator (the black vertical line)one pixel to the right of the old column column grid line. Release the mouse and observe: a) the column isn't resized even though the resize indicator leads me to believe it will be one pixel wider b) the resize indicator is not erased On a related note: When I release the mouse/column resize indicator directly on the column grid line the column is resized smaller. It looks like somewhere something is off by one. | resolved fixed | c38439f | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-01T20:57:41Z" | "2002-04-29T19:53:20Z" |
13,725 | Bug 13725 Revert is much slower than close and re-open in java editor. | 1) Start by opening an editor on the file org.eclipse.swt.custom.StyledText.java from the source folder "Eclipse SWT Custom Widgets" in the project "org.eclipse.swt" in the open source repository. 2) Now, select the end of the first line, and hit a space character so that the file has been marked dirty. From this point, on my (fast) machine at home, it takes about 8 seconds to perform the following steps: - click on the close box in the editor tab. - answer "no" to the "do you want to save changes" dialog - double click on the file in the navigator to re-open it. However, if I repeat steps 1) and 2), and then select "Revert" from the pop up menu in the editor it takes > 15 seconds to replace the contents of the window with the original. This seems odd, since reverting the file contents ought not to be more than closing and re-opening the file. | resolved fixed | 7860723 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/DefaultLineStyler.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-05-01T20:35:14Z" | "2002-04-12T22:20:00Z" |
12,952 | Bug 12952 Alt+{char} gets inserted as text | Build 20020404 - new text file - type Alt+A - 'A' gets inserted into the text Alt combinations should not get inserted. They are used for menu mnemonics and accelerators, and should have no effect if there is no corresponding mnemonic or accelerator. (Actually, it's not recommended to use Alt combinations as accelerators, but it's possible). | resolved fixed | 9cc45c2 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-30T17:47:36Z" | "2002-04-07T03:26:40Z" |
12,811 | Bug 12811 TableColumns don't pack properly | Build: 20020319 When calling pack() on a TableColumn, the columns are packed smaller than the preferred size. The label on the column header cannot be fully seen. This does not occur on Windows. Sample code: import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.layout.*; public class PR { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout (new GridLayout ()); Table table = new Table (shell, SWT.MULTI); table.setLinesVisible (true); table.setHeaderVisible (true); for (int i = 0; i < 10; i++) { TableItem item = new TableItem (table, 0); TableColumn column = new TableColumn (table, 0); column.setText ("Column " + i); column.pack (); } shell.pack (); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 177ab7a | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-29T20:44:01Z" | "2002-04-04T17:06:40Z" |
11,587 | Bug 11587 BIDI:Java editor and Text editor: User Interface issues. | Problem was found in Eclipse R2, build 20020214. User Interface Issues The UI issues can be divided in 3 categories: * no setting of the keyboard language when needed * bad positioning of the caret * no visual feedback for boundary condition They apply to both the Java and the Text editors. 1. No setting of keyboard language after some operations There are a number of cases where the keyboard language should be set, and this does not happen. 1a) After removing a character with Del, the keyboard language must be set corresponding to the removed character (like it happens after skipping a character with Left or Right arrows). 1b) After removing a character with Backspace, the keyboard language must be set corresponding to the removed character (like it happens after skipping a character with Left or Right arrows). 1c) After skipping to the next or previous word (using Ctrl+Right/Left arrow), the keyboard language must be set corresponding to the first character of the word. 2. Bad caret positioning after some operations There are a number of cases where the caret is not positioned where it should. 2a) When typing data Rule: after typing a character, the caret must be adjacent to the last typed character. On an empty line, type DEF123 This is displayed (correctly) 123FED Note that while typing the number, the caret is displayed (correctly) on the right side of the last digit entered. Now start with a line containing abcxyz Put the cursor between c and x, type DEF123 displaying abc123FEDxyz The caret behaves like before (this is good). Now start with a line containing DEFGHI It is displayed (correctly) IHGFED Put the caret between G and F, type 123 The caret behaves differently: it always appear on the left side of the leftmost digit. It should appear as before, on the right side of the last digit entered. 2b) After Right arrow Rule: after pressing left or right arrow, the caret must be adjacent to the character skipped, after it for Right arrow, before it for Left arrow. Note that after is on the right side for a character in a LTR segment and on the left side for a character in a RTL segment; before is on the left side for a character in a LTR segment and on the right side for a character in a RTL segment. Start with a line containing abcDEFGhiJKL123MNO456xyz displayed as abcGFEDhi456ONM123LKJxyz Start from the home position, and press Right arrow repeatedly. The rule is respected, except - after skipping over L: the caret should stand on the left side of L, but it stands on the left side of 1 - after skipping over 3: the caret should stand on the right side of 3, but it stands on the right side of M Note that Left arrow conforms to the rule in all cases. 2c) After Backspace Rule: after pressing Backspace, the caret must stand at the location of the removed character. Start with a line containing abcDEFGhiJKL123MNO456xyz displayed as abcGFEDhi456ONM123LKJxyz Case 1: Put the caret between x and y, press Backspace: the x is removed and the caret stands to the left of y (correct). Press Backspace again: 6 is removed (correct), but the caret still stands to the left of y; it should stand to the right of 5. Case 2: Put the caret between 4 and 5, press Backspace: the 4 is removed and the caret stands to the left of 5 (correct). Press Backspace again: O is removed (correct), but the caret still stands to the left of 5; it should stand to the left of N. Case 3: put the caret between M and N, press Backspace: the M is removed and the caret stands to the right of N (correct). Press Backspace again: the 3 is removed (correct), but the caret still stands to the right of N; it should stand to the right of 2. 2d) After Del Rule: after pressing Del, the caret must stand at the location of the removed character. Start with a line containing abcDEFGhiJKL123MNO456xyz displayed as abcGFEDhi456ONM123LKJxyz Case 1: Put the caret between K and L, press Del: the L is removed (correct) but the caret stands on the left of 1; it should stand on the left of K. Case 2: Put the caret between 2 and 3, press Del: the 3 is removed (correct) but the caret stands on the right of M; it should stand on the right of 2. Case 3: Put the caret between 5 and 6, press Del; the 6 is removed and the caret stands on the right of 5 (correct). Press Del again: the x is removed (correct), but the caret still stands to the right of 5; it should stand to the left of y. 2e) After Next/Previous Word Rule: after skipping to the Next or Previous word (using Ctrl+Right/Left arrow), the caret should precede the first logical character of the word. Start with a line containing abc def GHI JKL MNO pqr stu displayed as abc def ONM LKJ IHG pqr stu When starting on the left and pressing Ctrl+Right arrow repeatedly, the caret should stop on the left of d, then on the right of G, then on the right of J, then on the right of M, then on the left of p, then on the left of s. When starting on the right and pressing Ctrl+Left repeatedly, the caret should stop at the same positions in reverse order. Practically, Ctrl+Left behaves as required, but Ctrl+Right misbehaves at the transition from a LTR word to a RTL word: stops on the left of O instead of the right of G. 3. No visual feedback for boundary condition When the caret position is remote from the next logical character, some visual indication should be given. Example: a line contains abcxyz which is displayed abcxyz Put the caret between c and x and type DEF, the data is now abcDEFxyz displayed abcFEDxyz, and the caret stands to the left of F, while the next logical character (the one which will be deleted if we press Del) is x, which is visually remote from the caret position. We call that a boundary condition. It is useful to provide the user with an indication of boundary conditions: this could be done using the shape of the caret, its color, its blinking rate, or any other method (Java LayoutText widget displays 2 carets on boundary condition). | resolved fixed | 14d8d0d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextBidi.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-29T13:38:24Z" | "2002-03-18T19:33:20Z" |
14,813 | Bug 14813 ClassCastException creating a new Run configuration | In order to run or debug a class, one creates a configuration. Clicking around in the "New Configuration" dialog, the workbench will terminate with a ClassCastException. | resolved fixed | 1489493 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-28T03:44:10Z" | "2002-04-28T05:00:00Z" |
14,528 | Bug 14528 Problem with Label.computeSize. | Here is an example showing that computeSize is not returning a size big enough to fit the text. If SWT.DEFAULT is used it shows the text but if 450 is used instead of SWT.DEFAUT then part of the text is cut out. ** Run the example. All 5 lines show appear. import org.eclipse.swt.widgets.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.events.SelectionListener; import org.eclipse.swt.graphics.Point; public class Explorer { public static void main(String args[]) { String line2 = "aHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH HHHHHHHHb"; Display display = new Display(); Shell shell = new Shell(display); Label label = new Label(shell,SWT.WRAP | SWT.BORDER); label.setText("line 1\n" + line2 + "\nline3\n\nline5"); // Point size = label.computeSize(SWT.DEFAULT,SWT.DEFAULT); Point size = label.computeSize(450,SWT.DEFAULT); shell.setBounds(100,100,size.x + 20,size.y + 100); System.out.println("Shell " + shell.getBounds()); label.setBounds(10,10,size.x,size.y); System.out.println("Label " + label.getBounds()); shell.open(); System.out.println("Shell " + shell.getBounds()); System.out.println("Label " + label.getBounds()); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } } | resolved fixed | febbfc2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-25T22:26:36Z" | "2002-04-24T14:53:20Z" |
14,047 | Bug 14047 StyledText - inefficient redraw during text change with word wrap | build 20020416 Appending N lines to StyledText in word wrap mode results in N redraws of the entire client area. This should at a maximum only be one redraw for each visible line. Run the test case below to reproduce. Add the following line to StyledText#performPaint to see the redraws occurring: System.out.println("lineCount " + lineCount + ", paintY " + paintY + ", renderHeight " + renderHeight); | resolved fixed | 69ee1a5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-22T23:28:44Z" | "2002-04-17T21:46:40Z" |
13,826 | Bug 13826 Performance issue in Table.RemoveAll() | Method org,eclipse.swt.widgets.Table.removeAll() removes items from the beginning of a Vector, but it should remove the items from the end instead since Vector is shuffling the items all around the place when removed from the top. This goes for the rest of places where all items are removed from a vector. | resolved fixed | 7a8ca88 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-22T21:10:46Z" | "2002-04-15T19:46:40Z" |
11,935 | Bug 11935 Can't Ctrl+Tab out of PDE Editor's dependencies page | Build: 20020319 Steps: 1. Open a plugin.xml file (it opens in the Plugin Manifest editor) 2. Go to the Dependencies page 3. Set focus on the "Find:" combo box under the heading Dependency Status 4. Press Tab or Ctrl+Tab You can't tab out of the combo box except by backwards-tabbing with Shift+Tab. | verified fixed | e7adc81 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-18T14:39:49Z" | "2002-03-20T16:00:00Z" |
11,515 | Bug 11515 computeTrim and getClientArea are inconsistent in CTabFolder | According to SWT documentation, given a desired client area, computeTrim should return a bounding rectangle required to produce that client area. Bounding rectangle height taken into account in CTabFolder.getClientArea (line 613) is greater one row of pixels than the one calculated in CTabFolder.computeTrim (line 348). This is inconsistent. It also affects the patch to fix 10025. The workaround is to manually correct the bounds returned by computeTrim. | resolved fixed | 4fc636c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-17T13:22:42Z" | "2002-03-18T05:40:00Z" |
13,194 | Bug 13194 usability: editor tabs | 20020409 1. open a few editors - so that the < > arrows are visible 2. start closing the editors from the right side note, the arrows are still visible and, when you get down to 1 visible tag, you might think only 1 editor is open, while there's possibly many it should scroll | resolved fixed | ab3a0e2 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-16T20:30:42Z" | "2002-04-10T12:00:00Z" |
12,772 | Bug 12772 Support for 2.0 startup sequence | null | resolved fixed | b31da3c | ["bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-16T20:07:46Z" | "2002-04-04T14:20:00Z" |
13,639 | Bug 13639 Controls do not appear in tool items | Eclipse 20020409 Linux motif This bug appears for any control set into a tool item. If you uncomment the line "ccombo.moveAbove (null);" the combo widget appears in the toolbar otherwise all you see is the separator. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); final ToolBar toolBar = new ToolBar(shell, SWT.FLAT | SWT.BORDER); ToolItem ti = new ToolItem(toolBar, SWT.PUSH); ti = new ToolItem(toolBar, SWT.SEPARATOR); CCombo ccombo = new CCombo(toolBar, SWT.NONE); // Combo ccombo = new Combo(toolBar, SWT.NONE); for (int i = 0; i < 10; i++) { ccombo.add("item "+i); } ccombo.pack(); ti.setControl(ccombo); ti.setWidth(100); toolBar.setLocation(10, 10); toolBar.pack(); //BUG - move above //ccombo.moveAbove (null); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | d50c920 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-12T18:39:28Z" | "2002-04-12T14:00:00Z" |
13,432 | Bug 13432 OleControlSIte doesn't propagate WM_SETFOCUS message to an ActiveX control | OleControlSite seems not to propagate WM_SETFOCUS message to its child ActiveX control. Try following steps: 1. Open an editor which hosts an ActiveX control by using SWT, 2. Set keyboard focus to the editor 3. Open eclipse's preference dialog 4. Close the dialog Then keyboard focus isn't restored to the ActiveX control. OleControlSite's(Actually Composite's) setFocus() method gets called, but it doesn't propagate WM_SETFOCUS message to the child ActiveX control. | resolved fixed | 7942368 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-11T14:38:34Z" | "2002-04-10T20:20:00Z" |
11,182 | Bug 11182 Property Sheet does not allow editing when there is only one property | Scenario: 1) Create a PDE plug-in project. 2) Switch to 'Extensions' page. 3) Create a new 'Action Set' extension. 4) Select the extension and create new menu. 5) Select the menu and create a new separator. 6) Select the separator and try to change its default name. Property sheet refuses to allow editing of the name. All other objects that have more than one property can be edited as before. This is a major problem for PDE because it makes the manifest editor useless for all the extension elements that have only one property. | resolved fixed | e8fa258 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-09T17:21:49Z" | "2002-03-12T16:20:00Z" |
12,573 | Bug 12573 Table sends selection event twice when in TabFolder | Build 20020328 I had a hard time believing it too. When a Table is created inside a TabFolder, it sends the selection event twice. If it's not in a TabFolder, it only sends it once. The following code shows the problem. Changing the selection generates 2 lines of console output. If you change the Table's parent to be shell, it only generates 1. The lines commented out would normally be used, but aren't needed to show the problem. import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class TableTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(400, 300); TabFolder tabFolder = new TabFolder(shell, SWT.NONE); tabFolder.setLayout(new FillLayout()); // TabItem tabItem1 = new TabItem(tabFolder, SWT.NONE); // tabItem1.setText("Tab 1"); final Table table = new Table(tabFolder, SWT.NONE); // tabItem1.setControl(table); table.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println(table.getSelectionCount() + " items selected"); } }); for (int i = 0; i < 10; ++i) { TableItem item = new TableItem(table, SWT.NONE); item.setText("Item " + i); } shell.setVisible(true); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } | resolved fixed | 090d370 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-04-09T15:54:06Z" | "2002-04-01T22:26:40Z" |
11,498 | Bug 11498 StyledText does not always redraw when the line style changes | Build 20020312 In the following code, we attempt to change the color of the line that contains the caret while the caret is moving. To see the problem: 0) use the arrow keys to move the caret to another line - line style listener called, line color is changed 1) press the button - the widget redraws, showing where the line should be Knut: We belive that the line color background should be changed when the callback is called. Also, why is the callback called 3 times for every caret move? import org.eclipse.swt.SWT; import org.eclipse.swt.custom.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.*; public class StyledBug { public static void main (String [] args) { Shell shell = new Shell(); shell.setText("Avocado Bug Test"); final StyledText text = new StyledText(shell,SWT.BORDER|SWT.V_SCROLL|SWT.H_SCROLL); text.setBounds(10,10,480,560); final Color SWT_COLOR_AVOCADO = new Color(shell.getDisplay(), 225, 235, 224); text.addLineStyleListener(new LineStyleListener(){ public void lineGetStyle(LineStyleEvent event){ int line = text.getLineAtOffset(event.lineOffset); int start = text.getOffsetAtLine(line); int end = start + event.lineText.length(); int p = text.getCaretOffset(); System.out.println("lineGetStyle"); if( p >= start && p <= end){ event.styles = new StyleRange[1]; StyleRange avacadoStyle = new StyleRange (); avacadoStyle.start = start; avacadoStyle.length = end; avacadoStyle.background = SWT_COLOR_AVOCADO; event.styles[0] = avacadoStyle; } } }); text.setEditable(true); String words[] = {"public","import","class","interface","try", "int","extends","throws","implements","double","float", "felipe","steveo","silenio","swt","veronika", "test","oti","blabla","13241234","style","helloworld"}; int length = words.length; for (int i = 1; i < 500; i++) { text.append(words[ (int) ( Math.random() * words.length ) ] + " "); if(i%9 == 0) text.append("\n"); } Button button = new Button(shell,SWT.PUSH); button.setText("Redraw"); button.setBounds(260,580,60,20); button.addMouseListener(new MouseAdapter(){ public void mouseDown(org.eclipse.swt.events.MouseEvent e){ text.redraw(); text.setFocus(); } }); shell.setSize(520,638); shell.open(); Display display = shell.getDisplay (); while (!shell.isDisposed ()) if (!display.readAndDispatch ()) display.sleep (); shell.dispose(); SWT_COLOR_AVOCADO.dispose(); } } | resolved fixed | c733487 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-03-26T16:02:14Z" | "2002-03-15T22:06:40Z" |
11,204 | Bug 11204 Some ActiveX control can not accept key input. | Some ActiveX control can not accept key input. The reason is : OleFrame.translateleOleAccelerator() calls ActiveX control's TranslateAccelerator(). Then the control calls OleControlSite.TranslateAccelerator(). OleControlSite.TranslateAccelerator() returns error, since it is not implemented. The control's TranslateAccelerator() returns the same error code to OleFrame.translateOleAccelerator(). In the method, the return code is compared with S_FALSE like: private boolean translateOleAccelerator(MSG msg) { if (objIOleInPlaceActiveObject == null) return false; return objIOleInPlaceActiveObject.TranslateAccelerator(msg) != OLE.S_FALSE; } Where the method return *true* for error code. translateOleAccelerator should be return objIOleInPlaceActiveObject.TranslateAccelerator(msg) == OLE.S_OK; | resolved fixed | b2c00c9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-03-14T15:32:06Z" | "2002-03-12T19:06:40Z" |
10,525 | Bug 10525 'Free' TableViewer column cannot be edited | When a TableViewer instance is created, one column is created for free if none is specified. This works well and handles the resizing of the table, but the code in 'activateCellEditor' ignores it when there are no explicitly created columns. Please give me a heads up when the fix is released so that I can test my code before the integration build. Otherwise, all PDE editors will be broken (cannot rename entries in lists). | closed fixed | f5bee01 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableEditor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-03-04T19:27:17Z" | "2002-02-28T21:00:00Z" |
10,426 | Bug 10426 Esc traverse does not go up hierarchy | Build 20020226 I'm trying to hook Esc so that it activates the current editor. (I tried doing this using an accelerator a while back, but that doesn't work since it steals it from other places, e.g. renaming a file). I'm now trying to use a traverse listener on the shell, however it never gets notified of Esc. It looks like the traverse handling for Esc does not go up the parent chain. Is this as intended or a bug? Is there any way for me to hook Esc from a parent widget, yet still have children handle it if they need to? | resolved fixed | 83e8870 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-03-01T17:13:32Z" | "2002-02-27T20:00:00Z" |
10,002 | Bug 10002 Detection of CDE as active WM is platform-specific | SWT code currently determines the active desktop by looking for defined "atoms" or properties that are associated with the root window. The atom that Eclipse now uses to identify CDE is DTWM_IS_RUNNING. This happens in Program.getDesktop(). CDE on AIX does not define this property. It would be nice to have a string that AIX, HP-UX, and Solaris have in common. Kevin Cornell and I have discussed using _DT_SM_PREFERENCES. which appears to be a defined property for all three platforms. | resolved fixed | 1839d9b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Program/motif/org/eclipse/swt/program/Program.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-02-28T13:38:22Z" | "2002-02-19T17:33:20Z" |
56,012 | Bug 56012 wrong import statement generation while using the extends attribute of the page directive | null | resolved fixed | 42056be | ["java/org/apache/jasper/compiler/PageInfo.java", "java/org/apache/jasper/compiler/Validator.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-18T21:24:37Z" | "2014-01-15T12:46:40Z" |
56,029 | Bug 56029 Ternary operator doesn't work as expected inside attributes in jspx pages | null | resolved fixed | b430e29 | ["java/org/apache/jasper/compiler/ELParser.java", "test/org/apache/jasper/compiler/TestELParser.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-18T19:33:19Z" | "2014-01-18T18:33:20Z" |
55,943 | Bug 55943 Provide a way prevent looking at the System classloader before the webapp classloaders | null | resolved fixed | f28800c | ["java/org/apache/catalina/loader/WebappClassLoader.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-17T15:16:35Z" | "2014-01-01T15:26:40Z" |
56,025 | Bug 56025 Order of invocation of method of ServerEndpointConfig.Configurator | null | resolved fixed | 11b1e83 | ["java/org/apache/tomcat/websocket/server/UpgradeUtil.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-17T11:50:11Z" | "2014-01-17T14:46:40Z" |
56,010 | Bug 56010 JspFactory.getPageContext with JspWriter.DEFAULT_BUFFER throws IllegalArgumentException | null | resolved fixed | 48650dd | ["java/org/apache/jasper/runtime/PageContextImpl.java", "test/org/apache/jasper/runtime/TestPageContextImpl.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-16T14:21:17Z" | "2014-01-15T07:13:20Z" |
55,996 | Bug 55996 Async context does not timeout with HTTP NIO connector | null | resolved fixed | 553ad39 | ["java/org/apache/tomcat/util/net/SocketWrapper.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-14T17:58:45Z" | "2014-01-13T10:46:40Z" |
55,995 | Bug 55995 java.lang.NullPointerException at org.apache.jasper.servlet.JspCServletContext.getResource(JspCServletContext.java:344) | Null pointer exception when running JSPC from a Shell Script. JspCServletContext.java:344 /** * Return a URL object of a resource that is mapped to the * specified context-relative path. * * @param path Context-relative path of the desired resource * * @exception MalformedURLException if the resource path is * not properly formed */ @Override public URL getResource(String path) throws MalformedURLException { if (!path.startsWith("/")) throw new MalformedURLException("Path '" + path + "' does not start with '/'"); TldCache.java:124 private long[] getLastModified(TldResourcePath tldResourcePath) { long[] result = new long[2]; result[0] = -1; result[1] = -1; try { URL url = servletContext.getResource(tldResourcePath.getWebappPath()); /usr/java/jdk1.7.0_45/bin/java -classpath :/home/tomcat/apache-tomcat-8.0.0-RC10/lib/catalina-storeconfig.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-websocket.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-i18n-es.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/catalina-tribes.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/catalina-ha.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-i18n-ja.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/jsp-api.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-util.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-jni.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/jasper.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/websocket-api.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/ecj-4.3.1.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-i18n-fr.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-api.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-coyote.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/servlet-api.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/jasper-el.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/catalina.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-dbcp.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-jdbc.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/annotations-api.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-util-scan.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/catalina-ant.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/el-api.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/lib/tomcat-spdy.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/bin/tomcat-juli.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/bin/bootstrap.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/bin/commons-daemon.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/webapps/examples/WEB-INF/lib/jstl.jar:/home/tomcat/apache-tomcat-8.0.0-RC10/webapps/examples/WEB-INF/lib/standard.jar:/home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/lib/ant-1.6.5.jar org.apache.jasper.JspC -d /home/java/source/HEAD/work/tomcat80 -v -l -uriroot /home/java/source/HEAD/work/jsp_compile_shared /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/dialog/qbAxesDlg.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/dialog/qbManualGecodingDlg.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/fmtdlg.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/index.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/joindlg.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/producer.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/simplefilter.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/selectvaluedlg.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/binddowsTestView.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/variableeditordlg.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/filterprompteditor.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/ajax_response.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/fontdlg.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/join_fields.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/tree_component.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/waiting_banner.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/folderblock/BID_FolderBlockInit.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/folderblock/BID_FolderBlockBoot.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/BID_EmptyContent.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/xml/BID_UrlProperties.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/xml/BID_IBFSpathToHrefs.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/xml/BID_xmlresponse.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/xml/BID_statusResponse.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/favorites/BID_favorites_tree.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/favorites/BID_FavoritesBlockBoot.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/favorites/BID_FavoritesBlockInit.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/favorites/BID_favorites_tree_boot.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/favorites/BID_listToXML.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/index.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_InternalPage.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_SearchTree_Boot.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_SATree_Boot.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_BiFrame.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_initView.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_ShowToolbar.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_ExternalPage.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_SATreeBiFrame.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_initBindows.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/views/BID_SearchTreeBiFrame.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/recents/BID_recents_tree_boot.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/recents/BID_recents_tree.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/recents/BID_listToXML.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/error.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/groups/BID_listToXML.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/search/BID_searchListToXML.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/search/BID_listToXML.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/tree/BID_MrPropertiesToXML.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/tree/BID_flatListToXML.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/tree/BID_PlainText.jsp /home/java/source/HEAD/work/jsp_compile_shared/WEB-INF/jsp/bid/tree/BID_listToXML.jsp 2>&1 Exception in thread "main" java.lang.NullPointerException at org.apache.jasper.servlet.JspCServletContext.getResource(JspCServletContext.java:344) at org.apache.jasper.compiler.TldCache.getLastModified(TldCache.java:124) at org.apache.jasper.compiler.TldCache.<init>(TldCache.java:70) at org.apache.jasper.JspC.initServletContext(JspC.java:1468) at org.apache.jasper.JspC.execute(JspC.java:1321) at org.apache.jasper.JspC.main(JspC.java:269) | resolved fixed | 5e6b884 | ["java/org/apache/jasper/compiler/TldCache.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-14T12:04:41Z" | "2014-01-13T10:46:40Z" |
55,893 | Bug 55893 Split AccessLogValve and extract the formatting logic in an AbstractAccessLogValve | null | resolved fixed | 92ce68a | ["java/org/apache/catalina/valves/AbstractAccessLogValve.java", "java/org/apache/catalina/valves/AccessLogValve.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-10T13:09:50Z" | "2013-12-17T03:13:20Z" |
55,978 | Bug 55978 Initial call to onWritePossible() not made by container when using HTTP upgrade | When using a WriteListener and non-blocking IO with the Servlet async API, the container makes the first call to onWritePossible() as per the spec. When using a WriteListener and non-blocking IO with the Servlet HTTP upgrade API the container does not make the initial call to onWritePossible(). When fixing this bug it is worth checking the initial call to onDataAvailable() as well. | resolved fixed | bd24edc | ["java/org/apache/coyote/AbstractProtocol.java", "java/org/apache/coyote/http11/upgrade/AbstractProcessor.java", "java/org/apache/coyote/http11/upgrade/AbstractServletOutputStream.java", "java/org/apache/coyote/http11/upgrade/AprServletOutputStream.java", "java/org/apache/coyote/http11/upgrade/BioServletOutputStream.java", "java/org/apache/coyote/http11/upgrade/NioServletOutputStream.java", "test/org/apache/coyote/http11/upgrade/TestUpgrade.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-10T11:43:02Z" | "2014-01-08T16:53:20Z" |
55,976 | Bug 55976 Broken response from NIO connector in Tomcat 7.0.50 | null | closed fixed | d423ae2 | ["java/org/apache/coyote/http11/Http11NioProcessor.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-09T21:32:25Z" | "2014-01-08T14:06:40Z" |
55,974 | Bug 55974 Honor the order when reporting XML parsing errors and warnings in XmlErrorHandler class | null | resolved fixed | 328adb1 | ["java/org/apache/tomcat/util/descriptor/XmlErrorHandler.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-09T15:29:45Z" | "2014-01-08T03:00:00Z" |
55,970 | Bug 55970 A reloadable context is reloaded repeatedly if WEB-INF/lib contains non-jar files | null | resolved fixed | 5594699 | ["java/org/apache/catalina/loader/WebappClassLoader.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-09T15:25:14Z" | "2014-01-08T00:13:20Z" |
55,960 | Bug 55960 TestSSOnonLoginAndBasicAuthenticator is flawed and incomplete | null | resolved fixed | ad129f8 | ["test/org/apache/catalina/authenticator/TestSSOnonLoginAndBasicAuthenticator.java", "test/org/apache/catalina/startup/TesterServletEncodeUrl.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-09T15:01:41Z" | "2014-01-06T20:26:40Z" |
55,958 | Bug 55958 Tomcat tries to deploy dir as zip archive even when it is a directory if the name ends with .war | Webapp deployment fails if the dirname ends with .war because it is automatically considered as zip archive. | resolved fixed | 5964a52 | ["java/org/apache/catalina/core/ContainerBase.java", "java/org/apache/catalina/ha/deploy/FarmWarDeployer.java", "java/org/apache/catalina/manager/HTMLManagerServlet.java", "java/org/apache/catalina/mbeans/MBeanUtils.java", "java/org/apache/catalina/startup/FailedContext.java", "java/org/apache/catalina/startup/HostConfig.java", "java/org/apache/catalina/storeconfig/StandardContextSF.java", "java/org/apache/catalina/util/ContextName.java", "test/org/apache/catalina/startup/TestHostConfigAutomaticDeployment.java", "test/org/apache/catalina/util/TestContextName.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-09T13:59:10Z" | "2014-01-06T14:53:20Z" |
55,937 | Bug 55937 Tomcat auto deployer not working for ROOT applications | null | resolved fixed | 346e264 | ["java/org/apache/catalina/util/ContextName.java", "test/org/apache/catalina/util/TestContextName.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2014-01-09T11:38:52Z" | "2013-12-27T21:33:20Z" |
55,939 | Bug 55939 Seeing issues with non-blocking io when writing lots of data | null | resolved fixed | 411e4cc | ["java/org/apache/coyote/Response.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-30T19:39:23Z" | "2013-12-29T23:33:20Z" |
55,905 | Bug 55905 Error message unhelpful when web.xml references a tld file that doesn't exist | null | resolved fixed | bcb9c58 | ["java/org/apache/jasper/servlet/TldScanner.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-18T19:28:21Z" | "2013-12-18T20:53:20Z" |
55,884 | Bug 55884 JSPs no longer compile in Java 8 | null | verified fixed | 8a5179c | ["java/org/apache/jasper/compiler/JspRuntimeContext.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-16T15:48:04Z" | "2013-12-14T22:26:40Z" |
55,820 | Bug 55820 Add 172.16/12 range to default internal proxies | null | resolved fixed | c1be72f | ["java/org/apache/catalina/filters/RemoteIpFilter.java", "java/org/apache/catalina/valves/RemoteIpValve.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-09T09:48:42Z" | "2013-11-27T22:06:40Z" |
55,811 | Bug 55811 Do not parse web-fragment.xml files when empty absolute-ordering | null | resolved fixed | f4da7dc | ["java/org/apache/catalina/startup/ContextConfig.java", "java/org/apache/jasper/servlet/JspCServletContext.java", "java/org/apache/tomcat/util/descriptor/web/FragmentJarScannerCallback.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-07T20:43:46Z" | "2013-11-22T19:53:20Z" |
55,801 | Bug 55801 Add ability to provide custom SSLContext for websocket client | null | resolved fixed | ef3f56e | ["java/org/apache/tomcat/websocket/WsWebSocketContainer.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-07T20:10:59Z" | "2013-11-20T15:06:40Z" |
55,851 | Bug 55851 Tomcat SPNEGO authenticator incompatible with IBM JDK: Accept Security Context needs to be wrapped around a Privileged Action in order for server side authentication | null | resolved fixed | bba9747 | ["java/org/apache/catalina/authenticator/SpnegoAuthenticator.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-06T19:42:43Z" | "2013-12-06T14:26:40Z" |
55,842 | Bug 55842 response.setBufferSize() does not seem to work properly | I found a problem with setting the buffer size for the ServletResponse. If I call 'response.setBufferSize(1,000,000);' and send about 20,000 characters, the response will be chunked even though it should not. The response is sent in several chunks and contains the 'Transfer-Encoding: chunked' response header. In my understanding in this case the response should be fully buffered on the server and then sent as a whole containing the Content-Length-header. This causes a problem in my application because I want to use a larger buffer to be able to redirect to an error page if an error occurs during rendering the response. I was able to reproduce this on Tomcat 7.0.39, 7.0.40, 7.0.42, 7.0.47. Tomcat 7.0.37 works fine and as expected. This is easily reproducable by using a JSP as follows: <% response.setBufferSize(1000*1000); for (int i = 0; i < 100; i++) { for (int j = 0; j < 100; j++) { response.getWriter().write("X"); } response.getWriter().write("<br />"); } %> | resolved fixed | f4970a7 | ["java/org/apache/catalina/connector/OutputBuffer.java", "java/org/apache/tomcat/util/buf/ByteChunk.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-06T12:12:15Z" | "2013-12-04T20:46:40Z" |
55,837 | Bug 55837 ServletContext.getRealPath() returns null | [code] String path = servletContext.getRealPath('/test'); if no file or folder named '/test' exist in webroot then path return null but int tomcat 5\6\7, it will return the correct value , ex /data/oschina/webapp/test | resolved fixed | a63bf3a | ["java/org/apache/catalina/webresources/DirResourceSet.java", "java/org/apache/catalina/webresources/EmptyResource.java", "java/org/apache/catalina/webresources/StandardRoot.java", "test/org/apache/catalina/webresources/AbstractTestResourceSet.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-12-04T17:18:57Z" | "2013-12-03T14:13:20Z" |
55,804 | Bug 55804 SPNEGOAUTHENTICATOR - GSSCredential does not get renewed after RemainingLifeTime is less than zero | In SpnegoAuthenticator, we check for request.getUserPrincipal() if it returns a prinicpal we do not do a fresh authentication. This happens even when the GSSCredential returned by GenericPrincipal has remainingLife time less than zero. This causes issues in delegating the credential as the credential is not valid any more. Can we add additional check to reauthenticate when the credental has expired and put GSSCredential in the same session? | resolved fixed | 8f67335 | ["java/org/apache/catalina/connector/Request.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-29T19:25:49Z" | "2013-11-20T23:26:40Z" |
55,798 | Bug 55798 Enabling Manager App - process and description is inadequate | null | resolved fixed | 13c6551 | ["java/org/apache/catalina/users/MemoryUserDatabase.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-20T10:07:51Z" | "2013-11-20T04:00:00Z" |
55,778 | Bug 55778 JNDIRealm: Authentication with GSSAPI to LDAP with SSL connection causes an exception | Whenever i try to authenticate with GSSAPI to a LDAP server with a SSL connection (ldaps), the following exception is thrown: javax.naming.ServiceUnavailableException: myserver.at:636; socket closed; remaining name 'dc=example,dc=org' at com.sun.jndi.ldap.Connection.readReply(Connection.java:452) at com.sun.jndi.ldap.LdapClient.getSearchReply(LdapClient.java:631) at com.sun.jndi.ldap.LdapClient.search(LdapClient.java:554) at com.sun.jndi.ldap.LdapCtx.doSearch(LdapCtx.java:1985) at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1847) at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1772) ... Steps to reproduce: 1. Configure the valve org.apache.catalina.authenticator.SpnegoAuthenticator in the server.xml with storeDelegatedCredential="true". 2. Configure the realm org.apache.catalina.realm.JNDIRealm in the server.xml with an SSL connection url (e.g. ldaps://myserver.at:636) 3. Configure an auth-method with SPNEGO, security-constraints and security-roles in the web.xml 4. Add required keystores to the jdk for the ldaps connection. 5. Try to authenticate I debugged into the JNDIRealm and figured out, that changing line 2082 from "context.addToEnvironment("javax.security.sasl.qop", "auth-conf");" to "context.addToEnvironment("javax.security.sasl.qop", "auth");" would solve the problem. I also tested the fix with a new written JNDIRealm. But i'm not sure, if this fix causes other security issues. | resolved fixed | 27806aa | ["java/org/apache/catalina/realm/JNDIRealm.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-15T17:39:05Z" | "2013-11-14T20:13:20Z" |
55,776 | Bug 55776 if path include relative char, eg: ../, classloader will not find zhe file | I use ibatis in my project, config file path include '..', tomcat can not find the file, command line show: Could not find resource ../ibatis/code/sendType.xml | resolved fixed | a1ad6ce | ["java/org/apache/catalina/webresources/StandardRoot.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-15T15:04:52Z" | "2013-11-14T11:53:20Z" |
55,772 | Bug 55772 Flushing AsyncContext response writer after ClientAbortException (BrokenPipe) causes request state to leak | null | resolved fixed | cb62f86 | ["java/org/apache/catalina/connector/CoyoteAdapter.java", "java/org/apache/coyote/ActionCode.java", "java/org/apache/coyote/ajp/AbstractAjpProcessor.java", "java/org/apache/coyote/http11/AbstractHttp11Processor.java", "java/org/apache/coyote/spdy/SpdyProcessor.java", "test/org/apache/coyote/http11/TestAbstractHttp11Processor.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-15T13:39:52Z" | "2013-11-13T10:53:20Z" |
55,760 | Bug 55760 Tomcat SPNEGO authenticator incompatible with IBM JDK in case of Keytab based initiate and accept authentication | null | resolved fixed | 0a4e847 | ["java/org/apache/catalina/authenticator/SpnegoAuthenticator.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-11T09:45:49Z" | "2013-11-08T17:00:00Z" |
55,749 | Bug 55749 Disabling SSLEngine in AprLifecycleListener leads to misleading error message at startup when SSL Connector is delcared | Put a <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="off" /> in you server.xml. Put the APR connector some weeks later in your server.xml: <Connector protocol="org.apache.coyote.http11.Http11AprProtocol" port="@HTTPS_PORT@" connectionTimeout="20000" maxHttpHeaderSize="24576" maxThreads="250" URIEncoding="UTF-8" bufferSize="4096" scheme="https" secure="true" SSLEnabled="true" SSLProtocol="TLSv1" SSLCipherSuite="HIGH:!ADH" SSLCertificateFile="@SSL_CERT_FILE@" SSLCertificateKeyFile="@SSL_CERT_KEY_FILE@" SSLPassword="@SSL_PASSWORD@" /> Start your Tomcat and receive following confusing message: Nov 06, 2013 1:30:39 PM org.apache.coyote.http11.Http11AprProtocol start SEVERE: Error starting endpoint java.lang.Exception: Socket bind failed: [226] Adresse bereits im Zugriff at org.apache.tomcat.util.net.AprEndpoint.init(AprEndpoint.java:671) at org.apache.tomcat.util.net.AprEndpoint.start(AprEndpoint.java:851) at org.apache.coyote.http11.Http11AprProtocol.start(Http11AprProtocol.java:139) at org.apache.catalina.connector.Connector.start(Connector.java:1196) at org.apache.catalina.core.StandardService.start(StandardService.java:540) at org.apache.catalina.core.StandardServer.start(StandardServer.java:754) at org.apache.catalina.startup.Catalina.start(Catalina.java:595) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414) Nov 06, 2013 1:30:39 PM org.apache.catalina.core.StandardService start SEVERE: Failed to start connector [Connector[HTTP/1.1-8444]] LifecycleException: service.getName(): "Catalina"; Protocol handler start failed: java.lang.Exception: Socket bind failed: [226] Adresse bereits im Zugriff at org.apache.catalina.connector.Connector.start(Connector.java:1203) at org.apache.catalina.core.StandardService.start(StandardService.java:540) at org.apache.catalina.core.StandardServer.start(StandardServer.java:754) at org.apache.catalina.startup.Catalina.start(Catalina.java:595) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414) This is of course not correct. The port IS availble but the SSL engine has been turned off. There should be a check at stratup which says that this is an illegal state. | resolved fixed | 014cf1c | ["java/org/apache/tomcat/util/net/AprEndpoint.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-10T20:20:37Z" | "2013-11-06T17:46:40Z" |
55,735 | Bug 55735 Additional quote entity in html element attribute evaluated in tagx if attribute contains EL expression | null | resolved fixed | 7ee1275 | ["java/org/apache/jasper/compiler/Validator.java", "java/org/apache/jasper/runtime/PageContextImpl.java", "test/org/apache/jasper/compiler/TestParser.java", "test/org/apache/jasper/compiler/TesterValidator.java", "test/org/apache/jasper/runtime/TesterPageContextImpl.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-11-05T22:46:35Z" | "2013-11-02T11:00:00Z" |
55,715 | Bug 55715 RemoteEndpoint.Async#sendText(String, SendHandler) can cause StackOverflowErrors and contradicts Oracle's JavaDoc | null | resolved fixed | 3f316f1 | ["java/org/apache/tomcat/websocket/server/Constants.java", "java/org/apache/tomcat/websocket/server/WsContextListener.java", "java/org/apache/tomcat/websocket/server/WsHttpUpgradeHandler.java", "java/org/apache/tomcat/websocket/server/WsRemoteEndpointImplServer.java", "java/org/apache/tomcat/websocket/server/WsServerContainer.java", "java/org/apache/tomcat/websocket/server/WsWriteTimeout.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-30T11:20:08Z" | "2013-10-28T19:53:20Z" |
55,702 | Bug 55702 TLD cannot be loaded if CATALINA_HOME contains spaces | A web application containing an own TLD within its WEB-INF directory fails to render a JSP page referencing that TLD if Tomcat it installed into a directory with spaces in the path, such as "C:\Program Files\...". After moving the entire Tomcat installation directory to a path without spaces (such as "C:\1\Tomcat8"), the application can render that same JSP page. Following stacktrace is printed. Note the %20 in the file path org.apache.jasper.JasperException: /jsp/layouts/standard.jsp (line: 7, column: 69) File "file:/C:/Program%20Files/Apache/Tomcat-8.0.0-RC5/webapps/mywebapp/WEB-INF/tlds/mywebapp-tags.tld" not found org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:42) org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:276) org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:92) org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:166) org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:410) org.apache.jasper.compiler.Parser.parseDirective(Parser.java:476) org.apache.jasper.compiler.Parser.parseElements(Parser.java:1451) org.apache.jasper.compiler.Parser.parse(Parser.java:138) org.apache.jasper.compiler.ParserController.doParse(ParserController.java:242) org.apache.jasper.compiler.ParserController.parse(ParserController.java:102) org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:198) org.apache.jasper.compiler.Compiler.compile(Compiler.java:373) org.apache.jasper.compiler.Compiler.compile(Compiler.java:353) org.apache.jasper.compiler.Compiler.compile(Compiler.java:340) org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:606) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:357) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:403) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:347) javax.servlet.http.HttpServlet.service(HttpServlet.java:728) Java version used: Oracle JDK 7 Update 45 (64 Bit) Active Tomcat connector: ["http-nio-8080"] | resolved fixed | ad50e54 | ["java/org/apache/jasper/compiler/TagLibraryInfoImpl.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-29T13:00:00Z" | "2013-10-25T14:06:40Z" |
55,684 | Bug 55684 WebappClassLoader.getThread want an access to root ThreadGroup | Tomcat may not have all permissions granted. The method WebappClassLoader.getThread try to access the root ThreadGroup in order to list all threads. You should either manage SecurityException or avoid to access the parent ThreadGroup of the thread which start Tomcat. | resolved fixed | d244284 | ["java/org/apache/catalina/loader/WebappClassLoader.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-29T09:53:27Z" | "2013-10-21T21:13:20Z" |
55,691 | Bug 55691 javax.el.ArrayELResolver.setValue not supporting arrays of primitives | was working in tomcat 6.0.20 ERROR javax.faces.context.ExceptionHandlerWrapper - javax.faces.component.UpdateModelException: java.lang.ClassCastException: Unable to add an object of type [java.lang.Integer] to an array of objects of type [int] java.lang.ClassCastException: Unable to add an object of type [java.lang.Integer] to an array of objects of type [int] at javax.el.ArrayELResolver.setValue(ArrayELResolver.java:94) at com.sun.faces.el.DemuxCompositeELResolver._setValue(DemuxCompositeELResolver.java:255) at com.sun.faces.el.DemuxCompositeELResolver.setValue(DemuxCompositeELResolver.java:281) at org.apache.el.parser.AstValue.setValue(AstValue.java:158) at org.apache.el.ValueExpressionImpl.setValue(ValueExpressionImpl.java:249) at com.sun.faces.facelets.el.TagValueExpression.setValue(TagValueExpression.java:131) at javax.faces.component.UIInput.updateModel(UIInput.java:818) at javax.faces.component.UIInput.processUpdates(UIInput.java:735) at javax.faces.component.UIData.iterate(UIData.java:2001) at javax.faces.component.UIData.processUpdates(UIData.java:1253) at javax.faces.component.UIComponentBase.processUpdates(UIComponentBase.java:1242) at javax.faces.component.UIForm.processUpdates(UIForm.java:281) at javax.faces.component.UIComponentBase.processUpdates(UIComponentBase.java:1242) at javax.faces.component.UIComponentBase.processUpdates(UIComponentBase.java:1242) at javax.faces.component.UIViewRoot.processUpdates(UIViewRoot.java:1231) at com.sun.faces.lifecycle.UpdateModelValuesPhase.execute(UpdateModelValuesPhase.java:78) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) | resolved fixed | b82c0c6 | ["java/javax/el/ArrayELResolver.java", "java/javax/el/Util.java", "test/javax/el/TestArrayELResolver.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-28T20:59:41Z" | "2013-10-23T03:46:40Z" |
55,681 | Bug 55681 JSR-356 message handling: NULL pointer being thrown when DecodeException is caught in PojoMessageHandlerWholeBase<T>.onMessage | I am testing what happens when Encode/Decode Exceptions occur during JSR-356 communication. In our case, we do NOT use annotation, but we "extend Endpoint" and "implement Whole<ThingworxMessage>". I was forcing a DecodeException to occur - expecting to my onError to be called with the actual DecodeException. Instead, I got a Null. Stepping the following code in Tomcat: in onMessage, the ((WsSession)session) is NULL. As a result, the actual DecodeException (cause) is lost. // Can this message be decoded? Object payload; try { payload = decode(message); } catch (DecodeException de) { ((WsSession) session).getLocal().onError(session, de); return; } Tracing this further up the stack, I found that Util.getMessageHandlers is initializing it and passing NULL in for the session: if (decoderMatch.getTextDecoders().size() > 0) { MessageHandlerResult result = new MessageHandlerResult( new PojoMessageHandlerWholeText(listener, m, null, endpointConfig, decoderMatch.getTextDecoders(), new Object[1], 0, false, -1, -1), MessageHandlerResultType.TEXT); results.add(result); } Please let me know if I can provide any more details. -bob | resolved fixed | 514cefb | ["java/org/apache/tomcat/websocket/Util.java", "java/org/apache/tomcat/websocket/WsSession.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-20T21:03:52Z" | "2013-10-20T23:00:00Z" |
55,664 | Bug 55664 [websocket] NPE in Util$DecoderMatch during application start | null | resolved fixed | 4e4a24a | ["java/org/apache/tomcat/websocket/Util.java", "test/org/apache/tomcat/websocket/TestUtil.java", "test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-18T07:40:00Z" | "2013-10-17T22:46:40Z" |
55,656 | Bug 55656 Server ClassLoader not used for Server creation | null | resolved fixed | 86ec1f4 | ["java/org/apache/catalina/startup/Catalina.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-17T15:26:13Z" | "2013-10-16T13:26:40Z" |
54,095 | Bug 54095 [patch] support gzipped versions of static resources by DefaultServlet | null | resolved fixed | f0101d0 | ["java/org/apache/catalina/servlets/DefaultServlet.java", "test/org/apache/catalina/servlets/TestDefaultServlet.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-10T21:24:59Z" | "2012-11-04T00:46:40Z" |
55,251 | Bug 55251 JspC fails silently if directory for generated web.xml does not exist | If the file specified for webXml (via call to setWebXml) cannot be created (for example if the directory does not exist), then JspC fails silently. | resolved fixed | 06d8338 | ["java/org/apache/jasper/JspC.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-10T13:38:20Z" | "2013-07-12T09:06:40Z" |
55,642 | Bug 55642 TagPluginManager isConstantAttribute broken | Function isConstantAttribute in TagPluginManager seems to be be broken. For value "order.status" it returns false. And for value "${order.state.name}" it returns true. According to javadoc it should be exact opposite. Problem seems to be in Node.isLiteral function. "el!= null" should probably be "el== null" But this function is being used elsewhere. /** * @return true if the attribute is specified and its value is a * translation-time constant. */ public boolean TagPluginManager.isConstantAttribute(String attribute){ Node.JspAttribute attr = getNodeAttribute(attribute); if (attr == null) return false; return attr.isLiteral(); } /** * @return true if the value is a string literal known at translation * time. */ public boolean isLiteral() { return !expression && (el != null) && !namedAttribute; } | resolved fixed | af49b44 | ["java/org/apache/jasper/compiler/Node.java", "test/org/apache/jasper/compiler/TestNode.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-09T14:33:39Z" | "2013-10-09T17:33:20Z" |
55,630 | Bug 55630 clean way to avoid setURLStreamHandlerFactory call | A current method is to set WebappLoader.first via reflection (because private). I think the setURLStreamHandlerFactory should be move to Catalina.start ('first' static field can be move in Catalina). So we could have a static method in Catalina to prevent setURLStreamHandlerFactory call while first starting. | resolved fixed | bd56eea | ["java/org/apache/catalina/webresources/TomcatURLStreamHandlerFactory.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-07T18:49:56Z" | "2013-10-05T21:53:20Z" |
55,629 | Bug 55629 StatusManagerServlet does not remove JMX notification listener | StatusManagerServlet.destroy should call mBeanServer.removeNotificationListener because init method call mBeanServer.addNotificationListener. | resolved fixed | 95faaec | ["java/org/apache/catalina/manager/StatusManagerServlet.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-10-07T08:36:23Z" | "2013-10-05T21:53:20Z" |
55,317 | Bug 55317 Facilitate weaving by allowing ClassFileTransformer to be added to WebppClassLoader | null | resolved fixed | dd0cba7 | ["java/org/apache/catalina/loader/WebappClassLoader.java", "java/org/apache/tomcat/InstrumentableClassLoader.java", "test/org/apache/catalina/loader/TestWebappClassLoaderWeaving.java", "test/org/apache/catalina/loader/TesterNeverWeavedClass.java", "test/org/apache/catalina/loader/TesterUnweavedClass.java"] | Tomcat | https://github.com/apache/tomcat | apache/tomcat | java | null | null | null | "2013-09-26T22:55:22Z" | "2013-07-28T11:13:20Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.