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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
266,257 | Bug 266257 The error massage should be shown in "Select Data" tab to warn for the stacked series on a date-time axis [13] | null | closed fixed | c3390f3 | ["chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/TaskSelectData.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-05T08:03:00Z" | "2009-02-26T06:33:20Z" |
264,273 | Bug 264273 [Scripting Usability ] BIRT Model, Designer changes to support expression in default value | null | verified fixed | 40f280a | ["model/org.eclipse.birt.report.model.tests/test/org/eclipse/birt/report/model/parser/ScalarParameterParseTest.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ScalarParameterHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/elements/interfaces/IScalarParameterModel.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/writer/ModuleWriter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-05T07:24:21Z" | "2009-02-09T22:53:20Z" |
266,793 | Bug 266793 [Accessibility] Keyboard does not work correctly in Edit Data Set dialog. | null | closed fixed | 659e67e | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/data/ui/property/AbstractPropertyDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-04T08:13:29Z" | "2009-03-03T06:00:00Z" |
266,647 | Bug 266647 Support "avoid" choice in page-break property | null | verified fixed | c94e0ac | ["model/org.eclipse.birt.report.model.tests/test/org/eclipse/birt/report/model/metadata/PropertyDefnTest.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-04T07:27:03Z" | "2009-03-02T05:00:00Z" |
266,914 | Bug 266914 Spaces not supported in classpath configured with WEBAPP_CLASSPATH_KEY | Build ID: 2.3.2 Steps To Reproduce: We are executing a BIRT report and when we set our classpath using the WEBAPP_CLASSPATH_KEY key. Example: EngineConfig config = new EngineConfig(); config.getAppContext().put( EngineConstants.WEBAPP_CLASSPATH_KEY, <classpath> ); The classpath we supply are Jars and Folders, separated by a ';' (on windows). When the classpath contains entries *without* spaces in the path, our report generation works. The problem occurs when there are spaces in the classpath (our report generation fails). I checked out the code and narrowed the code down to a problem in the createEngineClassLoader() method of org.eclipse.birt.report.engine.api.impl.ReportEngine. As this method is cycling through the various classpath options (EngineConstants.WEBAPP_CLASSPATH_KEY, EngineConstants.PROJECT_CLASSPATH_KEY, or EngineConstants.WORKSPACE_CLASSPATH_KEY), it creates an instance of File for each entry on the classpath, and then calls file.toURI().toURL(). That call to toURI().toURL() is problematic because it turns all spaces into %20. So, for example, C:\Program Files\testclasses turns into C:\Program%20Files\testclasses The addition of %20 is problematic because the file paths are now wrong. In FileLoader (in class URLClassLoader, in package org.eclipse.birt.core.framework), the loadResource attempts to locate the given classname and load it. So, for example if we're trying to load org.eclipse.test.Sample, it will now search for C:\Program%20Files\testclasses\org.eclipse.test.Sample. Even if that class exists in the filesystem, the code will not correctly load the class because of the %20. I quickly produced a 'hack' fix to verify that this is the problem. In the loadResource() method of FileLoader, I can replace the %20 with spaces and our report generation works. For example: baseDir.getAbsolutePath().replaceAll("%20", " ") More information: | closed fixed | 942c33e | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/framework/URLClassLoader.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-04T05:30:59Z" | "2009-03-03T19:53:20Z" |
266,447 | Bug 266447 [Accessibility] Shortcut keys are missing in Chart Builder->Format Chart | Description: Shortcut keys are missing in Chart Builder->Format Chart. Build number: 2.5.0.v20090227-0630 Steps to reproduce: Open the Chart Builder->Format Chart, use the keyboard to operate. P1: In Series panel 1. Shortcut keys should be provided for "Value(Y) Series", "Title", "Type", "Visible", "Stacked" and "Translucent". P2: In Value(Y) Series panel 1. Shortcut key should be provided for "Show Series Lables". 2. Shortcut key should be provided for "Cursor" in "Interactivity" dialogue. P3: In Chart Area 1. Shortcut keys should be provided for "Background" and "Empty Message". 2. Shortcut keys should be provided for operation options in "Outline" dialogue. P4: In Axis 1. Shortcut keys should be provided for operation options in "Axis". 2. P5: In X-Axis & Y-Axis 1. Shortcut keys should be provided for "Lables", "Lable Span" and "Fixed". 2. Shortcut key conflict happens between "Reverse Category" and "Visible" in X-Axis. 3. Shortcut keys should be provided for operation options in "Title", "Lable" and "Gridlines". P6: In Title panel: 1. Shortcut key should be provided for "Font". 2. Shortcut keys should be provided for operation options in "Text" and "Layout" dialogue. P7: In plot: 1. Shortcut key should be provided for "Background". 2. Shortcut keys should be provided for operation options in "Area Format" dialogue. P8: In Legend 1. Shortcut key conflict happens between "Show Value" and "Visible". 2. Shortcut key conflict happens between "Title" and "Layout". 3. Shortcut keys should be provided for operation options in "Layout" and "Entries" dialogue. Error Log: N/A | verified fixed | cc325fc | ["chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/TriggerDataComposite.java", "chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/format/popup/chart/PlotClientAreaSheet.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-03T09:11:44Z" | "2009-02-27T10:20:00Z" |
266,785 | Bug 266785 The color does not change after click the text with hyperlink in DOC [1202] | null | closed fixed | c56a258 | ["engine/org.eclipse.birt.report.engine.emitter.wpml/src/org/eclipse/birt/report/engine/emitter/wpml/writer/AbstractWordXmlWriter.java", "engine/org.eclipse.birt.report.engine.emitter.wpml/src/org/eclipse/birt/report/engine/emitter/wpml/writer/DocWriter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-03T07:16:15Z" | "2009-03-03T03:13:20Z" |
266,783 | Bug 266783 [Automation][Regression]IllegalArgumentException is thrown out when export report to XLS format | null | closed fixed | ea8f76e | ["engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/ExcelUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-03T07:04:47Z" | "2009-03-03T03:13:20Z" |
246,507 | Bug 246507 Show HIde measure header effect in layout for crosstab item[1102] | Description: Suggest to show HIde measure header effect in layout for crosstab item. | verified fixed | 06b1c83 | ["xtab/org.eclipse.birt.report.item.crosstab.ui/src/org/eclipse/birt/report/item/crosstab/internal/ui/editors/editparts/CrosstabTableEditPart.java", "xtab/org.eclipse.birt.report.item.crosstab.ui/src/org/eclipse/birt/report/item/crosstab/internal/ui/editors/model/CrosstabHandleAdapter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-03T02:50:14Z" | "2008-09-08T02:13:20Z" |
265,244 | Bug 265244 Add a switch to optimize HTML report output size | Currently, the HTML report content returned by engine contains some spaces, padding, newlines that make the HTML code easier to read/debug. Please add a flag/option to disable the addition of such spaces. This can be useful to reduce the HTML report content size to improve the performance. | resolved fixed | c8c49c6 | ["engine/org.eclipse.birt.report.engine.emitter.html/src/org/eclipse/birt/report/engine/emitter/html/HTMLReportEmitter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/HTMLRenderOption.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/IHTMLRenderOption.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-02T09:26:38Z" | "2009-02-18T04:06:40Z" |
266,654 | Bug 266654 The color does not change after click the text with hyperlink in excel [1203] | null | closed fixed | 02a27b6 | ["engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/ExcelXmlWriter.java", "engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/SheetData.java", "engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/StyleEntry.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-02T09:01:01Z" | "2009-03-02T07:46:40Z" |
266,644 | Bug 266644 [Regression] Live preview will become incorrect after you resize the chart builder. | null | closed fixed | 509c350 | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/component/impl/SeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/BubbleDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/DataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/DateTimeDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/DifferenceDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/GanttDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/NullDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/NumberDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/StockDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/data/impl/TextDataSetImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/AreaSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/BarSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/BubbleSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/DialSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/DifferenceSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/GanttSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/LineSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/PieSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/ScatterSeriesImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/type/impl/StockSeriesImpl.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-02T07:39:53Z" | "2009-03-02T02:13:20Z" |
266,446 | Bug 266446 [Automation][Regression]Grid in Masterpage footer block the preview in web viewer | null | closed fixed | a9c35cf | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/impl/CellContent.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-02T06:22:14Z" | "2009-02-27T10:20:00Z" |
266,459 | Bug 266459 Patch: Compile fix for Rhino 1.7 | The attached patch fixes compilation with Rhino 1.7 prereleases. The patch is simply putting more restriction to the parameter, so this should not cause any other problems, unless an Object that do not implement Scriptable is passed. Such cases will simply fail with newer rhino so it is better to be found at compile time. | verified fixed | ced1872 | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/script/ScriptHandler.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-03-02T06:01:58Z" | "2009-02-27T10:20:00Z" |
257,010 | Bug 257010 Hidden Report Parameters sub nodes in Script Palette for Chart[0801][1300] | Description: Hidden Report Parameters sub nodes in Script Palette for Chart Build number:2.3.2.v20081201 Steps to reproduce: 1. Insert a parameter and chart. 2. Select a chart item and go to script. 3. In palette, Report Context under context is hidden Expected result: parameter under Report Parameters node should be hidden. Actual result: parameter under Report Parameters node isn't hidden and double click it will add params[] to chart script. Error log:n/a | verified fixed | e210f39 | ["chart/org.eclipse.birt.chart.reportitem.ui/src/org/eclipse/birt/chart/reportitem/ui/views/provider/ChartContextExpressionProvider.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-26T05:05:36Z" | "2008-12-01T02:53:20Z" |
266,075 | Bug 266075 Exception is thrown out when click "Cancel" during Import Chart runtime component [0603] | Description: Exception is thrown out when click "Cancel" during Import Chart runtime component. Build number: 2.5.0.v20090225-0630 Steps to reproduce: 1. New a BIRT Chart Web Project. 2. Select "BIRT Intelligence and Reporting Tools->"Import Chart runtime component...". 3. Click "Cancel". Expected result: No exception. Actual result: Exception is thrown out. | closed fixed | 055de83 | ["chart/org.eclipse.birt.chart.integration.wtp.ui/src/org/eclipse/birt/chart/integration/wtp/ui/internal/wizards/BirtWizardUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-25T09:41:53Z" | "2009-02-25T08:20:00Z" |
265,905 | Bug 265905 [Regression] Exception is thrown out when select one report and click Add Resource in context menu of Resource Explorer view [00] | Description: Exception is thrown out when select one report and click Add Resource in context menu of Resource Explorer view. Build number: 2.5.0.v20090224-0630 Steps to reproduce: 1. Open the Resource Explorer View, select one report and invoke the context menu. 2. Click Add Resource. Expected result: No exception. Actual result: Exception is thrown out. | closed fixed | 454d043 | ["UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/action/AddResourceAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-24T05:40:14Z" | "2009-02-24T01:46:40Z" |
265,266 | Bug 265266 Added a unique ID to the CompositeFragment class | Build ID: 3.5 I20090202-1535 Steps To Reproduce: Added a unique ID property to the CompositeFragment, so that the user gets the feild to identify every CompositeFragment instance. | closed fixed | 3b8d77e | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/tools/ReportElementDragTracker.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-23T03:26:53Z" | "2009-02-18T09:40:00Z" |
265,782 | Bug 265782 NPE occurs when inserting label into Crosstab header | Description: NPE occurs when inserting label into Crosstab header Build number: 2.5.0.v20090223-0630 Steps to reproduce: 1, New a Crosstab 2, New a label 3, Drag the label into Crosstab header Expected result: No NPE occurs when inserting label into crosstab header Actual result: NPE occurred in step3 Error log: java.lang.NullPointerException at org.eclipse.gef.editparts.AbstractEditPart.getRoot(AbstractEditPart.java:551) at org.eclipse.gef.editparts.AbstractEditPart.getViewer(AbstractEditPart.java:601) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportElementDragTracker$DelaySelectionHelper.run(ReportElementDragTracker.java:132) at org.eclipse.swt.widgets.Display.runTimer(Display.java:3938) at org.eclipse.swt.widgets.Display.messageProc(Display.java:3132) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2393) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3468) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2388) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2352) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:499) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:492) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:556) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:511) at org.eclipse.equinox.launcher.Main.run(Main.java:1270) | closed fixed | 81d1e86 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/tools/ReportElementDragTracker.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-23T02:45:03Z" | "2009-02-23T03:33:20Z" |
257,014 | Bug 257014 Provide an extension to register available functions used in script editor | Designer should provide an extension to register available functions used in script editor, so chart/xtab or other extended items could customize it. | resolved fixed | f22de2e | ["UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/internal/ui/editors/script/TreeViewPalettePage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/ExpressionTreeSupport.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/expressions/AbstractContextExpressionProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/expressions/AbstractExpressionProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/expressions/ExpressionFilter.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/expressions/IContextExpressionProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/expressions/ISortableExpressionProvider.java", "xtab/org.eclipse.birt.report.item.crosstab.ui/src/org/eclipse/birt/report/item/crosstab/internal/ui/CrosstabContextExpressionProvider.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-20T07:35:22Z" | "2008-12-01T05:40:00Z" |
265,434 | Bug 265434 Merged cell is not output correctly in excel | Build ID: DEV-20090219 Steps To Reproduce: Preview attached report in excel format, the merged cell is not output correctly. More information: | resolved fixed | 7fddfce | ["engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/layout/ExcelLayoutEngine.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-19T09:52:50Z" | "2009-02-19T10:40:00Z" |
265,249 | Bug 265249 [Regression] The chart in the last page is cut to fit into the page when preview as DOC [1202] | null | closed fixed | 167045b | ["engine/org.eclipse.birt.report.engine.emitter.wpml/src/org/eclipse/birt/report/engine/emitter/wpml/writer/AbstractWordXmlWriter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-19T09:25:18Z" | "2009-02-18T06:53:20Z" |
265,403 | Bug 265403 Change in Script API | In 2.5 IReportElementInstance, the signature of the getParent() and getRowData() method have changed to throw an BirtException. There is a strong chance that this will break a lot of peoples event handler code. If throwing the error is absolutely necessary, I would recommend throwing a ScriptException to match the other Script API classes. | verified fixed | 1a95213 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/IReportElementInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ReportElementInstance.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-19T09:22:05Z" | "2009-02-19T05:06:40Z" |
255,309 | Bug 255309 Enhance read-only report processing in designer | null | closed fixed | fd572c4 | ["UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/internal/script/model/ScriptDebugTarget.java", "UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/internal/ui/script/editor/DebugJsInput.java", "UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/internal/ui/script/launcher/ReportLaunchHelper.java", "UI/org.eclipse.birt.report.designer.ui.editor.xml.wtp/src/org/eclipse/birt/report/designer/ui/editor/pages/xml/ReportXMLSourceEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/pages/ReportXMLSourceEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors/src/org/eclipse/birt/report/designer/internal/ui/editors/FileReportProvider.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-19T09:20:47Z" | "2008-11-14T08:06:40Z" |
265,102 | Bug 265102 Series Palette does not work when the chart has two axis and is colored by categories. | description: Series Palette does not work when the chart has two axis and colored by categories. build id: 2.3.2 v20090217-0730 steps to reproduce: 1. New a chart with two axis. 2. On Format Chart page, select series node and select Color By Categories. 3. Click Series Palette and try to change the color. Actual result: Changing color does not work. Expected result: It should work. | verified fixed | ee95855 | ["chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/PaletteEditorComposite.java", "chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/format/popup/series/SeriesPaletteSheet.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-19T03:22:52Z" | "2009-02-17T08:40:00Z" |
265,264 | Bug 265264 View Report button is gray content type is rpttemplate | Description: View Report button is gray content type is rpttemplate Build number: 2.5.0.v20090218-0930 Steps to reproduce: 1, New a report template 2, Check the View Report button Expected result: The View Report button should be enabled. Actual result: The View Report button is disabled. Error log: | closed fixed | 20b2ef0 | ["UI/org.eclipse.birt.report.designer.ui.preview.web/src/org/eclipse/birt/report/designer/ui/actions/PreviewCascadingMenuGroup.java", "UI/org.eclipse.birt.report.designer.ui.preview.web/src/org/eclipse/birt/report/designer/ui/actions/PreviewToolbarMenuAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-19T02:21:59Z" | "2009-02-18T09:40:00Z" |
263,851 | Bug 263851 Supplying more than two numbers to BirtMath.add() throws an exception | An expression, such as BirtMath.add(1,1,1) throws the following exception: org.eclipse.birt.report.service.api.ReportServiceException: Error happened while running the report In the expression builder, the validate option said no syntax errors were found. | verified fixed | d95ddb7 | ["data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/bre/BirtComp.java", "data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/bre/BirtDateTime.java", "data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/bre/BirtMath.java", "data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/bre/BirtStr.java", "data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/bre/BreUtility.java", "data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/i18n/Messages.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-18T09:59:38Z" | "2009-02-05T18:53:20Z" |
265,126 | Bug 265126 Part of data lost in the xtab which has set show empty row | null | closed fixed | fce8ef5 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/olap/cursor/DimensionTraverse.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-18T06:01:27Z" | "2009-02-17T11:26:40Z" |
263,744 | Bug 263744 The same library is opened twice if you open it in Resource Explorer and in Navigator. | description: The same library is opened twice if you open it in Resource Explorer and in Navigator. build id: 2.3.2.v20090205-0730 steps to reproduce: 1. New a library. 2. Double click it in Resource Explorer. 3. Double click it in Navigator. Expected result: The library will be opened only once. Actual result: The library is opened twice. | verified fixed | 66ebc04 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/PathEditorInputFactory.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/ElementAdapter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-18T05:39:38Z" | "2009-02-05T07:46:40Z" |
264,836 | Bug 264836 clone() method of org.eclipse.birt.report.model.metadata.ChoiceSet | Problem with clone() method of org.eclipse.birt.report.model.metadata.ChoiceSet. This method is adding values from ArrayList to the same ArrayList instance (attribute choices). Size of this ArrayList goes to infinity (OutOfMemory). /////////// CURRENT ChoiceSet CODE //////////////////// public Object clone( ) throws CloneNotSupportedException { ChoiceSet set = (ChoiceSet) super.clone( ); if ( choices != null ) { for ( int i = 0; i < choices.size( ); i++ ) set.choices.add( ( (IChoice) choices.get( i ) ).copy( ) ); } return set; } ////////////////////////////////////////////////////// /////////// ChoiceSet FIX //////////////////// public Object clone( ) throws CloneNotSupportedException { ChoiceSet set = (ChoiceSet) super.clone( ); // new instance of cloned ChoiceSet choices set.choices = new ArrayList(); if ( choices != null ) { for ( int i = 0; i < choices.size( ); i++ ) set.choices.add( ( (IChoice) choices.get( i ) ).copy( ) ); } return set; } ////////////////////////////////////////////////////// | resolved fixed | 0bd1c87 | ["model/org.eclipse.birt.report.model.tests/test/org/eclipse/birt/report/model/metadata/ChoiceSetTest.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/metadata/ChoiceSet.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-18T02:55:25Z" | "2009-02-13T13:00:00Z" |
265,106 | Bug 265106 text with hyperlink in excel should has the same style as in html | Build ID: I20081211-1908 Steps To Reproduce: 1.New a report and insert a label 2.Set hyperlink on label. 3.Output the report to html, you can see the text color is blue and with underline. But if it is outputted to excel, the blue color and underline does not exist. It should be same as html. More information: | verified fixed | e78a583 | ["engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/SheetData.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-18T02:39:59Z" | "2009-02-17T08:40:00Z" |
249,277 | Bug 249277 map list condition works in Preview but not in Web Viewer | Build ID: I20080617-2000 Steps To Reproduce: 1.Make a condition on a column, here COLUMN2, can be any column, with integer numbers row["COLUMN2"] Equal To "0" then display following value "" ( nothing , empty). 2. Run in Preview zero values are not displayed (empty) , non zero values are displayed. Correct. 3. Run in Web viewer zero values are not displayed , non zero values are also NOT displayed. All values have no value and are empty. Incorrect. More information: I have tried also row["COLUMN2"] match 0 also get the same effect. BIRT 2.3 , eclipse package install all in one. | verified fixed | 94a52a0 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/DocumentExtension.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/v3/ReportContentWriterV3.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-17T09:52:21Z" | "2008-10-01T08:33:20Z" |
264,303 | Bug 264303 Filter Expression of Chart using cube is not proper | Description: Filter Expression of Chart using cube is not proper. I suggest to keep the prompt in selecting list, remove the Category: and Value: in expression builder. Build number: 2.3.2.v20090210-0730 & 2.5.0 v20090210-0630 Steps to reproduce: 1, New a Chart using cube 2, New a Filter in Chart Builder 3, Select the binding Category: data["A"] 4, The expression displayed data["A"] in Filters dialog 5, Specify the expression to Category: data["A"] + 100 6, The expression displayed Category: data["A"] + 100 Expected result: I suggest to Keep the current behavior of binding list: Category: data["A"] Value: data["B"] But after selecting, the expression should be data["A"] without Category:, this kind of expression is very confused. If I specify the condition to data["A"] + 100 or something else, the Category: is useless. Actual result: The expression is Category: data["A"] in expression builder. It is very confused. Error log: | closed fixed | 6f78508 | ["chart/org.eclipse.birt.chart.reportitem.ui/src/org/eclipse/birt/chart/reportitem/ui/dialogs/ChartCubeFilterConditionBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-17T07:59:20Z" | "2009-02-10T07:13:20Z" |
264,975 | Bug 264975 Duplicate values are added when report parameter from the library has been modified | null | closed fixed | 0230846 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-17T07:02:34Z" | "2009-02-16T07:40:00Z" |
264,289 | Bug 264289 View Report button is gray if the suffix of report name is not .rptdesign | Description: View Report button is gray if the suffix of report name is not .rptdesign Build number: 2.3.2.v20090210-0730 & 2.5.0 v20090210-0630 Steps to reproduce: 1, rename the report design, change the suffix to .xml or remove the suffix 2, Check the status of View report button Expected result: We can get the report type by a handle or something else rather than the suffix of the report name. Actual result: The View Report button is gray if the suffix of report name is not .rptdesign. Actually that file is a report design. Error log: | closed fixed | 304a559 | ["UI/org.eclipse.birt.report.designer.ui.preview.web/src/org/eclipse/birt/report/designer/ui/actions/PreviewCascadingMenuGroup.java", "UI/org.eclipse.birt.report.designer.ui.preview.web/src/org/eclipse/birt/report/designer/ui/actions/PreviewToolbarMenuAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-17T06:34:28Z" | "2009-02-10T01:40:00Z" |
265,074 | Bug 265074 Master page header is disappeared if Footer height unit is % | Description: Master page header is disappeared if Footer height unit is % Build number: 2.3.2.v20090217-0730 Steps to reproduce: 1, New a master page 2, Set the Header Height to 30% or 50 % Expected result: Header is taking 30% of the height of Master page Actual result: Header is missing. Error log: | closed fixed | c8c5811 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/AreaEditPart.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-17T05:34:30Z" | "2009-02-17T03:06:40Z" |
264,813 | Bug 264813 Menu item is not displayed correctly. | null | closed fixed | 7c3cbaa | ["UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/schematic/action/TextSaveAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-17T05:16:46Z" | "2009-02-13T10:13:20Z" |
260,681 | Bug 260681 Allow JDBC driver manager dialog to add multiple jars at one time through FileDialog | Eclipse Build ID: I20081211-1908 Steps To Reproduce: 1.Go the JDBC driver manager dialog. 2.Press "Add" button to add new jar in the jar list. 3.Only one jar file can be added in at one time. That is quite inconvinient for the user if he wants to add multiple jar files under the same folder. So the jar file selection dialog should support multiple selection. | verified fixed | d53f3cf | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/dialogs/JdbcDriverManagerDialog.java", "data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/util/JdbcToolKit.java", "data/org.eclipse.birt.report.data.oda.jdbc/src/org/eclipse/birt/report/data/oda/jdbc/JDBCDriverManager.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-16T09:05:52Z" | "2009-01-12T08:46:40Z" |
263,849 | Bug 263849 BirtMath.multiple() should be BirthMath.multiply() | The function multiplies numbers, and should be renamed as multiply(). Multiple has a different meaning, e.g., 14, 21, and 35 are multiples of 7. | verified fixed | 2c339f5 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/internal/function/impl/FunctionProviderImpl.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/script/functionservice/IScriptFunction.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/script/functionservice/IScriptFunctionCategory.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/script/functionservice/impl/Category.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/script/functionservice/impl/ScriptFunction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-16T08:29:41Z" | "2009-02-05T18:53:20Z" |
264,654 | Bug 264654 Can not delete XML source of a new report by pressing Backspace | Description: Can not delete XML source of a new report by pressing Backspace Build number: 2.5.0.v20090212-0630 Steps to reproduce: 1, New a report 2, Go to XML Source tab 3, Press Ctrl+A 4, Press Backspace Expected result: XML Source is deleted Actual result: The focus is lost and failed to delete XML Source. Error log: | closed fixed | 46aa553 | ["UI/org.eclipse.birt.report.designer.ui.editor.xml.wtp/src/org/eclipse/birt/report/designer/ui/editor/pages/xml/ReportXMLSourceEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/pages/ReportXMLSourceEditorFormPage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-16T05:20:22Z" | "2009-02-12T09:13:20Z" |
250,237 | Bug 250237 Update the extended dataitem's properties as local after clicking OK button | Description: To be consistent with text item, update the extended dataitem's properties as local after clicking OK button in edit dialog no matter whether user made any changes or not. Build number: 2.5.0.v20081009-0630 Steps to reproduce: 1, Extend a dataitem from a report library 2, Click OK button 3, Edit the dataitem again and do some modification in expression 4, Click OK Expected result: To be consistent with text item, if click OK button in edit dialog, it means the properties are edited no matter whether user made any changes or not. So after step2, the dataitem's properties should be updated as local properties. Actual result: Only do modification will update the local properties in dataitem's expression. Error log: | closed fixed | 188c417 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/DesignerConstants.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ReportElementEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/tools/LibraryElementsToolHandleExtends.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/ReportTemplateTransferDropTargetListener.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-16T02:54:32Z" | "2008-10-09T08:13:20Z" |
264,629 | Bug 264629 [Automation][Smoke]Only first and last data row can be show in table | Description: Only first and last data row can be show in table, the row between 1st and last row disappear. Test Date: 20090212 Test Build: BIRT2.5.0 v20090212-0630 Step to reproduce: 1. Create a new report 2. Create a table with a dataset which has more than 2 rows. 3. Preview it Expect result: All the rows can be previewed correctly. Actual result: Only 1st and last row show on screen. | closed fixed | 1901df1 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/ReportQueryBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-12T09:09:25Z" | "2009-02-12T03:40:00Z" |
259,924 | Bug 259924 The sorting result of level which is show empty rows is not correct | null | closed fixed | 964a31a | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/olap/cursor/RowDataAccessor.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/olap/driver/DimensionAxis.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-12T07:43:48Z" | "2009-01-05T01:46:40Z" |
263,311 | Bug 263311 BirtDateTime.month() and weekDay() do not return locale-specific results | 1. Create data elements that use the BirtDateTime.month() and weekDay() functions. Specify the options to display the full or abbreviated month/weekday names. 2. Preview the report. Month/weekday names appear in English. 3. Change the preview locale. 4. Preview the report again. Month/weekday names still appear in English. | verified fixed | 0da18f2 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/script/functionservice/impl/CategoryWrapper.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/api/DataEngineContext.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/QueryExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-12T06:54:40Z" | "2009-02-02T21:26:40Z" |
262,673 | Bug 262673 Change the name of arguments in BirtDateTime functions | In the expression builder, the BirtDateTime.diff<time> functions display the following syntax: diff<time>(source, target) : Integer The argument names, source and target, are not descriptive. I suggest changing them to date1 and date2. | verified fixed | 7c72063 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/script/functionservice/impl/CategoryWrapper.java", "data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/bre/BirtMath.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T10:31:04Z" | "2009-01-27T21:00:00Z" |
264,455 | Bug 264455 Report layout is incorrect when opening a report which orientation is RTL | null | closed fixed | f44c823 | ["UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/pages/ReportLayoutEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/pages/ReportMasterPageEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/MasterPageEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ReportDesignEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/UIUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T09:20:45Z" | "2009-02-11T02:40:00Z" |
259,729 | Bug 259729 Invalid report should throws proper exception rather than NPE | null | closed fixed | 042744d | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/ReportQueryBuilder.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/i18n/MessageConstants.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/v4/ListingElementExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T07:08:19Z" | "2008-12-29T03:06:40Z" |
261,792 | Bug 261792 [Accessibility] Shortcut keys are missing and the static text can be accessed in "Errors Encountered" dialogue [17] | null | closed fixed | 9adb3b0 | ["chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/TriggerDataComposite.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T06:37:11Z" | "2009-01-21T12:13:20Z" |
261,979 | Bug 261979 Error when sorting on aggregation | Description: When trying to sort a table using an aggregation column, the following error is returned: The following items have errors: Table (id = 1179): + Fail to compute value from sort, group or filter expression. A BIRT exception occurred: There are errors evaluating script "row["Aggregation"]": Target Aggregation Name does not exist (<inline>#1).. See next exception for more information. There are errors evaluating script "row["Aggregation"]": Target Aggregation Name does not exist (<inline>#1). Attached is a report recreating the issue. | verified fixed | 170a74c | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/SortkeyBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T05:34:01Z" | "2009-01-22T10:26:40Z" |
261,316 | Bug 261316 Bar width in multiple series Bar-Line charts | Build ID: M20071023-1652 - Version 3.3.1.1 Steps To Reproduce: 1.Create a bar graph with 3 series 2.Set last two series to line type 3.Base series bar width remains narrow, although other bar series have been converted to line type More information: When changing the chart type to stacked-bar, the width of the base series bars is adjusted properly, however, in this case the additional line type series appear stacked too, indicating wrong values compared to Y-axis scale. In version Version: 3.4.1 - Build id: M20080911-1700 additional series 'stacked' property can be undone, but the base series bar widt appears narrow again. Solved one thing, recreated the other issue... | verified fixed | f54484a | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withaxes/PlotWith2DAxes.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withaxes/StackedSeriesLookup.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T04:37:44Z" | "2009-01-16T10:00:00Z" |
263,913 | Bug 263913 [Regression]NPE is thrown when running swt or swing interactivity viewer | When running swt or swing interactivity viewer, following exception is thrown. It should be a regression against 2.3.2 and 2.5.0. org.eclipse.birt.chart.exception.ChartException at org.eclipse.birt.chart.factory.Generator.render(Generator.java:1373) at org.eclipse.birt.chart.examples.api.interactivity.SwtInteractivityViewer.paintControl(SwtInteractivityViewer.java:169) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:217) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Composite.WM_PAINT(Composite.java:1424) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3842) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4541) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2371) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3420) at org.eclipse.birt.chart.examples.api.interactivity.SwtInteractivityViewer.main(SwtInteractivityViewer.java:106) Caused by: java.lang.NullPointerException at org.eclipse.birt.chart.render.BaseRenderer.renderLabel(BaseRenderer.java:1762) at org.eclipse.birt.chart.render.BaseRenderer.renderTitle(BaseRenderer.java:1808) at org.eclipse.birt.chart.render.AxesRenderer.render(AxesRenderer.java:231) at org.eclipse.birt.chart.factory.Generator.render(Generator.java:1368) ... 13 more | verified fixed | 81cf7af | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/factory/Generator.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/impl/ColorDefinitionImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/render/DeferredCache.java", "chart/org.eclipse.birt.chart.examples/src/org/eclipse/birt/chart/examples/api/interactivity/SwingInteractivityViewer.java", "chart/org.eclipse.birt.chart.examples/src/org/eclipse/birt/chart/examples/api/interactivity/SwtInteractivityViewer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T03:30:21Z" | "2009-02-06T08:46:40Z" |
262,749 | Bug 262749 Series palette improvement with large number of series | If the number of series is greater than the number of colors defined in the Series palette, the same color will repeat again in the same order. The customer would like the possibility to have an automatic gradation of the colors for the second iteration in order to still see the differences between the series. | resolved fixed | 0b28da9 | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/render/BaseRenderer.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/util/FillUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T03:06:09Z" | "2009-01-28T13:40:00Z" |
263,594 | Bug 263594 A same chart in two different pages is not displayed with the web viewer | null | verified fixed | 7e9cf5a | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/v4/ContainerExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T02:01:10Z" | "2009-02-04T06:46:40Z" |
199,976 | Bug 199976 Column width is ignored if total width is larger than page width[1203] | Description: Column width is ignored if total columns' width larger than page width Build number:2.2.1.v20070815 Steps to reproduce: 1. Insert a grid with two columns. 2. Set first column width to 2in, set second column width to 7 in. 3. Preview in excel Expected result: Display column with 2in and 7 in. Actual result: Display two columns with same default width. Error log:n/a | verified fixed | 69e1292 | ["engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/layout/ExcelLayoutEngine.java", "engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/layout/LayoutUtil.java", "engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/layout/XlsTable.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-11T01:51:36Z" | "2007-08-15T01:06:40Z" |
188,049 | Bug 188049 datasets are not fetched in single transaction | I have seen one report with strange content. It could happen if two datasets were not executed in single transaction. All data sets shall run within single transaction, because otherwise it may happen that data is modified between fetching first and second data set. | verified fixed | b1f5ceb | ["data/org.eclipse.birt.report.data.oda.jdbc/src/org/eclipse/birt/report/data/oda/jdbc/Connection.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-10T09:23:41Z" | "2007-05-21T09:33:20Z" |
262,115 | Bug 262115 Exception occurs if Chart share result from a table which has empty results | null | closed fixed | fd016bd | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/CacheResultIterator.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-10T07:13:37Z" | "2009-01-23T03:06:40Z" |
263,760 | Bug 263760 [Automation][Smoke]ReportServiceException is thrown out when preview chart report in PDF | Description: ReportServiceException is thrown out when preview chart report in PDF. Test Date: 20090205 Test Build: BIRT2.5.0 v20090205-1243 Step to reproduce: 1. Create a report with a chart 2. Preview it as PDF format Error log: Caused by: java.lang.ClassCastException: org.eclipse.birt.report.engine.ir.ExtendedItemDesign at org.eclipse.birt.report.engine.layout.pdf.emitter.ConcreteImageLayout.<init>(ImageLayout.java:200) at org.eclipse.birt.report.engine.layout.pdf.emitter.ImageLayout.initialize(ImageLayout.java:109) at org.eclipse.birt.report.engine.layout.pdf.emitter.PDFLayoutEmitter.startContent(PDFLayoutEmitter.java:291) at org.eclipse.birt.report.engine.layout.pdf.emitter.PDFLayoutEmitterProxy.startContent(PDFLayoutEmitterProxy.java:248) at org.eclipse.birt.report.engine.emitter.ContentEmitterAdapter.startImage(ContentEmitterAdapter.java:174) at org.eclipse.birt.report.engine.emitter.CompositeContentEmitter.startImage(CompositeContentEmitter.java:274) at org.eclipse.birt.report.engine.emitter.ContentEmitterUtil.startContent(ContentEmitterUtil.java:74) at org.eclipse.birt.report.engine.layout.html.buffer.HTMLPageBuffer.startContent(HTMLPageBuffer.java:116) at org.eclipse.birt.report.engine.layout.html.buffer.TableBreakBuffer.startContent(TableBreakBuffer.java:229) at org.eclipse.birt.report.engine.layout.html.HTMLLeafItemLM.start(HTMLLeafItemLM.java:49) at org.eclipse.birt.report.engine.layout.html.HTMLAbstractLM.layout(HTMLAbstractLM.java:134) | closed fixed | d16da93 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/layout/pdf/emitter/ImageLayout.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-05T10:24:55Z" | "2009-02-05T10:33:20Z" |
263,725 | Bug 263725 Image defined in Text leads NPE when previewing in PDF | null | closed fixed | b50b550 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/layout/pdf/emitter/ImageLayout.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-05T02:51:27Z" | "2009-02-05T02:13:20Z" |
247,610 | Bug 247610 Exception is thrown out when a table share the result set of a list who share the result set of a chart [0005] | null | closed fixed | 85826e2 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/ReportQueryBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-04T06:31:56Z" | "2008-09-17T08:26:40Z" |
230,084 | Bug 230084 [General designer usability] Can't set BIRT resource folder to <project>/Shared | Suppose I create a project and use resource files. At first, I put resources in my root folder. Over time, as the number of files increase, I decide to put them in a folder within my project: "<project>/Shared". Now, I've already got a number of reports, and I don't want to change them. I just want to tell BIRT to use "<project>/Shared" as my resource folder. Open Top Menu --> Window --> Preferences --> Report Design --> Resources. Change the resource setting to "<Current Project Folder>\Shared". Let's test this. Put an image in "<project>/Shared", call it "test.png." Create a new report. Drag an image from the Palette. Set it to "Image file in shared resources". Notice that the list of available images is blank. Evidentially BIRT can't handle the "<Current Project Folder>\Shared". Yet, BIRT did not complain when I set this in the preferences dialog. It just silently failed when attempting to use the folder. Expected: 1) If BIRT does not support resource folders relative to the current project, then BIRT should give an error at the time that this syntax is used rather than failing silently later. 2) Better, BIRT should support the "<Current Project Folder>\Shared" notation (or some equivalent). Apparently the workaround is to set the Resource path to the absolute location of my project's shared resources: "c:/paul/projects/Example Reports/Shared." However, this is not terribly portable. And, it works for only one project. That is, if I have more than one project, I need to leave the setting at the default; I can't push resources down one level without explicitly including the path in the resource name. Expected to be able to make a statement that "for all projects, resources are in <Current Project Folder>\Shared." | verified fixed | 64f8aa9 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/SessionHandleAdapter.java", "UI/org.eclipse.birt.report.designer.ui.editor.xml.wtp/src/org/eclipse/birt/report/designer/ui/editor/pages/xml/ReportXMLSourceEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/pages/ReportLayoutEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/pages/ReportMasterPageEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/editors/pages/ReportXMLSourceEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui.editors/src/org/eclipse/birt/report/designer/internal/ui/editors/FileReportProvider.java", "UI/org.eclipse.birt.report.designer.ui.editors/src/org/eclipse/birt/report/designer/ui/editors/MultiPageReportEditor.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/IDEFileReportProvider.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/IDEResourcePageHelper.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/ResourcePageHelperProvider.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/dialog/StringVariableSelectionDialog.java", "UI/org.eclipse.birt.report.designer.ui.lib/src/org/eclipse/birt/report/designer/ui/editors/LibraryLayoutEditorFormPage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/IResourceEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ImageEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/UIUtil.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/ReportPlugin.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/preferences/ResourceConfigurationBlock.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-03T06:34:45Z" | "2008-05-03T21:26:40Z" |
261,965 | Bug 261965 [Automation] [Regression] Exception throws out when preview an invalid chart. | null | closed fixed | 295376b | ["chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/ChartReportItemPresentationBase.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-02T05:33:01Z" | "2009-01-22T07:40:00Z" |
261,595 | Bug 261595 The chart's two series binding to different columns are the same when preview if they link to the same target report [13] | null | closed fixed | cbd1c12 | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/factory/AbstractGroupedDataRowExpressionEvaluator.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/internal/datafeed/DataProcessor.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/internal/datafeed/GroupingLookupHelper.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-01T09:53:48Z" | "2009-01-20T08:26:40Z" |
261,809 | Bug 261809 Last word in Label and Text items with long Content is wrapped in PPT | If a label, text or dynamic text item contains long content, such as 'aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk lll', then the last word 'lll' will be wrapped to the next line in PPT output, even if the label item is long enough to contain the text. If the last word is removed, so that the new last word is 'kkk', then 'kkk' will be wrapped to the next line, and so on... The last word of the content should not be wrapped if the label or text item is long enough to display the complete text without wrapping. This problem is also seen in 2_5_0-N20090113. The attached report demonstrates the problem when converted to PPT via BRD Run | View Report | As PPT If this is a defect, could we please also fix it in BIRT 2.3.2 release? | verified fixed | 7291515 | ["engine/org.eclipse.birt.report.engine.emitter.ppt/src/org/eclipse/birt/report/engine/emitter/ppt/PPTWriter.java", "engine/org.eclipse.birt.report.engine.emitter.ppt/src/org/eclipse/birt/report/engine/emitter/ppt/device/PPTPage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-02-01T07:04:41Z" | "2009-01-21T12:13:20Z" |
262,136 | Bug 262136 Set column page break through script does not work correctly when preview in Web Viewer [0002] | null | closed fixed | 122ce57 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/optimize/ExecutionOptimize.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-24T06:07:12Z" | "2009-01-23T08:40:00Z" |
259,613 | Bug 259613 When the chart title, axis title and legend title are very long and set "Max Percent" to a large number, the chart is in a mess [13] | null | closed fixed | 48a4cfc | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/LabelLimiter.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withaxes/AutoScale.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withaxes/OneAxis.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withaxes/PlotWith2DAxes.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withaxes/PlotWith3DAxes.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withaxes/PlotWithAxes.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/factory/Generator.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/factory/RunTimeContext.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/internal/layout/LayoutManager.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/impl/BoundsImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/layout/impl/TitleBlockImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/render/AxesRenderHelper.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/render/BaseRenderer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-23T06:34:19Z" | "2008-12-24T03:40:00Z" |
259,689 | Bug 259689 [Automation][Regression]A blank page with master page in PDF | null | closed fixed | 9b0d793 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/layout/html/buffer/HTMLPageBuffer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-23T06:10:45Z" | "2008-12-26T02:53:20Z" |
261,960 | Bug 261960 [Automation][Regression]Style of grid disappeared | null | closed fixed | d64b235 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/parser/EngineIRVisitor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-22T09:28:57Z" | "2009-01-22T04:53:20Z" |
261,961 | Bug 261961 [Automation][Regression]Xls file exported by report can not open | null | closed fixed | 521de28 | ["engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/ExcelEmitter.java", "engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/layout/ExcelLayoutEngine.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-22T09:16:11Z" | "2009-01-22T07:40:00Z" |
247,842 | Bug 247842 [Improve Page Break Management] Ability to add conditions for page break | null | verified fixed | ab73570 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/IColumnInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/ITableInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/IColumn.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ColumnInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/TableInstance.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-22T02:45:44Z" | "2008-09-18T15:00:00Z" |
261,749 | Bug 261749 [Automation][Regression]Crosstab results have inconsistent number format between frameset and preview mode | null | closed fixed | f74f1df | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/impl/AbstractContent.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/ir/EngineIRReader.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/ir/EngineIRWriter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/ir/IOConstants.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-21T09:51:43Z" | "2009-01-21T03:53:20Z" |
261,772 | Bug 261772 [regression] Hyperlink dialog can not be correctly resize | BuildId: <2.5.0.v20090121-0630> Steps to reproduce: 1. New a report -> Insert label 2. Property editor -> Hyperlink 3. Resize the pop-up hyperlink dialog Expected result: The dialog can be resize correctly, which used to work in 2.3.1 Actual result: The dialog did not redraw correctly after resize. Error Log: N/A | closed fixed | fe970e4 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/HyperlinkBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-21T08:45:20Z" | "2009-01-21T09:26:40Z" |
261,308 | Bug 261308 If reopen the Resource Explorer View and edit the path of resource folder, it will not refresh immediately | Description: If reopen the Resource Explorer View and edit the path of resource folder, it will not refresh immediately Build number: 2.5.0.v20090116-0630 Steps to reproduce: 1, Close the Resource Explorer View 2, Go to preferences and edit the path of resource folder 3, Reopen the Resource Explorer View again 4, Go to preferences and change the path of resource folder Expected result: After step4, the Resource Explorer View should refresh immediately. Actual result: After step4, the Resource Explorer View didn't refresh immediately. Error log: | closed fixed | 5e4a977 | ["UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerView.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-21T06:20:53Z" | "2009-01-16T07:13:20Z" |
261,746 | Bug 261746 Eclipse is hang up if save the report when workspace is building | null | closed fixed | d46618c | ["UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/IDEFileReportProvider.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/WorkspaceOperationRunner.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-21T06:18:43Z" | "2009-01-21T01:06:40Z" |
261,760 | Bug 261760 [Automation][Regression]Default font style is changed in cross table | null | closed fixed | 705120e | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/impl/ReportContent.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/ir/Report.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/parser/EngineIRVisitor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-21T06:14:29Z" | "2009-01-21T06:40:00Z" |
261,602 | Bug 261602 [Automation][Smoke]Failed to preview Crosstab report | null | closed fixed | 01aa1b0 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/parser/EngineIRVisitor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-20T09:44:40Z" | "2009-01-20T08:26:40Z" |
261,447 | Bug 261447 [Accessibility] Shortcut key should be provided in Data Explorer View context menu [17] | null | closed fixed | a8e6057 | ["UI/org.eclipse.birt.report.designer.ui.cubebuilder/src/org/eclipse/birt/report/designer/ui/cubebuilder/provider/CubesNodeProvider.java", "UI/org.eclipse.birt.report.designer.ui.views/src/org/eclipse/birt/report/designer/internal/ui/views/data/providers/DataSourcesNodeProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/odadatasource/wizards/WizardUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-20T06:46:04Z" | "2009-01-19T04:40:00Z" |
260,229 | Bug 260229 The report design name should not be "1" under the script node [00] | null | closed fixed | ea9624d | ["model/org.eclipse.birt.report.model.tests/test/org/eclipse/birt/report/model/core/ModuleTest.java", "model/org.eclipse.birt.report.model.tests/test/org/eclipse/birt/report/model/parser/ReportDesignParseTest.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/DesignElementHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ModuleUtil.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/LibraryCommand.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/core/DesignSession.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/core/Module.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/parser/DesignParseState.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/parser/ModuleState.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/parser/ReportElementState.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/util/ReportDesignSerializer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-20T03:16:18Z" | "2009-01-07T09:20:00Z" |
261,578 | Bug 261578 [smoke]NPE occurs when creating a label and deleting a report item | Description: NPE block the deleting operation Build number: 2.5.0.v20090120-0630 Steps to reproduce: 1, Select a report item 2, Press Delete key Expected result: The report item is deleted successfully Actual result: NPE blocks the deleting Error log: java.lang.NullPointerException at org.eclipse.birt.report.designer.internal.ui.command.CommandWrap4DE.getLabel(CommandWrap4DE.java:79) at org.eclipse.gef.ui.actions.StackAction.getLabelForCommand(StackAction.java:43) at org.eclipse.gef.ui.actions.UndoAction.refresh(UndoAction.java:81) at org.eclipse.gef.ui.actions.WorkbenchPartAction.update(WorkbenchPartAction.java:155) at org.eclipse.birt.report.designer.internal.ui.editors.parts.GraphicalEditorWithFlyoutPalette.updateActions(GraphicalEditorWithFlyoutPalette.java:718) at org.eclipse.birt.report.designer.internal.ui.editors.parts.GraphicalEditorWithFlyoutPalette.updateStackActions(GraphicalEditorWithFlyoutPalette.java:727) at org.eclipse.birt.report.designer.ui.editors.pages.ReportLayoutEditorFormPage$1.stackChanged(ReportLayoutEditorFormPage.java:54) at org.eclipse.birt.report.model.activity.ActivityStack.sendNotifcations(ActivityStack.java:853) at org.eclipse.birt.report.model.activity.ActivityStack.commit(ActivityStack.java:723) at org.eclipse.birt.report.designer.internal.ui.command.WrapperCommandStack.execute(WrapperCommandStack.java:93) at org.eclipse.gef.ui.actions.WorkbenchPartAction.execute(WorkbenchPartAction.java:76) at org.eclipse.gef.ui.actions.DeleteAction.run(DeleteAction.java:125) at org.eclipse.birt.report.designer.internal.ui.editors.parts.GraphicalEditorWithFlyoutPalette$3.run(GraphicalEditorWithFlyoutPalette.java:346) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:119) | closed fixed | 15085bf | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/command/CommandWrap4DE.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-20T02:15:25Z" | "2009-01-20T02:53:20Z" |
261,329 | Bug 261329 [Accessibility] Problems when using keyboard to navigate in Layout view [17] | Description: Problems when using keyboard to navigate in Layout view. Build number: 2.5.0.v20090113-0630 Steps to reproduce: 1. In the Layout view, use the keyboard to add report items. Expected result: when user want to create new report item, the focus should be on the Layout view. So user should be able to use keyboard to move between the report items and Layout view. Actual result: Only can the Tab button to move between the report items. Error Log: N/A | closed fixed | f9f4473 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/parts/ReportDomainEventDispatcher.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ReportDesignEditPart.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-19T09:35:26Z" | "2009-01-16T10:00:00Z" |
261,314 | Bug 261314 Problems when you input an invalid URL in Marker Icon Selector dialog. | null | verified fixed | d80d445 | ["chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/MarkerIconDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-19T08:41:15Z" | "2009-01-16T10:00:00Z" |
261,456 | Bug 261456 [Automation][Regression]Problem occurs when open xls file eported by report | null | closed fixed | 91762fc | ["engine/org.eclipse.birt.report.engine.emitter.prototype.excel/src/org/eclipse/birt/report/engine/emitter/excel/layout/ExcelLayoutEngine.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-19T08:05:05Z" | "2009-01-19T07:26:40Z" |
261,445 | Bug 261445 [Accessibility] Shortcut key confiliction happens in crosstab measure context menu [17] | null | closed fixed | 2e1cf5e | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/command/CommandWrap4DE.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-19T07:10:44Z" | "2009-01-19T04:40:00Z" |
259,874 | Bug 259874 IDataExtractionExtension has method initilize | The initilize method in this interface should be deprecated and replaced by the correctly spelled initialize. | verified fixed | c447214 | ["engine/org.eclipse.birt.report.engine.dataextraction.csv/src/org/eclipse/birt/report/engine/dataextraction/csv/CSVDataExtractionImpl.java", "engine/org.eclipse.birt.report.engine.dataextraction/src/org/eclipse/birt/report/engine/dataextraction/impl/CommonDataExtractionImpl.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTaskV0.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTaskV1.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/extension/DataExtractionExtensionBase.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/extension/IDataExtractionExtension.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-19T03:33:09Z" | "2009-01-02T21:00:00Z" |
261,440 | Bug 261440 Using constant in format-expr leads NPE[0802] | null | closed fixed | 962f90d | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/template/TemplateExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-19T02:41:56Z" | "2009-01-19T01:53:20Z" |
261,320 | Bug 261320 Set Fractional Metrics to off by rendering in case of low dpi. | null | verified fixed | f873e0f | ["chart/org.eclipse.birt.chart.device.extension/src/org/eclipse/birt/chart/device/swing/SwingDisplayServer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-16T09:40:06Z" | "2009-01-16T10:00:00Z" |
259,693 | Bug 259693 Data Engine needs to provides the metadata based on the column bindings | Build ID: BIRT 2.5 Steps To Reproduce: DTE now provides metadata of the dataset level. When executing a query and getting its metadata, it's supposed to get the metadata of the column binding of this query. More information: | verified fixed | a78323d | ["data/org.eclipse.birt.data.tests/test/org/eclipse/birt/data/engine/api/ClobAndBlobTest.java", "data/org.eclipse.birt.data.tests/test/org/eclipse/birt/data/engine/api/ScriptedDSTest.java", "data/org.eclipse.birt.data.tests/test/org/eclipse/birt/data/engine/binding/FeaturesTest.java", "data/org.eclipse.birt.data.tests/test/org/eclipse/birt/data/engine/impl/ResultMetaDataTest.java", "data/org.eclipse.birt.data.tests/test/org/eclipse/birt/data/engine/impl/Util.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ColumnBindingMetaData.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/DataSetRuntime.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/IQueryExecutor.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedJointDataSourceQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/QueryExecutor.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ResultIterator.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ServiceForQueryResults.java", "data/org.eclipse.birt.report.data.adapter/src/org/eclipse/birt/report/data/adapter/impl/DataSetMetaDataHelper.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-16T09:07:48Z" | "2008-12-26T05:40:00Z" |
259,776 | Bug 259776 "Hyperlink Options" dialog shows only part of this dialog when eclipse is not full-screen display. | Description: "Hyperlink Options" dialog shows only part of this dialog when eclipse is not full-screen display. Build number: 2.3.2.v20081230-0630 Steps to reproduce: 1.Set Eclipse main window as semi-screen display. 2.New a report, insert a label 3.Select the label, select Property Editor->Hyperlink->button(open hyperlink options) 4."Hyperlink Options" dialog pops up, but only shows part of this dialog. (Please refer to the screenshot) Expected result: "Hyperlink Options" dialog should be fully displayed no matter eclipse's main window is full-screen display or semi-screen display. Actual result: "Hyperlink Options" dialog shows only part of this dialog when eclipse is not full-screen display. Error logs: N/A | verified fixed | ec4cde1 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/HyperlinkBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-16T06:19:21Z" | "2008-12-30T06:53:20Z" |
164,923 | Bug 164923 Format mask | this.style can be used only for single column, - this is not working for html text with an expression such as <value-of format="###,###,###.00"> row["AMOUNT"] </VALUE-OF> NOW THE NUMERIC FORMAT WILL BE AVAILABLE AS A PARAMETER SUCH AS params["NumericFormat"] when i write the script in oncreate <value-of format=params["NumericFormat"]> row["AMOUNT"] </VALUE-OF> this does not seems to work. The formating is ignored. Is there any workaround? regards | verified fixed | 4b83804 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/template/TemplateParser.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/template/TextTemplate.java", "engine/org.eclipse.birt.report.engine.tests/test/org/eclipse/birt/report/engine/executor/template/TemplateExecutorTest.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/template/TemplateExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/ir/TextItemDesign.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-16T03:47:09Z" | "2006-11-17T05:06:40Z" |
214,180 | Bug 214180 Render chart reportlet in table group will contain table caption[0601] | Description: Render chart reportlet in table group will contain table caption Build number:2.3.0.v20080103 Steps to reproduce: 1. Preview attached report in Web Viewer. 2. Append "&__bookmark=USA&__isreportlet=true"behind the browser url, press enter. Expected result: Display Chart item as reportlet only, the chart reportlet has three data. Actual result: Display correct chart report containing three data but at the same time, table caption displays, too. Table caption belongs to outer table item and it should not be generated as a part of chart reportlet. Error log:n/a | verified fixed | d0831ba | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/v4/ReportletBodyExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/v4/ReportletExecutorV4.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-16T03:46:35Z" | "2008-01-03T00:26:40Z" |
261,154 | Bug 261154 Error in chart builder when you set series invisible. | null | closed fixed | 59d6ead | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/util/ChartUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-16T02:55:40Z" | "2009-01-15T09:00:00Z" |
260,249 | Bug 260249 Missing JavaScript error description in specific wrong expression | Birt 2.3.2 build 20090107 Steps to reproduce: 1. Create a new report design. 2. Add a data item. 3. Set the item's expression to BirtStr.left("abcdef", -1) 4. View the report Expected result: org.eclipse.birt.report.engine.api.EngineException: There are errors evaluating script "BirtStr.left("abcd", -1)": {1}. Where {1} is replaced by the proper JavaScript issue. Actual result: The {1} is not replaced and appears as is. More information: For other expression errors, like for the expression abcdef, the JavaScript error will appear clearly. The same problem exists when using the expression builder for a computed column, then previewing the data set. | verified fixed | b9ac097 | ["data/org.eclipse.birt.core.script.function/src/org/eclipse/birt/core/script/function/bre/BirtStr.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-15T09:57:56Z" | "2009-01-07T12:06:40Z" |
260,988 | Bug 260988 [Regression] The text and dynamic text binding to the same data set disappear when preview [0001] | null | closed fixed | 44ce949 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/cache/ResultObjectUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-15T07:56:12Z" | "2009-01-14T10:46:40Z" |
255,837 | Bug 255837 Group sorting inconsistent when a sort condition is ascending | When all sort conditions are descending, I do not see any inconsistencies. I have attached an example report using the Classic Models database. Note the inconsistencies of the ascending sort conditions. Different combinations yield different results. In the first table, note that the MINQUANTITYORDERED sort seems to have no effect at all. If you swap the order of the sort conditions, it seems to have the reverse effect. In the second table, note that the group is sorted by FIRSTNAME descending, regardless of the position of the sort conditions. This is flagged as major because complex, dynamic sorting on a group is a requirement for our product release. | verified fixed | 9b4bf66 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupCalculationUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-15T05:45:49Z" | "2008-11-19T15:53:20Z" |
258,778 | Bug 258778 The icon of the extended embedded image does not have the link [01] | null | closed fixed | a775c04 | ["UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/action/AddElementtoReport.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-14T06:10:46Z" | "2008-12-15T08:33:20Z" |
260,818 | Bug 260818 Should enable axis labe ellipsis when axis is category style | Currently, only if axis is text type, the axis label ellipsis is enabled. However, if axis is not text type, but is category style, the ellipsis UI is disabled. This should be treated as the same case. Expected result: If axis is Text type or category style, the axis label ellipsis should be enabled. | verified fixed | 28fce6d | ["chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/format/popup/axis/AxisLabelSheet.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-13T09:51:38Z" | "2009-01-13T09:46:40Z" |
260,680 | Bug 260680 Failed to preview Chart when deploying in Oracle Application Server | Description: Deploy birt runtime in Oracle Application Server(10.1.3.1.0). NPE occurs when previewing a report which has Chart. I have tried other reports, they were working well. Build number: 2.3.2.v20090112 & 2.5.0 v20090112 builds Steps to reproduce: 1, download birt.war and copy commons-logging-api.jar into WEB-INF/lib folder 2, deploy it in Oracle Application Server 3, run the report which has a simple chart Expected result: The chart can be previewed well. Actual result: NPE occrus when preview Chart in Oracle Application Server Error log: org.eclipse.birt.report.service.api.ReportServiceException: Error happened while running the report at org.eclipse.birt.report.service.ReportEngineService.throwDummyException(ReportEngineService.java:1059) at org.eclipse.birt.report.service.ReportEngineService.runReport(ReportEngineService.java:1261) at org.eclipse.birt.report.service.BirtViewerReportService.runReport(BirtViewerReportService.java:155) at org.eclipse.birt.report.service.actionhandler.BirtRunReportActionHandler.__execute(BirtRunReportActionHandler.java:81) at org.eclipse.birt.report.service.actionhandler.BirtChangeParameterActionHandler.runReport(BirtChangeParameterActionHandler.java:58) at org.eclipse.birt.report.service.actionhandler.AbstractChangeParameterActionHandler.__execute(AbstractChangeParameterActionHandler.java:53) at org.eclipse.birt.report.service.actionhandler.AbstractBaseActionHandler.execute(AbstractBaseActionHandler.java:90) at org.eclipse.birt.report.soapengine.processor.AbstractBaseDocumentProcessor.__executeAction(AbstractBaseDocumentProcessor.java:47) at org.eclipse.birt.report.soapengine.processor.AbstractBaseComponentProcessor.executeAction(AbstractBaseComponentProcessor.java:143) at org.eclipse.birt.report.soapengine.processor.BirtDocumentProcessor.handleChangeParameter(BirtDocumentProcessor.java:100) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.birt.report.soapengine.processor.AbstractBaseComponentProcessor.process(AbstractBaseComponentProcessor.java:112) at org.eclipse.birt.report.soapengine.endpoint.BirtSoapBindingImpl.getUpdatedObjects(BirtSoapBindingImpl.java:66) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397) at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186) at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323) at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32) at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118) at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83) at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454) at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281) at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699) at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.doPost(BirtSoapMessageDispatcherServlet.java:265) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.service(BirtSoapMessageDispatcherServlet.java:122) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64) at org.eclipse.birt.report.filter.ViewerFilter.doFilter(ViewerFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448) at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) Caused by: org.eclipse.birt.report.engine.api.EngineException: Error happened while running the report at org.eclipse.birt.report.engine.api.impl.RunTask.doRun(RunTask.java:234) at org.eclipse.birt.report.engine.api.impl.RunTask.run(RunTask.java:78) at org.eclipse.birt.report.service.ReportEngineService.runReport(ReportEngineService.java:1252) ... 44 more Caused by: java.lang.NullPointerException at org.eclipse.birt.chart.reportitem.ChartReportItemUtil.isBaseGroupingDefined(ChartReportItemUtil.java:499) at org.eclipse.birt.chart.reportitem.AbstractChartBaseQueryGenerator.createBaseGroupingDefinition(AbstractChartBaseQueryGenerator.java:685) at org.eclipse.birt.chart.reportitem.AbstractChartBaseQueryGenerator.initCategoryGrouping(AbstractChartBaseQueryGenerator.java:496) at org.eclipse.birt.chart.reportitem.AbstractChartBaseQueryGenerator.generateGroupBindings(AbstractChartBaseQueryGenerator.java:322) at org.eclipse.birt.chart.reportitem.ChartBaseQueryHelper.createBaseQuery(ChartBaseQueryHelper.java:109) at org.eclipse.birt.chart.reportitem.ChartReportItemQueryImpl.createQuery(ChartReportItemQueryImpl.java:133) at org.eclipse.birt.chart.reportitem.ChartReportItemQueryImpl.createReportQueries(ChartReportItemQueryImpl.java:98) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.visitExtendedItem(ReportQueryBuilder.java:665) at org.eclipse.birt.report.engine.ir.ExtendedItemDesign.accept(ExtendedItemDesign.java:45) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder.build(ReportQueryBuilder.java:264) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.visitCell(ReportQueryBuilder.java:1229) at org.eclipse.birt.report.engine.ir.CellDesign.accept(CellDesign.java:156) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder.build(ReportQueryBuilder.java:264) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.visitRow(ReportQueryBuilder.java:1195) at org.eclipse.birt.report.engine.ir.RowDesign.accept(RowDesign.java:100) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder.build(ReportQueryBuilder.java:264) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.handleListingBand(ReportQueryBuilder.java:1055) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.handleListingGroup(ReportQueryBuilder.java:1114) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.visitTableItem(ReportQueryBuilder.java:916) at org.eclipse.birt.report.engine.ir.TableItemDesign.accept(TableItemDesign.java:50) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder.build(ReportQueryBuilder.java:264) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder.build(ReportQueryBuilder.java:246) at org.eclipse.birt.report.engine.data.dte.AbstractDataEngine.prepare(AbstractDataEngine.java:165) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:119) at org.eclipse.birt.report.engine.internal.executor.wrap.WrappedReportExecutor.execute(WrappedReportExecutor.java:60) at org.eclipse.birt.report.engine.internal.executor.emitter.ReportEmitterExecutor.execute(ReportEmitterExecutor.java:77) at org.eclipse.birt.report.engine.internal.executor.wrap.WrappedReportExecutor.execute(WrappedReportExecutor.java:60) at org.eclipse.birt.report.engine.internal.executor.dup.SuppressDuplciateReportExecutor.execute(SuppressDuplciateReportExecutor.java:52) at org.eclipse.birt.report.engine.presentation.ReportDocumentBuilder.build(ReportDocumentBuilder.java:210) at org.eclipse.birt.report.engine.api.impl.RunTask.doRun(RunTask.java:225) ... 46 more | closed fixed | a3b787f | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/impl/SerializerImpl.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-13T09:22:09Z" | "2009-01-12T08:46:40Z" |
260,350 | Bug 260350 Add design DPI property on report design | null | verified fixed | 2a203bb | ["model/org.eclipse.birt.report.model.tests/test/org/eclipse/birt/report/model/api/ReportDesignHandleTest.java", "model/org.eclipse.birt.report.model.tests/test/org/eclipse/birt/report/model/parser/ReportDesignParseTest.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ReportDesignHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/elements/interfaces/IReportDesignModel.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/writer/DesignWriter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-13T06:34:01Z" | "2009-01-08T07:33:20Z" |
306,749 | Bug 306749 NPE thrown when exporting a resource that exists outside of workspace | null | resolved fixed | 485c136 | ["engine/org.eclipse.birt.report.engine.emitter.wpml/src/org/eclipse/birt/report/engine/emitter/wpml/AbstractEmitterImpl.java", "engine/org.eclipse.birt.report.engine.emitter.wpml/src/org/eclipse/birt/report/engine/emitter/wpml/DocEmitterImpl.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-13T04:36:18Z" | "2010-03-22T17:46:40Z" |
259,948 | Bug 259948 Difference on ReportDesignHandle between onPrepare and beforeFactory | I want to dynamically add columns on a Table. I tried on the beforeFactory(...) method of ReportEventHandler and everything is alright. Then I tried on the onPrepare(...) method of TableEventHandler with the same code but it didn't work. In both case, I use the following code to get the TableHandle : (TableHandle) reportContext.getDesignHandle().findElement("myTableName") With the debugger, I saw that I have the same instance of reportContext in each method. But the ReportDesignHandle behind is not the same... I guess this is why I don't have the same final result. I post this problem on the birt newsgroup and Jason ask me to log it as a bug. Thanks. | verified fixed | 7298696 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/EngineTask.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-13T02:18:14Z" | "2009-01-05T12:53:20Z" |
260,496 | Bug 260496 org.eclipse.birt.report.tests.engine.emitter.html has compile error in 2.5.0 daily build v20090109-0630 | null | closed fixed | d4123e4 | ["testsuites/org.eclipse.birt.report.tests.engine.emitter.html/src/org/eclipse/birt/report/tests/engine/emitter/html/HTMLEmitter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | "2009-01-09T05:00:35Z" | "2009-01-09T03:00:00Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.