issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
timestamp[us, tz=UTC] | report_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
129,569 | Bug 129569 HCG_BIDI: Undesirable order of BiDI chars in Query window | This is BiDI specific defect. It is similar to another defect in which similar problem is reported for Expression Builder dialog. However in this defect we are talking about context of Query screen in the Edit Data Set dialog. Capital characters used in the examples below stay for BiDi (Hebrew or Arabic) characters. 1. Create DB2 data base 2. Create user with Latin name (e.g. tomer) 3. Create table under this user with mixed Latin and BiDI name (e.g. tomerREMOT) 4. Make sure that this table has columns with BiDi name (e.g. "EMAN_NMULOC") 5. Create Data Source based on the DB from 1 6. Create Data Set based on the table from 3 7. Add column name from 4 to the select portion of the SQL query 8. Add table name from 3 to the from portion of SQL query 9. Add following condition to the where portion of SQL query: tomer.tomerREMOT.EMAN_NMULOC != 'OLLEH world' Expected results: 1. select tomer.tomerREMOT.EMAN_NMULOC 2. from tomer.tomerREMOT 3. where tomer.tomerREMOT.EMAN_NMULOC != 'OLLEH world' Actual results: 1. select tomer.tomerEMAN_NMULOC.REMOT 2. from tomer.tomerREMOT 3. where tomer.tomerOLLEH' =! EMAN_NMULOC.REMOT world' As you can see in the 1st and 3rd rows the order of characters is completely ruined such that it is impossible to read the query. In the 1st row the name of column and part of table name are switched. In the 3rd row part of the constant , table name and column name are mixed. | closed fixed | 07ef0e7 | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/editors/SQLDataSetEditorPage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-25T09:35:48Z | 2006-02-27T14:20:00Z |
137,917 | Bug 137917 ImageHandle add setFile method. | According to new Resource Deployment Specification, image builder add a new image type 'File', so ImageHandle should add 'setFile' method as other type methods such as 'setURI'. | resolved fixed | dc12ab6 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ImageHandle.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-25T07:43:07Z | 2006-04-21T11:46:40Z |
136,815 | Bug 136815 Provide convenience methods to access ODA data provider info | Provide additional convenience (short-cut) methods to access ODA data provider info. This helps to make it easier for an ODA consumer application to access related info through encapsulated methods. | closed fixed | 416ae82 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odaconsumer/Driver.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-25T04:13:53Z | 2006-04-14T07:33:20Z |
132,937 | Bug 132937 Report didn't refresh when the virtual parent was deleted in the included library | Steps to reproduce: 1.New a library"LibA" and a table "table1" 2.New a report including the library 3.Drag LibA.table1 in the report 4.Delete the table in the library 5.Refresh the report Expected result: The extended table won't display in the layout Actual result: The extended table is still in the layout till reopen the report | closed fixed | 329fb6d | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/actions/RefreshModuleHandleAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-25T02:18:49Z | 2006-03-23T02:13:20Z |
134,479 | Bug 134479 Edit in XML Source cannot be reflected in Layout. | Description: Edit in XML Source cannot be reflected in Layout. Steps to reproduce: 1. New a report parameter with default value "value1" and save 2. Click XML Source, delete <property name="defaultValue">value1</property> and save. 3. Back to Layout, open parameter edit dialog Expected result: Default value is empty. Actual result: Default vlaue was still "value1", tried to change it to other values but Layout didn't detected the change. | closed fixed | dfa4683 | ["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"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-25T01:59:07Z | 2006-04-03T10:26:40Z |
134,988 | Bug 134988 [regression]Available items in Query didn't change when change data source in Edit Data Set Dialog. | Description: Available items in Query didn't change when change data source in Edit Data Set Dialog. Steps to reproduce: 1. New two different data sources. 2. New a dataset, change data source, view Available Items in Query pane. Expected result: Available Items in Query pane changed according to new Data source. Actual result: Available Items in Query pane kept unchanged. | closed fixed | 66a8b25 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/data/ui/property/AbstractPropertyDialog.java", "data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/editors/SQLDataSetEditorPage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-24T10:09:50Z | 2006-04-05T09:40:00Z |
131,465 | Bug 131465 Fetching date from MySQL returns bogus values | 1) In MySQL I have a table with a column of type integer (Year int(11). 2) I run the following SQL statement SELECT date_format(makedate(year, 1), "%Y") FROM census c 3) Which returns the following 1980 1990 2000 4) When I run the same query inside a data set I get the following: 31 39 38 30 31 39 39 30 32 30 30 30 This looks like hex code that is not being translated back to character format. | resolved fixed | 6309563 | ["data/org.eclipse.birt.report.data.oda.jdbc/src/org/eclipse/birt/report/data/oda/jdbc/ResultSetMetaData.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-24T05:12:22Z | 2006-03-12T19:00:00Z |
132,805 | Bug 132805 Set descending to outer group will affect inner group. | Description: Set descending to outer group will affect inner group. Steps to reproduce: 1. New a sample datasource and dataset from orders. 2. Drag the dataset to Layout. 3. Add a group on ordernumber, interval 10, descending. 4. Add another group on orderdate, interval day 2, ascending. 5. Preview. Expected result: Data are grouped correctly. Actual result: Inner group didn't work unless you set outer group's sort to asc. | closed fixed | 20a739f | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupCalculationUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/expression/ColumnReferenceExpression.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/QueryExecutorUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-21T10:40:57Z | 2006-03-22T09:33:20Z |
136,939 | Bug 136939 Bad heading on dialog box Edit Data Source | In BIRT 2.1RC0 build. This might be a DTP issue. I don't know. To reproduce: Edit a data source. Expected: The title of the Edit Data Source dialog is: Edit a data source Actual: The title of the Edit Data Source dialog is: Create a new data source | resolved fixed | 852b0ce | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/profile/JDBCSelectionPageHelper.java", "data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/profile/JDBCSelectionWizardPage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-21T10:08:29Z | 2006-04-16T20:40:00Z |
137,896 | Bug 137896 org.eclipse.birt.core unit test failed in daily build 20060421 | org.eclipse.birt.core unit test failed in daily build 20060421. Please see the attachment for details. Two errors (drop 2) in it were caused by the wrong file full path created by data team. Please have a look: testReadFromFile Error test\org\eclipse\birt\core\data\input\testData1.txt (The system cannot find the path specified) java.io.FileNotFoundException: test\org\eclipse\birt\core\data\input\testData1.txt (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at java.io.FileReader.<init>(FileReader.java:55) at org.eclipse.birt.core.data.ExpressionUtilTest.testReadFromFile(ExpressionUtilTest.java:124) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:330) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:204) at org.eclipse.test.CoreTestApplication.runTests(CoreTestApplication.java:35) at org.eclipse.test.CoreTestApplication.run(CoreTestApplication.java:31) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) 0.000 testReadFromFile1 Error test\org\eclipse\birt\core\data\input\testData1.txt (The system cannot find the path specified) java.io.FileNotFoundException: test\org\eclipse\birt\core\data\input\testData1.txt (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at java.io.FileReader.<init>(FileReader.java:55) at org.eclipse.birt.core.data.ExpressionUtilTest.testReadFromFile1(ExpressionUtilTest.java:148) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:330) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:204) at org.eclipse.test.CoreTestApplication.runTests(CoreTestApplication.java:35) at org.eclipse.test.CoreTestApplication.run(CoreTestApplication.java:31) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | closed fixed | 7a34cdf | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/data/ExpressionUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-21T09:42:00Z | 2006-04-21T09:00:00Z |
136,966 | Bug 136966 When set an alias on a column, the column can not be used in the cascading parameter | Description: When set an alias on a column, the column can not be used in the cascading parameter Steps to reproduce: 1. new a datasource and a dataset 2. set an alias on a column 3. new a cascading parameter, set the column with an alias as the values column Actual result: the column can not be used in the cascading parameter | closed fixed | cac3d2a | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/CascadingParametersDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-21T08:15:56Z | 2006-04-17T07:46:40Z |
137,464 | Bug 137464 apply a filter on a Join dataset in chart editor's select data page, the data preview part is not refresh | Description: use the attach file.When apply a filter on a Join dataaset in chart editor's select data page, the data preview part is not refresh. Step to reproduce: 1. open the attach file 2. creat a chart and choose select data page 3. use the Jiondataset and set the X Y series 4. chilck a filter with row["Data Set1::EMPLOYEEID"] =1 Actual result: look at the data preview after you apply the filter,you will find it haven't change any more but the filter has effect Ecepted result: the data preview should refresh after set a filter | closed fixed | 23c0d7e | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedJointDataSourceQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-21T07:37:05Z | 2006-04-19T09:46:40Z |
137,116 | Bug 137116 row[0] % 2 Equal to 0 no longer works | In 2.0, I applied this highlight condition -- row[0] % 2 Equal to 0 -- to generate a report with alternating row colors. When I run the report in 2.1 RC 0, I get the following error -- "There are errors evaluating script "row[0] % 2". | resolved fixed | 544074a | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/NativeRowObject.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-21T07:13:02Z | 2006-04-18T00:26:40Z |
136,807 | Bug 136807 [Regression]Preview embedded image with web view will effect other way to preview | Details: [Regression]Preview embedded image with web view will effect other way to preview Step: 1.New a library and insert a embedded image. 2.New a report design and use the library. 3.Drop the image form library into layout. 4.Preview with HTML/PDF. 5.Preview with web view. 6.Preview with HTML/PDF. Actual result: In step 4, image is previewed. In step 5, image can't be previewed. In step 6, image can't be previewed. It means that, after I use web view to preview the embedded image from library, I can't preview this image any ways. | closed fixed | eba453d | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/impl/ImageContent.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ImageInstance.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-21T03:45:48Z | 2006-04-14T07:33:20Z |
137,130 | Bug 137130 The cascading parameter does not work when a column name includes double quotation marks | Description: The cascading parameter does not work when a column name includes double quotation marks Steps to reproduce: 1. download the report design file 2. change the flat file path to the related position 3. save and preview. Actual result: The cascading parameter can not retrieve the data. | closed fixed | 5145e70 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/QueryResults.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-20T12:15:01Z | 2006-04-18T03:13:20Z |
137,149 | Bug 137149 Setting an alias on a column belonging to the scripted datasource, an error is thrown out | Description: Setting an alias on a column belonging to the scripted datasource, an error is thrown out Steps to reproduce: 1. new a scripted datasource and create a dataset based on it 2. set an alias on some column 3. Save and preview Actual Results: Error0 : Error.ScriptEvaluationError ( 50 time(s) ) detail : org.eclipse.birt.report.engine.api.EngineException: There are errors evaluating script "row["a"]". at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:520) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:482) at org.eclipse.birt.report.engine.executor.DataItemExecutor.execute(DataItemExecutor.java:98) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitDataItem(ReportExecutorVisitor.java:158) at org.eclipse.birt.report.engine.ir.DataItemDesign.accept(DataItemDesign.java:69) at org.eclipse.birt.report.engine.executor.TableItemExecutor.accessRow(TableItemExecutor.java:606) at org.eclipse.birt.report.engine.executor.TableItemExecutor.accessTableBand(TableItemExecutor.java:502) at org.eclipse.birt.report.engine.executor.TableItemExecutor.accessDetail(TableItemExecutor.java:418) at org.eclipse.birt.report.engine.executor.ListingElementExecutor.accessQuery(ListingElementExecutor.java:125) at org.eclipse.birt.report.engine.executor.TableItemExecutor.execute(TableItemExecutor.java:151) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitTableItem(ReportExecutorVisitor.java:188) at org.eclipse.birt.report.engine.ir.TableItemDesign.accept(TableItemDesign.java:69) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:125) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:89) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:171) at org.eclipse.birt.report.service.ReportEngineService.runAndRenderReport(Unknown Source) at org.eclipse.birt.report.presentation.aggregation.layout.EngineFragment.doService(Unknown Source) at org.eclipse.birt.report.presentation.aggregation.BaseFragment.service(Unknown Source) at org.eclipse.birt.report.servlet.ViewerServlet.doGet(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.eclipse.tomcat.internal.EclipseErrorReportValve.invoke(EclipseErrorReportValve.java:153) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683) at java.lang.Thread.run(Unknown Source)Caused by: org.mozilla.javascript.EvaluatorException: Can't find the column: a at org.eclipse.birt.report.engine.data.dte.NativeRowObject.get(NativeRowObject.java:67) at org.mozilla.javascript.ScriptableObject.getProperty(ScriptableObject.java:1263) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1301) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1283) at org.mozilla.javascript.gen.c370._c0(<inline>:1) at org.mozilla.javascript.gen.c370.call(<inline>) at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:304) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2769) at org.mozilla.javascript.gen.c370.call(<inline>) at org.mozilla.javascript.gen.c370.exec(<inline>) at org.eclipse.birt.core.script.ScriptContext.eval(ScriptContext.java:224) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:513) ... 52 more | closed fixed | b20da37 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedScriptDSQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-20T09:23:22Z | 2006-04-18T06:00:00Z |
136,270 | Bug 136270 Group's data binding column can only be used by the group itself | If you add some data binding columns to a group, these columns can only be used by this group itself. It should has a way to make the child can use the parent group's data binding column. | closed fixed | e191f39 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-20T07:15:28Z | 2006-04-12T05:33:20Z |
136,045 | Bug 136045 the display name does not work | Description: the display name does not work Steps to reproduce: 1. new a datasource and a dataset 2. In the window 'Edit dataset'. click the tab 'Output columns' 3. set a display name on a column Actual result: The display name does not work, however, it is still the column name | closed fixed | 0eabd45 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dnd/InsertInLayoutUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-20T06:20:07Z | 2006-04-11T04:33:20Z |
136,256 | Bug 136256 Enhance the message builder | Please see the spec attached in 133995 for detail. | closed fixed | 6641c59 | ["UI/org.eclipse.birt.report.designer.ui.editors/src/org/eclipse/birt/report/designer/internal/ui/editors/LibraryProvider.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/adapters/LibraryProvider.java", "UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerContextMenuProvider.java", "UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerProvider.java", "UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerTreeViewPage.java", "UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerView.java", "UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/action/AddSelectedLibToCurrentReportDesignAction.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/resource/NewResourceFileDialog.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/resource/ResourceFileContentProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/resource/ResourceFileFolderSelectionDialog.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/resource/ResourceFileLabelProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/resource/ResourceSelectionValidator.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/TextDataEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ImageBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-20T05:56:36Z | 2006-04-12T02:46:40Z |
137,444 | Bug 137444 Can not preview the old file with PDF | Details: Can not preview the old file with PDF Please run the attached file with PDF, it can not preview. But HTML and web view is no problem. | closed fixed | c9b8551 | ["engine/org.eclipse.birt.report.engine.emitter.pdf/src/org/eclipse/birt/report/engine/emitter/pdf/PDFEmitter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-20T05:09:48Z | 2006-04-19T07:00:00Z |
136,770 | Bug 136770 Cannot view report document from web viewer | null | resolved fixed | f32b213 | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/utility/ParameterAccessor.java", "viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/WebViewer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-19T09:34:29Z | 2006-04-13T23:13:20Z |
132,837 | Bug 132837 The APT doc should be under the Java Development User Guide | I20060321-1210 The APT doc should be under the Java Development User Guide instead of being a standalone entry in the help system. | resolved fixed | 2ab41f4 | ["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 | 2006-04-19T08:14:07Z | 2006-03-22T15:06:40Z |
135,192 | Bug 135192 [Regression] Maximum number of rows in data set preview doesn't work for script data source. | Description: Maximum number of rows in data set preview doesn't work for script data source. Steps to reproduce: 1. Create a script data source and create a related data set. 2. Set maximum number of rows in preferences. Expected result: it works as setting. Actual result: maximum number of rows setting doesn't take effect. | closed fixed | 7e93c99 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/preferences/DateSetPreferencePage.java", "data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/preference/DateSetPreferencePage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-19T06:37:10Z | 2006-04-06T02:20:00Z |
136,801 | Bug 136801 Chart bind joint data set, data type change incorrectly. | Chart bind joint data set, data type change incorrectly. Steps: Data source: sample DB Data set1: select * from customers Data set2: select * from employees Data set3: left join: data set1 and data set2 1.Create a chart 2.Open chart builder, go to "Select Data" tab, select Use data set: data set3 Actual Results: 1.NPE will thrown out at: org.eclipse.birt.chart.reportitem.ui.ReportDataServiceProvider.getPreviewRowData(ReportDataServiceProvider.java:257) org.eclipse.birt.chart.reportitem.ui.ReportDataServiceProvider.getPreviewData(ReportDataServiceProvider.java:150) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.switchDataTable(TaskSelectData.java:432) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.switchDataSet(TaskSelectData.java:511) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.widgetSelected(TaskSelectData.java:600) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3346) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) org.eclipse.birt.core.ui.frameworks.taskwizard.WizardBase.open(WizardBase.java:203) org.eclipse.birt.chart.ui.swt.wizard.ChartWizard.open(ChartWizard.java:181) org.eclipse.birt.chart.reportitem.ui.ChartReportItemBuilderImpl.open(ChartReportItemBuilderImpl.java:210) org.eclipse.birt.report.designer.internal.ui.editors.schematic.extensions.ExtendedElementToolExtends.preHandleMouseUp(ExtendedElementToolExtends.java:55) org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportCreationTool.performCreation(ReportCreationTool.java:85) org.eclipse.gef.tools.CreationTool.handleButtonUp(CreationTool.java:178) org.eclipse.gef.tools.AbstractTool.mouseUp(AbstractTool.java:1053) org.eclipse.gef.EditDomain.mouseUp(EditDomain.java:259) org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseReleased(DomainEventDispatcher.java:374) org.eclipse.draw2d.LightweightSystem$EventHandler.mouseUp(LightweightSystem.java:538) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:137) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3346) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:324) org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) org.eclipse.core.launcher.Main.basicRun(Main.java:280) org.eclipse.core.launcher.Main.run(Main.java:977) org.eclipse.core.launcher.Main.main(Main.java:952) Caused By:The data type of script expression result is org.eclipse.birt.core.data.DataType$AnyType, but one of its value is "null", which cannot be converted to org.eclipse.birt.core.data.DataType$AnyType. org.eclipse.birt.data.engine.impl.PreparedJointDataSourceQuery.getSortedResultIterator(PreparedJointDataSourceQuery.java:311) org.eclipse.birt.data.engine.impl.PreparedJointDataSourceQuery.initialize(PreparedJointDataSourceQuery.java:107) org.eclipse.birt.data.engine.impl.PreparedJointDataSourceQuery.<init>(PreparedJointDataSourceQuery.java:84) org.eclipse.birt.data.engine.impl.PreparedDataSourceQuery.newInstance(PreparedDataSourceQuery.java:89) org.eclipse.birt.data.engine.impl.DataEngineImpl.prepare(DataEngineImpl.java:390) org.eclipse.birt.data.engine.impl.DataEngineImpl.prepare(DataEngineImpl.java:357) org.eclipse.birt.chart.reportitem.ui.ChartDataSetManager.getCacheResult(ChartDataSetManager.java:244) org.eclipse.birt.chart.reportitem.ui.ReportDataServiceProvider.getPreviewRowData(ReportDataServiceProvider.java:215) org.eclipse.birt.chart.reportitem.ui.ReportDataServiceProvider.getPreviewData(ReportDataServiceProvider.java:150) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.switchDataTable(TaskSelectData.java:432) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.switchDataSet(TaskSelectData.java:511) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.widgetSelected(TaskSelectData.java:600) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3346) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) org.eclipse.birt.core.ui.frameworks.taskwizard.WizardBase.open(WizardBase.java:203) org.eclipse.birt.chart.ui.swt.wizard.ChartWizard.open(ChartWizard.java:181) org.eclipse.birt.chart.reportitem.ui.ChartReportItemBuilderImpl.open(ChartReportItemBuilderImpl.java:210) org.eclipse.birt.report.designer.internal.ui.editors.schematic.extensions.ExtendedElementToolExtends.preHandleMouseUp(ExtendedElementToolExtends.java:55) org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportCreationTool.performCreation(ReportCreationTool.java:85) org.eclipse.gef.tools.CreationTool.handleButtonUp(CreationTool.java:178) org.eclipse.gef.tools.AbstractTool.mouseUp(AbstractTool.java:1053) org.eclipse.gef.EditDomain.mouseUp(EditDomain.java:259) org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseReleased(DomainEventDispatcher.java:374) org.eclipse.draw2d.LightweightSystem$EventHandler.mouseUp(LightweightSystem.java:538) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:137) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3346) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:324) org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) org.eclipse.core.launcher.Main.basicRun(Main.java:280) org.eclipse.core.launcher.Main.run(Main.java:977) org.eclipse.core.launcher.Main.main(Main.java:952) Expected Results: 1.Can work well. | closed fixed | a2d7c86 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/DataSetCacheManager.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedJointDataSourceQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-18T09:42:01Z | 2006-04-14T07:33:20Z |
136,823 | Bug 136823 Data in master page can't be retrieved in Web Viewer | Steps to reproduce: 1.New a sample data source and a data set with table "CUSTOMERS" 2.Add a grid in master page header 3.Add a data in the grid and add a data column binding "dataSetRow["CUSTOMERNUMBER"]" Expected result: Data can be retrieved correctly Actual result: There are errors on the report page: - There are error(s) in report : report Error0 : Error.ScriptEvaluationError ( 1 time(s) ) detail : org.eclipse.birt.report.engine.api.EngineException: There are errors evaluating script "row["CUSTOMERNUMBER"]". at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:520) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:482) at org.eclipse.birt.report.engine.internal.document.v2.ReportContentLoaderV2.openQuery(ReportContentLoaderV2.java:700) at org.eclipse.birt.report.engine.internal.document.v2.ReportContentLoaderV2.startContent(ReportContentLoaderV2.java:774) at org.eclipse.birt.report.engine.internal.document.v2.ReportContentLoaderV2.loadFullContent(ReportContentLoaderV2.java:530) at org.eclipse.birt.report.engine.internal.document.v2.ReportContentLoaderV2.loadPageContent(ReportContentLoaderV2.java:489) at org.eclipse.birt.report.engine.internal.document.v2.ReportContentLoaderV2.excutePage(ReportContentLoaderV2.java:208) at org.eclipse.birt.report.engine.internal.document.v2.ReportContentLoaderV2.loadPage(ReportContentLoaderV2.java:150) at org.eclipse.birt.report.engine.internal.document.ReportContentLoader.loadPage(ReportContentLoader.java:50) at org.eclipse.birt.report.engine.api.impl.RenderTask.doRender(RenderTask.java:186) at org.eclipse.birt.report.engine.api.impl.RenderTask$PageRender.render(RenderTask.java:493) at org.eclipse.birt.report.engine.api.impl.RenderTask.render(RenderTask.java:428) at org.eclipse.birt.report.engine.api.impl.RenderTask.render(RenderTask.java:94) at org.eclipse.birt.report.service.ReportEngineService.renderReport(Unknown Source) at org.eclipse.birt.report.soapengine.processor.DocumentProcessor.doRenderReport(Unknown Source) at org.eclipse.birt.report.soapengine.processor.DocumentProcessor.process(Unknown Source) at org.eclipse.birt.report.soapengine.endpoint.BirtSoapBindingImpl.getUpdatedObjects(Unknown Source) at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) 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:453) 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(Unknown Source) at org.eclipse.birt.report.servlet.ViewerServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.eclipse.tomcat.internal.EclipseErrorReportValve.invoke(EclipseErrorReportValve.java:153) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683) at java.lang.Thread.run(Thread.java:534) Caused by: org.mozilla.javascript.EvaluatorException: Can't find the column: CUSTOMERNUMBER at org.eclipse.birt.report.engine.data.dte.NativeRowObject.get(NativeRowObject.java:67) at org.mozilla.javascript.ScriptableObject.getProperty(ScriptableObject.java:1263) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1301) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1283) at org.mozilla.javascript.gen.c399._c0(<inline>:1) at org.mozilla.javascript.gen.c399.call(<inline>) at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:304) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2769) at org.mozilla.javascript.gen.c399.call(<inline>) at org.mozilla.javascript.gen.c399.exec(<inline>) at org.eclipse.birt.core.script.ScriptContext.eval(ScriptContext.java:224) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:513) ... 64 more Note: Preview in HTML and PDF is ok | closed fixed | 1ffa90d | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/v2/ReportContentLoaderV2.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-18T07:28:18Z | 2006-04-14T10:20:00Z |
136,141 | Bug 136141 Prepared statements not properly cleaned up. | After designing a JDBC query in a report design, I opened the DataSetEditor and choose "Preview Results". There are a number of warnings that came up in the Console indicating there are prepared statements not properly managed or cleaned up. Apr 11, 2006 8:23:04 AM org.eclipse.birt.data.engine.executor.DataSource close WARNING: 1 statements still active. Apr 11, 2006 8:23:05 AM org.eclipse.birt.data.engine.executor.DataSource closeStatement WARNING: statement not found Tracing down the problem a little further, the root cause of the problem is because the DataSourceQuery (in data.engine.executor) is trying to close a dangling reference of a PreparedStatement. The PreparedStatement has been previously dropped from the statementMap of the DataSource when the DataSource.close() was called. But DataSourceQuery is still holding on to a reference of it. The sequence is as follows: 1) DataSourceQuery prepares a statement. This in turn makes DataSource prepare a statement, and creates a PreparedStatement object, adds it to the statementMap. 2) During DataEngineImpl.defineDataSource(), the existing DataSource is closed, replaced by the supplied DataSourceDesign. The DataSource still have statements in its map. And a warning is logged indicating this is a resource leak. It then cleans the statementMap and closes all its open connections. 3) When DataSourceQuery tries to close the dangling statement, it cannot find it. It logs a message "Statement not found". Then, it still proceeds to close it. | resolved fixed | 434ef04 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/DataSource.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/DataSourceQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/DataEngineImpl.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/DataSourceManager.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/DataSourceRuntime.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/viewing/NewInstanceHelper.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odi/IDataSource.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-17T12:53:32Z | 2006-04-11T15:40:00Z |
132,966 | Bug 132966 special problem of reopen the eclipse | Description: It's a very .I'm afraid I can't descript it propertily.But only can show the step to reproduce. Step to reproduce: 1.please open the all files attached or you can open a workspace which more than 3 *.rptdesigns in it. 2.and then be sure they are opened in layout veiw(be sure there are at least there report file tab in layout veiw title part) 3.chlik the 3rd title tab of that reports and insert a text in it(in my attachment the Text_test.rptdesign is recommend) 4.open the "Properties" view and change the text propty 'comments' and save it 5.close the eclipse 6.reopen the eclipse Actual result: you will be surprised to find the 3rd report's layout is be same to the firt report's.It is not be refresh correctly. Expected result: reopen can show right layout of the report file comments: The phenomenon may be can't reproduce in every flat, but I have tested it in mine and other QA's PC for many times. It's real oddity. | closed fixed | 50fa25d | ["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 | 2006-04-17T08:12:31Z | 2006-03-23T10:33:20Z |
124,501 | Bug 124501 need uninstall of jst.utility facet | The jst.utility facet needs an uninstall delegate. Without it, it is not possible to deselect this facet and select/install the Dynamic Web Module facet on an existing project. | closed fixed | 2bf3fb5 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/schematic/TableHandleAdapter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-17T06:09:37Z | 2006-01-19T17:00:00Z |
136,893 | Bug 136893 Preview Report repeats first line for all entries | Overview Description: Report repeats the first entry 122 times, instead of generating 122 different entries. Steps to Reproduce: (1.) Start Eclipse, and switch to the Report Design perspective. (2.) Create a new BIRT project. File > New > Project... Business Intelligence and Reporting Tools/Report Project (3.) Create a new BIRT report. In the Navigator, select the BIRT project, and choose New > Report in its context menu. New Report wizard: Choose Report template "Grouped Listing". (Otherwise, accept defaults.) (4.) Create a DataSource: In the Navigator, open the BIRT report (.rptdesign extension). In the Data Explorer view, right-click on Data Sources, and choose "New Data Source" from its context menu. New Data Source dialog: Classic Models Inc. Sample Database (5.) Create a DataSet: In the Data Explorer view, right-click on Data Sets, and choose "New Data Set" from its context menu. Edit Data Set dialog: (Line 1.) select * (Line 2.) from: CLASSICMODELS.CUSTOMERS A. Position cursor after "from". B. Under Available Items, select Data Source/CLASSICMODELS/CUSTOMERS and drag to window with "from". (6.) Bind the data to the table: A. Drag "Data Sets/Data Set/STATE" from the Data Explorer view, and drop over "Group Header Row" in the Layout window (row 2, column 1). B. Drag "Data Sets/Data Set/CUSTOMERNAME" from the Data Explorer view, and drop over the second column in row "Detail Row" in the Layout window (row 3, column 2). C. Drag "Data Sets/Data Set/PHONE" from the Data Explorer view, and drop over the third column in row "Detail Row" in the Layout window (row 3, column 3). D. Save. (7.) Generate an HTML report: In the menu for Preview toolbar icon (near upper left of workspace), select HTML. Note: The report is also generated incorrectly, for a PDF report. To generate a PDF report, select PDF in the menu for the Preview toolbar icon. Actual Result: Report repeats the first entry 122 times. Report Header ------------- STATE CUSTOMER NAME PHONE Atelier graphique 40.32.2555 Atelier graphique 40.32.2555 ... Atelier graphique 40.32.2555 Expected Result: Report contains 122 different entries. Build Date & Platform: Note: I run a weekly BIRT smoke-test using the procedure described above under Steps to Reproduce. The problem was introduced since last week's smoke-test. I used the following .zip files: Eclipse Full SDK: eclipse-SDK-3.2M6-win32.zip EMF Runtime: emf-sdo-runtime-2.2.0M6.zip GEF Runtime: GEF-runtime-3.2M6.zip Data Tools Project: dtp_0.9M6_N040706.zip BIRT Runtime: birt-report-framework-N20060414.zip | verified fixed | d7d8805 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dnd/InsertInLayoutUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-15T06:46:19Z | 2006-04-15T00:13:20Z |
136,821 | Bug 136821 Data can't be added to master page | Steps to reproduce: 1.Drag a data from palette to master page header Expected result: The data is added into master page header Actual result: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.ClassCastException) at org.eclipse.swt.SWT.error(SWT.java:3374) at org.eclipse.swt.SWT.error(SWT.java:3297) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3323) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2969) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) 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:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) Caused by: java.lang.ClassCastException at org.eclipse.birt.report.designer.util.DEUtil.getBindingHolder(DEUtil.java:1895) at org.eclipse.birt.report.designer.util.DEUtil.getBindingHolder(DEUtil.java:1892) at org.eclipse.birt.report.designer.util.DEUtil.getVisiableColumnBindingsList(DEUtil.java:1861) at org.eclipse.birt.report.designer.util.DEUtil.getVisiableColumnBindingsList(DEUtil.java:1838) at org.eclipse.birt.report.designer.ui.dialogs.ColumnBindingDialog$1.getElements(ColumnBindingDialog.java:112) at org.eclipse.jface.viewers.StructuredViewer.getRawChildren(StructuredViewer.java:920) at org.eclipse.jface.viewers.TableViewer.getRawChildren(TableViewer.java:1269) at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren(StructuredViewer.java:861) at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren(StructuredViewer.java:977) at org.eclipse.jface.viewers.TableViewer.internalRefreshAll(TableViewer.java:870) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:818) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:807) at org.eclipse.jface.viewers.StructuredViewer$7.run(StructuredViewer.java:1359) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1294) at org.eclipse.jface.viewers.CheckboxTableViewer.preservingSelection(CheckboxTableViewer.java:295) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1357) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1316) at org.eclipse.jface.viewers.TableViewer.inputChanged(TableViewer.java:767) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:250) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1513) at org.eclipse.birt.report.designer.ui.dialogs.ColumnBindingDialog.createDialogArea(ColumnBindingDialog.java:446) at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:794) at org.eclipse.jface.window.Window.create(Window.java:426) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1116) at org.eclipse.birt.report.designer.internal.ui.dialogs.BaseDialog.open(BaseDialog.java:135) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.DataEditPart.performDirectEdit(DataEditPart.java:61) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportCreationTool$1.run(ReportCreationTool.java:221) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) ... 20 more | closed fixed | 2352efb | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-14T09:45:38Z | 2006-04-14T10:20:00Z |
134,660 | Bug 134660 [RCP]Layout got tricky view when refreshing | Steps to reproduce: 1.New a library, add a label and a text 2.New a report, extend lib.label and lib.text 3.Modify the content of label in library 4.Refresh the report Actual result: Only a label in the layout view but outline view is ok. Switch to XML Source, the code is library file(see the screenshot) | closed fixed | 6fa4e6e | ["UI/org.eclipse.birt.report.designer.ui.rcp/src/org/eclipse/birt/report/designer/ui/editors/RCPMultiPageReportEditor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-14T03:38:40Z | 2006-04-04T05:53:20Z |
131,250 | Bug 131250 Parameter value set in runtime should be kept until close the preview viewer. | Description: Parameter value set in runtime should be kept until close the preview viewer. Steps to reproduce: 1. New a parameter p1 without default value, drag it to Layout. 2. Define bookmark to p1. 3. Insert a label behind p1, set pageBreakBefore to always, hyperlink to p1 bookmark. 4. Preview in Web Viewer and input p1 value. 5. Go to the next page and click the label link. Expected result: The first page appears. Actual result: The parameter dialog appeared. | closed fixed | a8d6eb1 | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/context/ViewerAttributeBean.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-14T02:50:15Z | 2006-03-10T03:06:40Z |
136,279 | Bug 136279 Structure and table datatypes should be hidden. | Description: Structure and table datatype should be hidden. Steps to reproduce: In table data binding, I saw structure and table two datatypes. They are not supported now, so they should be removed. | closed fixed | e41aa1e | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/wizards/WizardTemplateChoicePage.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/adapter/ModelDteApiAdapter.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ModuleHandle.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/api/elements/DesignChoiceConstants.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/parser/StructureState.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 | 2006-04-14T02:26:49Z | 2006-04-12T05:33:20Z |
136,553 | Bug 136553 [regression]Preview error when set invalid group interval. | Description: Preview error when set invalid group interval. Steps to reproduce: 1. Insert a table 2. Add a group on number column, set interval to Year,1 3. Preview 4. Edit group on string column set interval to Prefix,1 5. Preview Expected result: Error msg about invalid group interval. Actual result: Error happened while running the report | closed fixed | 7dc3d8d | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/DataGenerationEngine.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/DataPresentationEngine.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/DteDataEngine.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-13T11:04:45Z | 2006-04-13T06:33:20Z |
136,522 | Bug 136522 [Regression]DateTime parameter can't be drag to the layout | Steps to reproduce: 1.New a date time parameter 2.Drag it to the layout Actual result: A BIRT exception occurred. Plug-in Provider:Eclipse.org Plug-in Name:BIRT Model Plug-in ID:org.eclipse.birt.report.model Version:2.1.0.N20060412-2230 Error Code:Error.PropertyValueException.CHOICE_NOT_FOUND Error Message:The choice value "dateTime" is not found. | closed fixed | 1947ea5 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dnd/InsertInLayoutUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-13T09:13:27Z | 2006-04-13T03:46:40Z |
136,402 | Bug 136402 Data binding feature - Expression builder bug | In the following 2 scenarios the expression builder does not behave as expected. 1) Invoked from data binding tab - Create a table report item, bind it to a dataset. - Go to the binding tab - Add a new data binding column - Invoke the expression builder to enter the expression. Current behavior - The expresssion builder does not show Available Datasets and Available Binding Columns Expected behaivor - The expression builder list the Available Datasets and Available Binding Columns 2) Invoke expression builder from Group dialog - Add a group to the above scenario - Go to binding tab on group dialog - Click on add to add a column binding - Invoke the expression builder Current behavior - Does not show Available Datasets and Available Binding Columns Expected behavior - Shows Available Datasets and Available Binding Columns | resolved fixed | 1b95e2a | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dnd/InsertInLayoutUtil.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/BindingExpressionProvider.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-13T08:17:45Z | 2006-04-12T19:26:40Z |
135,790 | Bug 135790 ClassCastException in RowData. | ClassCastException is thrown in RowData line 81(IBaseExpression expr = ( IBaseExpression ) valueExpressions.get( index - 1 );). | resolved fixed | 7246d39 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/IRowData.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/ICellInstance.java", "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/api/script/instance/IRowInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/GridItemExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ListItemExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ListingElementExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/TableItemExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/parser/EngineIRVisitor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/CellScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ElementUtil.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/RowData.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/RowScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/CellInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ReportElementInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/RowInstance.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-13T08:10:26Z | 2006-04-10T03:33:20Z |
136,074 | Bug 136074 Filter editor needs to support column binding | In the Fitler tab of property editor for table/chart, Expression only shows dataset column, rather than column binding. Since column binding is supported for filter of table/chart, this is supposed to show the column binding. | resolved fixed | 46f9fda | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/attributes/providers/FilterModelProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/attributes/providers/SortingModelProvider.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-13T06:19:06Z | 2006-04-11T10:06:40Z |
136,246 | Bug 136246 [regression]Export data exported error column name. | Description: Export data exported error column name. Steps to reproduce: 1. export data in a table, select several columns. Expected result: Selected column name and data are exported. Actual result: No matter what columns you selected, exported columns name always display columns beginning from the first, and then the second, and so on. | closed fixed | a69e6f0 | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/service/ReportEngineService.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-13T05:25:37Z | 2006-04-12T02:46:40Z |
136,296 | Bug 136296 Set the filter function -between on the 'datatime' data type, an error is thrown out | Description: Set the filter operator-between on the 'datatime' data type, an error is thrown out Steps to reproduce: 1. new a sample datasource 2. input "select * from CLASSICMODELS.ORDERS " in the query text 3. add a filter expression: row["ORDERDATE"] Operator: between value1: "Feb 11, 2003 12:00:00 AM" Value2: "Apr 4, 2003 12:00:00 AM" 4.Preview Actual result: org.eclipse.birt.data.engine.core.DataException: An error happened in data type conversion. Invalid data type found in conditional expression. at org.eclipse.birt.data.engine.impl.FilterByRow.process(FilterByRow.java:228) at org.eclipse.birt.data.engine.executor.cache.RowResultSet.processFetchEvent(RowResultSet.java:121) at org.eclipse.birt.data.engine.executor.cache.RowResultSet.next(RowResultSet.java:89) at org.eclipse.birt.data.engine.executor.cache.ExpandableRowResultSet.next(ExpandableRowResultSet.java:66) at org.eclipse.birt.data.engine.executor.cache.SmartCache.populateData(SmartCache.java:304) at org.eclipse.birt.data.engine.executor.cache.SmartCache.initInstance(SmartCache.java:231) at org.eclipse.birt.data.engine.executor.cache.SmartCache.<init>(SmartCache.java:79) at org.eclipse.birt.data.engine.executor.transform.SinglePassRowProcessor.initOdiResultSet(SinglePassRowProcessor.java:95) at org.eclipse.birt.data.engine.executor.transform.SinglePassRowProcessor.pass(SinglePassRowProcessor.java:60) at org.eclipse.birt.data.engine.executor.transform.MultiPassRowProcessor.pass(MultiPassRowProcessor.java:93) at org.eclipse.birt.data.engine.executor.transform.ResultSetPopulator.populateResultSet(ResultSetPopulator.java:205) at org.eclipse.birt.data.engine.executor.transform.CachedResultSet.<init>(CachedResultSet.java:68) at org.eclipse.birt.data.engine.executor.DataSourceQuery.execute(DataSourceQuery.java:562) at org.eclipse.birt.data.engine.impl.PreparedOdaDSQuery$OdaDSQueryExecutor.executeOdiQuery(PreparedOdaDSQuery.java:265) at org.eclipse.birt.data.engine.impl.QueryExecutor.execute(QueryExecutor.java:545) at org.eclipse.birt.data.engine.impl.QueryService.executeQuery(QueryService.java:144) at org.eclipse.birt.data.engine.impl.QueryResults.getResultIterator(QueryResults.java:145) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage.updateResults(ResultSetPreviewPage.java:228) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage$4.run(ResultSetPreviewPage.java:402) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3323) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2969) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.birt.report.designer.internal.ui.dialogs.BaseDialog.open(BaseDialog.java:145) at org.eclipse.birt.report.designer.internal.ui.views.data.providers.DataSetNodeProvider.performEdit(DataSetNodeProvider.java:198) at org.eclipse.birt.report.designer.internal.ui.views.DefaultNodeProvider.performRequest(DefaultNodeProvider.java:351) at org.eclipse.birt.report.designer.internal.ui.views.actions.EditAction.doAction(EditAction.java:79) at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.run(AbstractElementAction.java:64) at org.eclipse.birt.report.designer.internal.ui.views.RenameListener.doubleClick(RenameListener.java:211) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:789) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:816) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:787) at org.eclipse.jface.viewers.StructuredViewer.handleDoubleSelect(StructuredViewer.java:1022) at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:1129) at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:223) at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:220) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:281) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3346) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2966) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | closed fixed | a4534d5 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/expression/ExprEvaluateUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ComputedColumnHelper.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ExecutorHelper.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-12T11:42:11Z | 2006-04-12T08:20:00Z |
131,649 | Bug 131649 Designer generates wrong column reference expression for inner table | Open the attached report design (test1.rptdesign). This design uses a 2-level table to list offices and their employees. It runs fine. Now imagine that the designer wants to append a country name suffix to each employee name (e.g., "Diane Merphy / USA"). To do this double click on the inner list's Data Item to edit its expression. Click on "Available Data Sets", choose data set "offices", then double click on column "COUNTRY". An expression row["COUNTRY"] is added to the expression text. So you can construct an expression like this: row["FIRSTNAME"] + " " + row["LASTNAME"] + " / " + row["OFFICECODE"] However this report will not run. The problem is that row["OFFICECODE"] is not valid in the inner table. In order for the inner table to access the outer table's columns, the expression needs to use the "rows" object. So the correct behavior when the user double clicks on "COUNTRY" is to insert rows[0]["COUNTRY"] into the expression. The first index (an integer) to the "rows" array is the 0-based index of the nested table which contains the data set (0 = outermost table, 1 = first level inner table etc.). The report designer should figure out the correct index number by looking at the nesting levels of all tables. | resolved fixed | ed523f2 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/IReportElementConstants.java", "UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/DataEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/ElementBuilderFactory.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/dialogs/BindingExpressionProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ColumnBindingDialog.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionProvider.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/GroupDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-12T09:24:55Z | 2006-03-14T04:20:00Z |
136,241 | Bug 136241 [regression]Preview template in web viewer and pdf didn't get correct effect. | Description: Preview template items in web viewer and pdf didn't get correct effect. Steps to reproduce: 1. Create template items. 2. Preview in Web Viewer and pdf. Expected result: Same effect as in html. Actual result: In web viewer, see only blank box. In pdf, blank page. | closed fixed | fdeec5c | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/ContentCommand.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/TemplateCommand.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/core/DesignElement.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/writer/ModuleWriter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-12T07:53:36Z | 2006-04-12T02:46:40Z |
135,821 | Bug 135821 Can't change data binding column when reverting from a template report item to a repot item | Steps to reproduce: 1.New a data with data binding column "a = 'abc'" 2.Select the data and convert it to a template report item 3.Double click the data Expected result: In the pop-up data binding window, a tick box lists on the left Actual result: No tick box on the left(see the screenshot). That means user can't change data binding any more till he reopen the data binding window | closed fixed | 8367321 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/ElementBuilderFactory.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-12T03:48:48Z | 2006-04-10T09:06:40Z |
135,825 | Bug 135825 Chart bind join data set, NPE will thrown out. | Chart bind join data set, NPE will thrown out. Steps: 1.Create a joint data set 2.Create a chart, open Chart Builder, go to "Select Data" tab 3.Select the joint data set Actual Results: 1.NPE will thrown out at: org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.switchDataSet(TaskSelectData.java:505) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.widgetSelected(TaskSelectData.java:577) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907) org.eclipse.birt.core.ui.frameworks.taskwizard.WizardBase.open(WizardBase.java:203) org.eclipse.birt.chart.ui.swt.wizard.ChartWizard.open(ChartWizard.java:181) org.eclipse.birt.chart.reportitem.ui.ChartReportItemBuilderImpl.open(ChartReportItemBuilderImpl.java:210) org.eclipse.birt.report.designer.internal.ui.editors.schematic.extensions.ExtendedElementToolExtends.preHandleMouseUp(ExtendedElementToolExtends.java:55) org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportCreationTool.performCreation(ReportCreationTool.java:84) org.eclipse.gef.tools.CreationTool.handleButtonUp(CreationTool.java:178) org.eclipse.gef.tools.AbstractTool.mouseUp(AbstractTool.java:1053) org.eclipse.gef.EditDomain.mouseUp(EditDomain.java:259) org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseReleased(DomainEventDispatcher.java:374) org.eclipse.draw2d.LightweightSystem$EventHandler.mouseUp(LightweightSystem.java:528) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:137) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907) org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1899) org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1863) org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:417) org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:99) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:374) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:324) org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) org.eclipse.core.launcher.Main.basicRun(Main.java:282) org.eclipse.core.launcher.Main.run(Main.java:977) org.eclipse.core.launcher.Main.main(Main.java:952) Caused By:dataSource param cannot be null org.eclipse.birt.data.engine.impl.DataEngineImpl.defineDataSource(DataEngineImpl.java:137) org.eclipse.birt.chart.reportitem.ui.ChartDataSetManager.getCacheResult(ChartDataSetManager.java:219) org.eclipse.birt.chart.reportitem.ui.ReportDataServiceProvider.getPreviewRowData(ReportDataServiceProvider.java:159) org.eclipse.birt.chart.reportitem.ui.ReportDataServiceProvider.getPreviewData(ReportDataServiceProvider.java:94) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.switchDataTable(TaskSelectData.java:431) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.switchDataSet(TaskSelectData.java:495) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.widgetSelected(TaskSelectData.java:577) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907) org.eclipse.birt.core.ui.frameworks.taskwizard.WizardBase.open(WizardBase.java:203) org.eclipse.birt.chart.ui.swt.wizard.ChartWizard.open(ChartWizard.java:181) org.eclipse.birt.chart.reportitem.ui.ChartReportItemBuilderImpl.open(ChartReportItemBuilderImpl.java:210) org.eclipse.birt.report.designer.internal.ui.editors.schematic.extensions.ExtendedElementToolExtends.preHandleMouseUp(ExtendedElementToolExtends.java:55) org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportCreationTool.performCreation(ReportCreationTool.java:84) org.eclipse.gef.tools.CreationTool.handleButtonUp(CreationTool.java:178) org.eclipse.gef.tools.AbstractTool.mouseUp(AbstractTool.java:1053) org.eclipse.gef.EditDomain.mouseUp(EditDomain.java:259) org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseReleased(DomainEventDispatcher.java:374) org.eclipse.draw2d.LightweightSystem$EventHandler.mouseUp(LightweightSystem.java:528) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:137) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907) org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1899) org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1863) org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:417) org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:99) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:374) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:324) org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) org.eclipse.core.launcher.Main.basicRun(Main.java:282) org.eclipse.core.launcher.Main.run(Main.java:977) org.eclipse.core.launcher.Main.main(Main.java:952) Expected Results: 1.Can work well. | closed fixed | ba0d153 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/DataSetCacheManager.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/DataSourceAndDataSet.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T10:38:15Z | 2006-04-10T09:06:40Z |
136,067 | Bug 136067 [Smoke][Linux-AS]:Url Redirector dialog, have no Drill-Through item | [Smoke][Linux-AS]:Url Redirector dialog, have no Drill-Through item Steps: 1.Drag a label into layout 2.Open Property Editor Viewer, select Hyperlink, click "..." button 3.Open Url Redirector dialog Actual Results 1.Url Redirector dialog, there is not Drill-Through item Expected Results 1.Url Redirector dialog, there is Drill-Through item | closed fixed | 2a25a22 | ["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 | 2006-04-11T10:14:21Z | 2006-04-11T07:20:00Z |
136,027 | Bug 136027 [Smoke]the report with a gounp can not preview | Description: the report with a gounp can not preview Steps to reproduce: 1. new a datasource and a dataset 2. drag the dataset to the layout 3. Add a group on the table. save and preview. Actual result: "Error happened while running the report" is appeared. | closed fixed | fe41084 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/GroupDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T10:08:40Z | 2006-04-11T01:46:40Z |
135,848 | Bug 135848 Set a row to Y series, then delete the row, error message shoule be pop up. | Set a row to Y series, then delete the row, error message shoule be pop up. Steps: 1.Create a bar chart 2.Open Chart Builder, go to "Select Data" tab, select a data set, click "Data Binding..." button, add a new row["a"] 3.Set row["a"] to Y series 4.Then click "Data Binding..." button, delete row["a"] 5.Click "Finish" button 6.Preview or Double click the chart Actual Results: 1.Have no error message, chart can not be previewed Expected Results: 1.Error message should be pop up. | closed fixed | 0e60494 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/NativeRowObject.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T09:28:27Z | 2006-04-10T11:53:20Z |
135,265 | Bug 135265 Paste to a wrong column | Steps to reproduce: 1.Open the attached file 2.Choose the column[2] which contains a label , copy and paste to column[3] Expected result: It will be pasted to column[3] Actual result: It is pasted to column[4] The related bug is #103448 | closed fixed | 89aa795 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ColumnBandAdapter.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ColumnBandCopyAction.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ModuleHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/PropertyHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/core/IAccessControl.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/core/ReferencableStructure.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T08:42:38Z | 2006-04-06T13:26:40Z |
134,444 | Bug 134444 Locale setting lost when change current page with internal bookmark | Description: Locale setting lost when change current page with internal bookmark Steps to reproduce: 1. Insert two labels 2. Add bookmark in the first label 3. In the second label,set internal bookmark link to the first label, set page-break-before to always. 4. In preference, set Locale to a different locale. 5. Preview in Web Viewer, go to the second page and click the link. Expected result: Locale setting in webaddress keeps unchanged. Actual result: After click the link, Locale setting lost in webaddress. | closed fixed | 75ba80e | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/service/ReportEngineService.java", "viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/service/ViewerHTMLActionHandler.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T07:22:52Z | 2006-04-03T04:53:20Z |
135,840 | Bug 135840 "Value of this data item" selection in map and highlight is no effect | Details: "Value of this data item" selection in map and highlight is no effect Step: 1. New a datasource and dataset 2. Add a table and binding all the column. 3. Add a data item in detail row. 4. Add a map of the data item. Select the value and open the list. Select "Value of this data item" Actual result: No effect when select this selection | closed fixed | b5e2d15 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/HighlightRuleBuilder.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/MapRuleBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T07:18:38Z | 2006-04-10T09:06:40Z |
135,497 | Bug 135497 Data Type is not correct when "Generate All" for Data item | Description: Create a sample datasource and dataset. Insert a data into layout, bind with the dataset.Click "Generate All" to get the Data Binding columns, but the displayed data type is not consistent with the actual one. | closed fixed | e71d834 | ["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/editors/schematic/tools/ReportCreationTool.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/BasePaletteFactory.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/processor/ImageItemProcessor.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/BaseInsertMenuAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T07:05:08Z | 2006-04-07T08:53:20Z |
135,465 | Bug 135465 [smoke]An error occurred when new a casading Parameter | Description: An error occurred when new a casading Parameter Step to reproduce: 1.new a sample db data source and data set 2.New a cascading parameter group, named "gp1", 3.select the data set, then create two cascading parameters, one is row["customernumber"], named p1; the other is row["customername"] Actual result; error message occurred repeatly | closed fixed | 3298e74 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/CascadingParametersDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T06:43:27Z | 2006-04-07T06:06:40Z |
134,488 | Bug 134488 Set page break for table inside list group header will cause data display error. | Description: Set page break for table inside list group header will cause data display error. Steps to reproduce: 1. Insert a list with a group 2. Insert a table to list group header 3. Set page-break-before to always to table. 4. Preview in web viewer/html/pdf. See attached report. Expected result: Data display correctly Actual result: In Web Viewer, data in table kept display the first data row in each page. In html/pdf, it's ok. | closed fixed | 9163896 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/internal/document/v2/ReportContentLoaderV2.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-11T05:55:20Z | 2006-04-03T10:26:40Z |
135,462 | Bug 135462 [Smoke][regression]Group can not be created. | Description: Group can not be created. Steps to reproduce: 1. new a data source and data set 2. Insert a table, bind it to dataset. 3. Add a group for table Result: org.eclipse.jface.util.Assert$AssertionFailedException: null argument; at org.eclipse.jface.util.Assert.isNotNull(Assert.java:149) at org.eclipse.jface.util.Assert.isNotNull(Assert.java:125) at org.eclipse.birt.report.designer.ui.dialogs.GroupDialog.createDialogArea(GroupDialog.java:199) at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:785) at org.eclipse.jface.window.Window.create(Window.java:420) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1101) at org.eclipse.birt.report.designer.internal.ui.dialogs.BaseDialog.open(BaseDialog.java:135) at org.eclipse.birt.report.designer.internal.ui.util.UIUtil.addGroup(UIUtil.java:435) at org.eclipse.birt.report.designer.internal.ui.util.UIUtil.createGroup(UIUtil.java:396) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.TableEditPart.insertGroup(TableEditPart.java:1377) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.actions.InsertPositionGroupAction.run(InsertGroupActionFactory.java:174) at org.eclipse.jface.action.Action.runWithEvent(Action.java:492) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:530) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:480) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:392) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1899) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1863) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:417) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:99) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:374) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | closed fixed | 31a5f4b | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/ParameterBindingDialog.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/ParameterBindingPage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/GroupDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-10T09:22:59Z | 2006-04-07T06:06:40Z |
135,778 | Bug 135778 There is an error when the data item has no binding data set | Data item can have no binding data set, if it happens, it indicates it only use the basic Java Script function such as new Date(). At this moment, the data of data item is not stored in report document by DtE, which only supports these data items which has binding data set. | resolved fixed | 8053e8e | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/CachedResultSet.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupCalculationUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedDataSourceQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedDummyQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-10T04:13:55Z | 2006-04-10T03:33:20Z |
134,632 | Bug 134632 SVG chart visibility interaction does not work correctly. | null | closed fixed | 065da12 | ["chart/org.eclipse.birt.chart.device.svg/src/org/eclipse/birt/chart/device/svg/EventHandlers.java", "chart/org.eclipse.birt.chart.device.svg/src/org/eclipse/birt/chart/device/svg/SVGInteractiveRenderer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T16:21:19Z | 2006-04-03T21:33:20Z |
131,011 | Bug 131011 Support running query based on report document data | Data Engine should support running a query based on data set and expression data stored in a report document. This bugzilla entry serves as a repository for design docs and notes related to this feature. | resolved fixed | 5ec5d7f | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/api/querydefn/BaseTransform.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/cache/SortSpec.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupBy.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupCalculationUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupInfo.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupInformationUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ColumnInfo.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedDataSourceQuery.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/QueryExecutorUtil.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/document/RDGroupUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/RDLoad.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/RDSave.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/viewing/DataSetResultSet.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/viewing/DummyEventHandler.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/viewing/ExprMetaUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/viewing/NewInstanceHelper.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T12:07:03Z | 2006-03-09T02:06:40Z |
135,490 | Bug 135490 Error occurs when Preview Results of Inner Join datasets | Description: Create a sample datasource and dataset, and then create a Joint dataset. Error occurs when preview results in the data set dialog. Steps to reproduce: 1.Create a sample datasource, and a dataset with sql statement "select * from CLASSICMODELS.CUSTOMERS". 2.Create a Joint dataset, the left and right dataset is the same. 3.Preview result in the dataset dialog, error pops up continuely. | closed fixed | 8028687 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/jointdataset/JoinConditionMatchUnit.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/jointdataset/JoinConditionMatcher.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T10:45:16Z | 2006-04-07T08:53:20Z |
135,474 | Bug 135474 [Smoke]Data in computed columns can't be read | Details: Data in computed columns can't be read Step: 1. New a datasource and dataset 2. Add a computed columns and input some wore in Expression. 3. Drop the table into layout and preview. Actual result: The column of computed columns only preview undefined. | closed fixed | 1deaf32 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/NativeRowObject.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T10:20:15Z | 2006-04-07T08:53:20Z |
134,948 | Bug 134948 [Regression]Store procedure and output parameter doesn't work in Web Viewer | Description: Store procedure and output parameter doesn't work in Web Viewer Steps to reproduce: 1. Preview attached report in Web Viewer/html/pdf, which called store procedure in dataset and used output parameter to output value. Result: Preview in Web Viewer will display errors: Error0 : data.engine.InValidExpr ( 1 time(s) ) detail : org.eclipse.birt.data.engine.core.DataException: Invalid expression to retrieve value in presentation. at org.eclipse.birt.data.engine.impl.document.RDLoad.getValue(RDLoad.java:201) at org.eclipse.birt.data.engine.impl.document.ResultIterator.getValue(ResultIterator.java:184) at org.eclipse.birt.report.engine.data.dte.DteResultSet.evaluate(DteResultSet.java:149) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.openQuery(ReportContentLoader.java:807) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.startContent(ReportContentLoader.java:883) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.loadFullContent(ReportContentLoader.java:346) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.excutePage(ReportContentLoader.java:221) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.loadPage(ReportContentLoader.java:163) at org.eclipse.birt.report.engine.api.impl.RenderTask.doRender(RenderTask.java:182) at org.eclipse.birt.report.engine.api.impl.RenderTask$PageRender.render(RenderTask.java:452) at org.eclipse.birt.report.engine.api.impl.RenderTask.render(RenderTask.java:387) at org.eclipse.birt.report.engine.api.impl.RenderTask.render(RenderTask.java:90) at org.eclipse.birt.report.service.ReportEngineService.renderReport(Unknown Source) at org.eclipse.birt.report.soapengine.processor.DocumentProcessor.doRenderReport(Unknown Source) at org.eclipse.birt.report.soapengine.processor.DocumentProcessor.process(Unknown Source) at org.eclipse.birt.report.soapengine.endpoint.BirtSoapBindingImpl.getUpdatedObjects(Unknown Source) at sun.reflect.GeneratedMethodAccessor63.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) 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:453) 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(Unknown Source) at org.eclipse.birt.report.servlet.ViewerServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.eclipse.tomcat.internal.EclipseErrorReportValve.invoke(EclipseErrorReportValve.java:153) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683) at java.lang.Thread.run(Unknown Source) | closed fixed | 761141d | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/RDSave.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T08:06:05Z | 2006-04-05T06:53:20Z |
135,254 | Bug 135254 "Test connection" should be disabled after cancelling "Manage Drivers" window | Steps to reproduce: 1.New a JDBC data source 2.Before enter Driver class/URL, notice that "Test Connection" is disabled 3.Click "Manage Drivers", and then cancel it Expected result: "Test Connection" is disabled Actual result: "Test Connection" is enabled | closed fixed | 8ae8960 | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/profile/JDBCSelectionPageHelper.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T07:16:02Z | 2006-04-06T13:26:40Z |
135,439 | Bug 135439 JDBC database drivers are placed under both JDBC and Viewer plugin folder | steps to reproduce: - create a report - import JDBC database driver - check both JDBC and Viewer plugin folder expected behavior: - drivers are copied to JDBC plugin folder actual behavior: - drivers were copyied to both JDBC and Viewer plugin folders | closed fixed | c4e72ab | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/util/JarFile.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T06:46:54Z | 2006-04-07T03:20:00Z |
134,949 | Bug 134949 Themes nest in other library | Details: Themes nest in other library Step: 1. Library A use LibraryB, and Library B has a themes 2. Report design use Library A 3. I open the Library tree of A in library explorer and drop the themes from B into layout. Actual result: It pop up an error message and said that the library namespace "B" exists already. Exception result: I don't konw if I can use by this method. But I think it is a method user may be used. | closed fixed | e471ee0 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/attributes/providers/ChoiceSetFactory.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-07T05:16:48Z | 2006-04-05T06:53:20Z |
134,954 | Bug 134954 Library can't be removed | Steps to reproduce: 1.New a report "a.rptdesign" 2.New a library which is not in the same fold with report, saying "../test/lib.rptlibrary" 3.Report includes the library 4.Remove the library Expected result: The library is removed Actual result: Open XMLSource, the included library structure is still there. | closed fixed | c273bef | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/LibraryCommand.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-06T09:15:26Z | 2006-04-05T06:53:20Z |
134,485 | Bug 134485 [regression] fail to preview a report with deployed XML data source | steps to reproduce: - create a XML data source (.xml file) and deploy it to tomcat server - create a report using the XML data source - preview the report expected results: - report is rendered. actual results: - exception thrown out. org.eclipse.birt.data.engine.core.DataException: Cannot open the connection for the driver: org.eclipse.birt.report.data.oda.xml no protocol: at org.eclipse.birt.data.engine.odaconsumer.ConnectionManager.openConnection(ConnectionManager.java:136) at org.eclipse.birt.data.engine.executor.DataSource.newConnection(DataSource.java:154) at org.eclipse.birt.data.engine.executor.DataSource.open(DataSource.java:147) at org.eclipse.birt.data.engine.impl.DataSourceRuntime.openOdiDataSource(DataSourceRuntime.java:150) at org.eclipse.birt.data.engine.impl.QueryExecutor.openDataSource(QueryExecutor.java:246) at org.eclipse.birt.data.engine.impl.QueryExecutor.prepareExecution(QueryExecutor.java:196) at org.eclipse.birt.data.engine.impl.PreparedQuery.doPrepare(PreparedQuery.java:343) at org.eclipse.birt.data.engine.impl.PreparedDataSourceQuery.execute(PreparedDataSourceQuery.java:179) at org.eclipse.birt.data.engine.impl.PreparedDataSourceQuery.execute(PreparedDataSourceQuery.java:162) at org.eclipse.birt.report.designer.internal.ui.util.DataSetManager.execute(DataSetManager.java:320) at org.eclipse.birt.report.designer.internal.ui.util.DataSetManager.execute(DataSetManager.java:297) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage.updateResults(ResultSetPreviewPage.java:143) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage$4.run(ResultSetPreviewPage.java:402) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3264) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2910) at org.eclipse.jface.window.Window.runEventLoop(Window.java:811) at org.eclipse.jface.window.Window.open(Window.java:789) at org.eclipse.birt.report.designer.internal.ui.dialogs.BaseDialog.open(BaseDialog.java:145) at org.eclipse.birt.report.designer.internal.ui.views.data.providers.DataSetNodeProvider.performEdit(DataSetNodeProvider.java:180) at org.eclipse.birt.report.designer.internal.ui.views.DefaultNodeProvider.performRequest(DefaultNodeProvider.java:350) at org.eclipse.birt.report.designer.internal.ui.views.actions.EditAction.doAction(EditAction.java:79) at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.run(AbstractElementAction.java:64) at org.eclipse.birt.report.designer.internal.ui.views.RenameListener.doubleClick(RenameListener.java:211) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:759) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:816) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:757) at org.eclipse.jface.viewers.StructuredViewer.handleDoubleSelect(StructuredViewer.java:991) at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:1098) at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:220) at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:217) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:276) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1899) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1863) | closed fixed | e701a88 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/adapter/ModelDteApiAdapter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-06T08:13:29Z | 2006-04-03T10:26:40Z |
134,944 | Bug 134944 Page footer displays in wrong place when preview in Web Viewer. | Description: Page footer displays in wrong place when preview in html. Steps to reproduce: 1. New sample source and dataset from customers. 2. Drag dataset to layout. 3. Insert content to master page footer. 4. Preview in web viewer Expected result: Page footer displays at the end of the report. Actual result: Page footer displayed in the middle of the report and overlapped with report body content. | closed fixed | 6b5d4dc | ["engine/org.eclipse.birt.report.engine.emitter.html/src/org/eclipse/birt/report/engine/emitter/html/HTMLReportEmitter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-06T04:03:07Z | 2006-04-05T04:06:40Z |
134,445 | Bug 134445 [linux] scroll bars are required in Hyperlink Options | steps to reproduce: - create a report - insert a label - edit its hyperlink - select Drill-through - notice the dialog box expected behavior: - the user is able to choose all options actual behavior: - the user could only format the target report in HTML as PDF option was inivisible. it seemed that it's limited by the size of the screen. | closed fixed | 997fe3f | ["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 | 2006-04-06T03:26:56Z | 2006-04-03T04:53:20Z |
134,671 | Bug 134671 Legend title is displayed incorrectly. | Legend title is displayed incorrectly. Steps: 1.Import the attached report design file 2.Preview Actual Results: 1.Legend title is "Company", but displayed as "=Company" Expected Results: 1.Legend title is displayed correctly. | closed fixed | 9c1577e | ["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 | 2006-04-05T15:15:23Z | 2006-04-04T05:53:20Z |
133,999 | Bug 133999 Background image won't apply to the column | Steps to reproduce: 1.New a table with some labels 2.Choose one column, apply a style with background image Expected result: Background image will be applied to the column Actual result: Background image didn't apply to the column in layout, but preview is ok | closed fixed | 682c38b | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/layer/TableGridLayer.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/ApplyStyleMenuAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-05T07:46:08Z | 2006-03-30T06:26:40Z |
132,786 | Bug 132786 Value2 should be cleaned after convert operator from between to equal in highlight rule. | Description: Value2 should be cleaned after convert operator from between to equal in highlight rule. Steps to reproduce: 1. Insert a data. 2. Set highlight rule in Property Editor. 2 between 1 and 3, color blue. 3. Save the report 4. Modify highlight rule, change to 1 equal 1, color blue. 5. Save the report, see generated xml source. Expected result: In xml source, value2 should be cleaned in highlight expression. Actual result: In xml source, value1 is 1 and value2 is 3. | closed fixed | ea978d1 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/HighlightRuleHandle.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-05T04:57:40Z | 2006-03-22T06:46:40Z |
134,464 | Bug 134464 Set an alias on a column of the join dataset, an error is thrown out | Description: Set an alias on a column of the join dataset, an error is thrown out Steps to reproduce: 1. new a report 2. new two dataset and create a join dataset on the two datasets 3. set an alias on a column on the dataset 4. drag the joint dataset to the layout, add a filter row["a"]>10 on the table 5. save and preview. Actual result: org.eclipse.birt.data.engine.core.DataException: Invalid field name: a at org.eclipse.birt.data.engine.executor.ResultObject.getFieldValue(ResultObject.java:138) at org.eclipse.birt.data.engine.script.DataRow.getColumnValue(DataRow.java:90) at org.eclipse.birt.data.engine.script.JSRowObject.get(JSRowObject.java:244) at org.mozilla.javascript.ScriptableObject.getProperty(ScriptableObject.java:1263) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1301) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1283) at org.mozilla.javascript.gen.c68._c0(Filter:0) at org.mozilla.javascript.gen.c68.call(Filter) at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:304) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2769) at org.mozilla.javascript.gen.c68.call(Filter) at org.mozilla.javascript.gen.c68.exec(Filter) at org.eclipse.birt.core.script.JavascriptEvalUtil.evaluateScript(JavascriptEvalUtil.java:86) at org.eclipse.birt.data.engine.script.ScriptEvalUtil.evaluateJSAsExpr(ScriptEvalUtil.java:538) at org.eclipse.birt.data.engine.script.ScriptEvalUtil.evalExpr(ScriptEvalUtil.java:495) at org.eclipse.birt.data.engine.script.ScriptEvalUtil.evalExpr(ScriptEvalUtil.java:480) at org.eclipse.birt.data.engine.impl.FilterByRow.process(FilterByRow.java:202) at org.eclipse.birt.data.engine.executor.cache.RowResultSet.processFetchEvent(RowResultSet.java:121) at org.eclipse.birt.data.engine.executor.cache.RowResultSet.next(RowResultSet.java:89) at org.eclipse.birt.data.engine.executor.cache.SmartCache.populateData(SmartCache.java:296) at org.eclipse.birt.data.engine.executor.cache.SmartCache.initInstance(SmartCache.java:223) at org.eclipse.birt.data.engine.executor.cache.SmartCache.<init>(SmartCache.java:97) at org.eclipse.birt.data.engine.executor.transform.SinglePassRowProcessor.initOdiResultSet(SinglePassRowProcessor.java:101) at org.eclipse.birt.data.engine.executor.transform.SinglePassRowProcessor.pass(SinglePassRowProcessor.java:60) at org.eclipse.birt.data.engine.executor.transform.ResultSetPopulator.populateResultSet(ResultSetPopulator.java:194) at org.eclipse.birt.data.engine.executor.transform.CachedResultSet.<init>(CachedResultSet.java:59) at org.eclipse.birt.data.engine.impl.PreparedJointDataSourceQuery$JointDataSetQueryExecutor.executeOdiQuery(PreparedJointDataSourceQuery.java:371) at org.eclipse.birt.data.engine.impl.QueryExecutor.execute(QueryExecutor.java:555) at org.eclipse.birt.data.engine.impl.QueryService.executeQuery(QueryService.java:125) at org.eclipse.birt.data.engine.impl.QueryResults.getResultIterator(QueryResults.java:143) at org.eclipse.birt.report.engine.data.dte.DteDataEngine.execute(DteDataEngine.java:210) at org.eclipse.birt.report.engine.executor.QueryItemExecutor.openResultSet(QueryItemExecutor.java:62) at org.eclipse.birt.report.engine.executor.TableItemExecutor.execute(TableItemExecutor.java:123) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitTableItem(ReportExecutorVisitor.java:188) at org.eclipse.birt.report.engine.ir.TableItemDesign.accept(TableItemDesign.java:69) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:125) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:89) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:175) at org.eclipse.birt.report.service.ReportEngineService.runAndRenderReport(ReportEngineService.java:505) at org.eclipse.birt.report.presentation.aggregation.layout.EngineFragment.doService(EngineFragment.java:100) at org.eclipse.birt.report.presentation.aggregation.BaseFragment.service(BaseFragment.java:156) at org.eclipse.birt.report.servlet.ViewerServlet.doGet(ViewerServlet.java:211) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.eclipse.tomcat.internal.EclipseErrorReportValve.invoke(EclipseErrorReportValve.java:153) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683) at java.lang.Thread.run(Unknown Source) | closed fixed | 4693675 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedJointDataSourceQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-05T04:12:55Z | 2006-04-03T07:40:00Z |
134,651 | Bug 134651 the joint data set can not be created | Description: the joint data set can not be created. Steps to reproduce: 1. new a report 2. new a dataset 3. new a jointdataset. Actual result: The jointdataset can not be built. rg.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3349) at org.eclipse.swt.SWT.error(SWT.java:3272) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3264) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2910) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1899) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1863) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:417) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:99) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:374) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) Caused by: java.lang.NullPointerException at org.eclipse.birt.data.engine.impl.ResultMetaData.getColumnCount(ResultMetaData.java:56) at org.eclipse.birt.report.designer.internal.ui.util.DataSetManager.execute(DataSetManager.java:326) at org.eclipse.birt.report.designer.internal.ui.util.DataSetManager.getColumns(DataSetManager.java:260) at org.eclipse.birt.report.designer.internal.ui.util.DataSetManager.getColumns(DataSetManager.java:196) at org.eclipse.birt.report.designer.internal.ui.util.DataSetManager.refresh(DataSetManager.java:160) at org.eclipse.birt.report.designer.internal.ui.views.data.DataViewTreeViewerPage$5.run(DataViewTreeViewerPage.java:490) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) ... 20 more | closed fixed | fec1dcc | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedJointDataSourceQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-04T07:26:45Z | 2006-04-04T03:06:40Z |
134,040 | Bug 134040 Row should not has page break property in Property Editor now. | Description: Row should not has page break property in Property Editor now. Steps to reproduce: 1. Insert a grid/table, select one row. 2. Set pageBreak properties Expected result: Row should not has page break property in Property Editor. Actual result: Page break can be set to row in Property Editor but cannot be saved. | closed fixed | 5d5cf7d | ["UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/internal/ui/ide/propertyeditor/IDECategoryProviderFactory.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-04T07:00:52Z | 2006-03-30T09:13:20Z |
134,216 | Bug 134216 [regression] add a report item to library does not work properly | steps to reproduce: - create a library - add report items, say label - add 1st label - add 2nd laebl expected behavior: - everytime i drag a label to Outline->ReportItems, the label will be added actual behavior: - for the 1st label, it worked out fine - for the 2nd label, i had to drag a label twice to complete the operation note that this happened with other report items as well | closed fixed | 4d27a13 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/DesignerConstants.java", "UI/org.eclipse.birt.report.designer.ui.lib/src/org/eclipse/birt/report/designer/internal/lib/editparts/LibraryReportDesignEditPart.java", "UI/org.eclipse.birt.report.designer.ui.lib/src/org/eclipse/birt/report/designer/internal/lib/views/outline/dnd/LibraryDropListener.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/tools/ReportCreationTool.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-04T05:29:06Z | 2006-03-31T07:26:40Z |
134,465 | Bug 134465 JDBC DataSource->sampledb.Driver can not be finished. | Steps: 1. Create a data source, select JDBC DataSource 2. Click next 3. Select org.eclipse.birt.report.data.oda.sampledb.Driver (Classic Models Inc. SampleDB Driver) 4. Test connection(Success) The dialog can not be finished("Finish" button is still gray out) | closed fixed | e6fc5a7 | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/profile/JDBCSelectionPageHelper.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-03T09:58:44Z | 2006-04-03T07:40:00Z |
134,229 | Bug 134229 [smoke][regression] fail to export data as csv format | steps to reproduce: - use the attached report - preview in web viewer - export data - select data - click on OK expected behavior: - data is exported (as csv format) actual behavior: - nothing happened | closed fixed | bd04a36 | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/servlet/ViewerServlet.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-03T06:45:32Z | 2006-03-31T07:26:40Z |
133,780 | Bug 133780 Execution sequence of valueExpr(DataItem) and onCreate() is not correct. | In the attached design. There is a DataItem in the table footer that I used to do a sum of the "Amount" column. In the test, I write the onCreate() method as: params["amount"]=Total.sum(row["AMOUNT"]); It passes the aggregation value to a parameter. In the "valueExpr" I write as: "AMOUNT:" + params["amount"] The expression is expected to export the sum. Actual output is: AMOUNT:null Followings are the definitions from Rom Text Spec & Rom Scripting Spec, valueExpr usually should be evalated after the onCreate() method. DataItem.valueExpr: The expression is usually evaluated when the report is rendered, not in the Factory, though it may be evaluated in the Factory also. onCreate: Executed when the element is created in the Factory. Called after the item is created, but before the item is saved to the report document file. | closed fixed | 40fb875 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/DataItemExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ImageItemExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/TextItemExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-03T06:15:17Z | 2006-03-29T05:26:40Z |
131,008 | Bug 131008 Support Result Set Column Binding in Data Engine | We will expand the concept of Data Binding to include binding of columns/expression. When a data set is bound to a table or data item, the user must define a set of Bound Data Columns. Each bound column has a name which must be unique within the binding set, a data type, and an expression which is defined based on the data sets columns and output parameters (using the familiar row and outputParams JS objects). In the simplest (and most common) case, a bound column is defined to map to a data set column, and has the same name as the data set column. The designer may also created compound bound columns with any Javascript expression, in effect creating a table-specific computed column. Bound Data Columns act as a bridge between report elements and data set data. Report elements (including all report element scripts) only have access to bound data columns. They can no longer directly access data set columns/output params like they do today. Bound Data Columns are referenced in report element expressions using the row Javascript variable. Its important to note that the row variable now has two different meanings depending on the context. When used in a report element expression (including filter expression and sort/group keys for a table), row[X] refers to the value of a bound expression named X. When used in a data sets expression (such as data set filter expression, data set computed column, data set event scripts), row[X] refers to a data set column named X. row[X] also refers to a data set column when it is used to define Bound Data Columns expressions. When editing an expression for a report element, the Expression Builder no longer shows available data set columns. Instead it shows all available bound data columns. Example: A data set with 4 columns LASTNAME, FIRSTNAME and ADDRESS and an output parameter EMP_COUNT is bound to a table. The designer wants a table that lists the full names of all employees with a header listing the total count. He decides that the table only needs access to the LASTNAME and FIRSTNAME columns and the EMP_COUNT parameter. He will then create the following column binding definition for the table. Note that the 4th column, FULLNAME is a computed column. ColumnName Expression Data Type LASTNAME row[LASTNAME] String FIRSTNAME row[FIRSTNAME] String EMP_COUNT outputParams[EMP_COUNT] Integer FULLNAME row[FIRSTNAME] + + row[LASTNAME] String When the designer then goes into the table to edit expressions for data items, the Expression Builder will show 4 available columns: LASTNAME, FIRSTNAME, EMP_COUNT and FULLNAME. It will not show ADDRESS. Computed bound expressions may use aggregates; their aggregate level however is limited to the entire list. Implications Using an index to access a column value (e.g., row[2]) will be deprecated (its use has always been discouraged anyway). For backward compatibility, row[n] will be interpreted to mean getting the nth column in the binding. This should work nicely for old report design (see compatibility note below). Javascript code in report items can no longer access the DataSet Javascript object. Access to these objects are limited to scripts on the data set itself. Expressions whose access to data are limited to bound data columns (but not aggregates) do not require preparation with DtE before they can be evaluated. Instead DtE will provide methods in its IResultIterator interface to directly get value of a bound data column by its name. (e.g., getValue(String boundColumnName) ). This allows all table event scripts and some expression (such as highlight, visibility etc.) to be evaluated by the Engine without the need to prepare them. Backward Compatibility For running a report created prior to 2.1 (which lacks data column binding definitions), we assume that all data set columns are bound to a table that uses the data set. The bound column names are identical to their mapped data set column names. All data set output parameters are also mapped the same way. We will put in compatibility code so that expression outputParams can still be evaluated in a table (it will be changed to row). When such a report is opened in the designer, designer should automatically update the table definition to create a map-all bindings. | resolved fixed | 83c61e1 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/CandidateQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/DataSourceQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/cache/CacheRequest.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/cache/SmartCache.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/cache/SortSpec.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/dscache/CandidateQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/dscache/DataSourceQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/CachedResultSet.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/FilterUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/IComputedColumnsState.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/IExpressionProcessor.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/ResultSetPopulator.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/TransformationConstants.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupBy.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupCalculationUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupProcessorManager.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/transform/group/GroupUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/expression/AggregateExpression.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/expression/ExpressionCompiler.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/expression/ExpressionProcessor.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ComputedColumnHelper.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/ExprManager.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/FilterByRow.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/IQueryService.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/PreparedOdaDSQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedScriptDSQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedSubquery.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/QueryExecutorUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/QueryResults.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/aggregation/AggregateCalculator.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/aggregation/AggregateTable.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/RDLoad.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/document/ResultIterator.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odaconsumer/DataTypeUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odaconsumer/Driver.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odi/ICandidateQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odi/IEventHandler.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odi/IPreparedDSQuery.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/JSDataSetImpl.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/JSOutputParams.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/JSResultSetRow.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-04-02T18:24:33Z | 2006-03-09T02:06:40Z |
102,511 | Bug 102511 Enhance Highlighting to support Banding | Using the highlight feature to create a banded report results in a messy report. To recreate, create a simple tabular report. In the designer, select the detail row, go to the Highlights tab on the Property Editor view. Add a new highlight, set its condition to be "row[0] % 2" "Equals" "0". Set the formatting for the highlight to have a gray background color. When the report is previewed, alternating rows have a background color for each cell. The issue is that the backgrounds for the cells are not contiguous, there are spaces between each cell's background, and if a cell has a null value there is no background color. In this situation the highlight should apply to the row, instead it is being applied to each cell. If I manually set the background of a detail row to be gray I get the effect I want. | resolved fixed | 3f64597 | ["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/parser/EngineIRVisitor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-31T09:54:23Z | 2005-07-01T17:46:40Z |
130,094 | Bug 130094 [regression] cannot edit group in Cheat Sheets | steps to reproduce: - create a report using Grouped Listing template - switch to Cheat Sheets, start/restart the tutorial - follow the steps to 1) create data source; 2) create data set; 3) bind the data to the table; and 4) edit the group expected behavior: - group dialog should be displayed actual behavior: - error message displayed. please refer to the attached image for detail | closed fixed | 49915e9 | ["UI/org.eclipse.birt.report.designer.ui.editors.schematic/src/org/eclipse/birt/report/designer/ui/actions/cheatsheets/TemplateBaseAction.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/DefaultNodeProvider.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-31T06:58:31Z | 2006-03-02T09:00:00Z |
122,419 | Bug 122419 Masterpage cannot access Data Set properties | If one references a data set property in the master page, i.e. row["title"], then the viewer displays only 'undefined'. | resolved fixed | 78a4d8c | ["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 | 2006-03-31T06:18:40Z | 2005-12-31T11:53:20Z |
134,032 | Bug 134032 Page break after always doesn't break page between last group and table footer. | Description: Page break after always doesn't break page between last group and table footer. Steps to reproduce: 1. New a table with a group. 2. set pageBreakAfter to always to the group. 3. Preview. Result: Table footer was in the same page as last group. | closed fixed | bb55c25 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ListingElementExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-31T06:07:56Z | 2006-03-30T09:13:20Z |
134,057 | Bug 134057 [Smoke]NoClassDefFound when view report contains ODA data source after deploy birt in tomcat4 | Description: NoClassDefFound when view report contains ODA data source after deploy birt in tomcat4 Steps to reproduce: 1. Deploy birt 2. view reports with ODA data source inside. Result: java.lang.NoClassDefFoundError: org/eclipse/birt/report/model/plugin/ODABaseProviderFactory at org.eclipse.birt.report.model.extension.oda.ODAProviderFactory.createODAProvider(ODAProviderFactory.java:60) at org.eclipse.birt.report.model.parser.OdaDataSourceState.parseODADataSourceExtensionID(OdaDataSourceState.java:103) at org.eclipse.birt.report.model.parser.OdaDataSourceState.parseAttrs(OdaDataSourceState.java:53) at org.eclipse.birt.report.model.parser.ModuleParserHandler.startElement(ModuleParserHandler.java:159) at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source) at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) at javax.xml.parsers.SAXParser.parse(Unknown Source) at org.eclipse.birt.report.model.parser.ModuleReader.readModule(ModuleReader.java:89) at org.eclipse.birt.report.model.parser.ModuleReader.readModule(ModuleReader.java:171) at org.eclipse.birt.report.model.parser.DesignReader.read(DesignReader.java:135) at org.eclipse.birt.report.model.core.DesignSession.openDesign(DesignSession.java:179) at org.eclipse.birt.report.model.api.SessionHandle.openDesign(SessionHandle.java:151) at org.eclipse.birt.report.engine.parser.ReportParser.getDesignHandle(ReportParser.java:93) at org.eclipse.birt.report.engine.api.impl.ReportEngineHelper.openReportDesign(ReportEngineHelper.java:104) at org.eclipse.birt.report.engine.api.impl.ReportEngine.openReportDesign(ReportEngine.java:218) at org.eclipse.birt.report.service.ReportEngineService.openReportDesign(Unknown Source) at org.eclipse.birt.report.context.ViewerAttributeBean.init(Unknown Source) at org.eclipse.birt.report.context.ViewerAttributeBean.<init>(Unknown Source) at org.eclipse.birt.report.context.BirtContext.<init>(Unknown Source) at org.eclipse.birt.report.servlet.ViewerServlet.doGet(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327) at javax.servlet.http.HttpServlet.service(HttpServlet.java:809) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209) | closed fixed | 682159c | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/extension/oda/ODAProviderFactory.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-31T05:28:41Z | 2006-03-30T12:00:00Z |
130,492 | Bug 130492 Provide a method to serialize the report with library information. | Currently, when engine generate the report document file, the document does not contain any library information. That will cause many propblem on server side. Model should provide a method to serialize the report with library information to a stream so that the generated report document can contain all information that the report need. | resolved fixed | 1380744 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/JointDataSetHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/util/DocumentUtil.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/core/DesignElement.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/core/ReferencableStructure.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/elements/JointDataSet.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/util/ModelUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-30T02:25:10Z | 2006-03-06T01:53:20Z |
133,776 | Bug 133776 Oda DesignerState support on OdaDataSource | OdaDataSet supported Oda DesignerState. This feature is also need in OdaDataSource. Please add OdaDesignerState property to OdaDataSource element in ROM. Make the related changes. | closed fixed | 390afe6 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/OdaDataSetHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/OdaDataSourceHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/elements/interfaces/IOdaDataSourceModel.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/parser/StructureState.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 | 2006-03-29T09:50:11Z | 2006-03-29T05:26:40Z |
130,511 | Bug 130511 Move RunReportAction from IDE plugin to Preview plugin | RunReportAction need InputParameterDialog which will move to Preview plugin, but IDE plugin is not depends on Preview plugin, so this action must move to Preview plugin | resolved fixed | dd0e8e3 | ["UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/navigator/PublishTemplateNavigatorAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-29T05:22:11Z | 2006-03-06T07:26:40Z |
130,068 | Bug 130068 [Regression]Report Parameter window doesn't pop up when preview a report with parameter. | Description: Report Parameter window doesn't pop up when preview a report with parameter. Steps to reproduce: 1. New a report parameter without default value. 2. Drag it to Layout. 3. Click Preview in Layout. Expected result: Window pops up for value input. Actual result: Some required parameter values are not set or set to incompatible data type. | closed fixed | 71b75c5 | ["UI/org.eclipse.birt.report.designer.ui.preview/src/org/eclipse/birt/report/designer/ui/preview/editors/ReportPreviewFormPage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-28T07:13:45Z | 2006-03-02T03:26:40Z |
133,446 | Bug 133446 org.eclipse.birt.report.viewer compiles error in daily build 20060328 | org.eclipse.birt.report.viewer compiles error in daily build 20060328. The error msg is below: viewservlets: [mkdir] Created dir: E:\DailyBuild\eclipse\plugins\org.eclipse.birt.report.viewer\temp.folder\birt_web\WEB-INF\lib\viewservlets.jar.bin [javac] Compiling 117 source files to E:\DailyBuild\eclipse\plugins\org.eclipse.birt.report.viewer\temp.folder\birt_web\WEB-INF\lib\viewservlets.jar.bin [javac] E:\DailyBuild\eclipse\plugins\org.eclipse.birt.report.viewer\birt_web\WEB-INF\classes\org\eclipse\birt\report\service\ReportEngineService.java:65: package org.eclipse.birt.report.engine.script.internal does not exist [javac] import org.eclipse.birt.report.engine.script.internal.ScriptExecutor; [javac] ^ [javac] E:\DailyBuild\eclipse\plugins\org.eclipse.birt.report.viewer\birt_web\WEB-INF\classes\org\eclipse\birt\report\service\ReportEngineService.java:213: cannot resolve symbol [javac] symbol : variable ScriptExecutor [javac] location: class org.eclipse.birt.report.service.ReportEngineService [javac] scriptlibClassPath += ScriptExecutor.PROPERTYSEPARATOR [javac] ^ [javac] E:\DailyBuild\eclipse\plugins\org.eclipse.birt.report.viewer\birt_web\WEB-INF\classes\org\eclipse\birt\report\service\ReportEngineService.java:216: cannot resolve symbol [javac] symbol : variable ScriptExecutor [javac] location: class org.eclipse.birt.report.service.ReportEngineService [javac] if ( scriptlibClassPath.startsWith( ScriptExecutor.PROPERTYSEPARATOR ) ) [javac] ^ [javac] E:\DailyBuild\eclipse\plugins\org.eclipse.birt.report.viewer\birt_web\WEB-INF\classes\org\eclipse\birt\report\service\ReportEngineService.java:218: package ScriptExecutor does not exist [javac] .substring( ScriptExecutor.PROPERTYSEPARATOR.length( ) ); [javac] ^ [javac] E:\DailyBuild\eclipse\plugins\org.eclipse.birt.report.viewer\birt_web\WEB-INF\classes\org\eclipse\birt\report\service\ReportEngineService.java:220: cannot resolve symbol [javac] symbol : variable ScriptExecutor [javac] location: class org.eclipse.birt.report.service.ReportEngineService [javac] System.setProperty( ScriptExecutor.WEBAPP_CLASSPATH_KEY, [javac] ^ [javac] Note: Some input files use or override a deprecated API. [javac] Note: Recompile with -deprecation for details. [javac] 5 errors | closed fixed | fcb0077 | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/service/ReportEngineService.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-28T06:07:51Z | 2006-03-28T01:40:00Z |
132,506 | Bug 132506 [Regression][Linux WS]Error on operation buttom in layout tab | Details: [Regression]Error on operation buttom in layout tab Setp: When I new a report design or template, it will be appear on preview state, but layout state. | closed fixed | 1f6fa71 | ["UI/org.eclipse.birt.report.designer.ui.editors/src/org/eclipse/birt/report/designer/internal/ui/extension/EditorContributorManager.java", "UI/org.eclipse.birt.report.designer.ui.editors/src/org/eclipse/birt/report/designer/internal/ui/extension/FormPageDef.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-27T06:40:45Z | 2006-03-20T07:33:20Z |
128,674 | Bug 128674 PDF not obeying width or background color | I have a simple SQL table with columns for dept, firstname, MI, lastname. I created a grouped report using the wizard, and associated it with the above table. By default the report thus created it has 3 columns. I added a 4th column and set the widths of all columns to 25%. I then put dept in as the grouping field, and fname, mi, lastname as the 3 detail columns. I displays correctly in the preview tab, and in file-->preview as PDF and file-->preview as HTML. I now adjust the column widths to make them reflect the actual data, and set them to 10/40/10/40%. preview tab shows the new widths correctly. file--->preview as HTML also shows them correctly. But File-->preview as PDF still shows the columns distributed 25/25/25/25% To check this a little further, I go back to layout mode and assign a different arbitrary background color to each column, and preview mode and preview as HTML show the colors correctly, but previews as PDF does not show the colors and still shows 25/25/25/25%. I save the rptdesign file and look at the xml. I see the following: <column id="35"> <property name="width">10%</property> <property name="backgroundColor">#80FFFF</property> </column> <column id="64"> <property name="width">40%</property> <property name="backgroundColor">#FFFF80</property> </column> <column id="37"> <property name="width">10%</property> <property name="backgroundColor">#FF80FF</property> </column> <column id="56"> <property name="width">40%</property> <property name="backgroundColor">#FF8080</property> </column> So the xml is saved correcrtly with the %width and the bgcolor set. The PDF viewer is not obeying it. Is this a restriction? I think if this was ever an itext problem it would have been fixed ages ago. | resolved fixed | 57e9cf5 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/dom/CellComputedStyle.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-27T06:26:36Z | 2006-02-20T15:40:00Z |
133,090 | Bug 133090 Unable to set parameter value based on name | I have a data set definition that contains a query with 1 parameter. The parameter definition within the rptdesign file is as follows: <list-property name="parameters"> <structure> <property name="name">param1</property> <property name="dataType">string</property> <property name="position">-1</property> <expression name="defaultValue">'130'</expression> <property name="isInput">true</property> </structure> </list-property> The ODA driver I am testing with does not support setString() with position argument (it only supports setString() by name), so setting position=1 above is not an option. public void setString( int parameterId, String value ) throws OdaException { throw new UnsupportedOperationException( "AcSapMDQueryStatement.setString( int parameterId, String value )" ); } So I specified position=-1 above and hope the parameter-value-setting will be done by name. But this still fails. Tracing the code, I found that in following code in birt.data.engine.odaconsumer.ParameterHint.setPosition( int ), position value being -1 will cause an exception thrown: public void setPosition( int position ) { final String methodName = "setPosition"; if( position < 1 ) { String localizedMessage = DataResourceHandle.getInstance().getMessage( ResourceConstants.PARAMETER_POSITION_CANNOT_BE_LESS_THAN_ONE ); sm_logger.logp( Level.SEVERE, sm_className, methodName, "Invalid parameter position {0} ", new Integer( position ) ); throw new IllegalArgumentException( localizedMessage ); } m_position = position; } Here is the call stack: ParameterHint.setPosition(int) line: 100 DataSourceQuery.addParameterDefns() line: 371 DataSourceQuery.prepare() line: 309 PreparedOdaDSQuery$OdaDSQueryExecutor.prepareOdiQuery() line: 278 PreparedOdaDSQuery$OdaDSQueryExecutor(QueryExecutor).prepareExecution(IQueryResults, Scriptable) line: 238 PreparedQuery.doPrepare(IQueryResults, Scriptable, QueryExecutor, PreparedDataSourceQuery) line: 323 PreparedOdaDSQuery(PreparedDataSourceQuery).execute(IQueryResults, Scriptable) line: 174 PreparedOdaDSQuery(PreparedDataSourceQuery).execute(Scriptable) line: 157 DteDataEngine.execute(IBaseQueryDefinition) line: 205 As discussed with Gary Xue, there are two issues here: - Currently the default position value within ParameterHint is left as-is during initialization so it becomes 0: public class ParameterHint { private String m_name; private int m_position; .... } It should be initialized to -1. - Another issue is in the logic of org.eclipse.birt.data.engine.executor.DataSourceQuery.addParameterDefns() function. The choice of whether to set parameter value by position or by name is determined by the parameterHint's position value (see red text below): private void addParameterDefns() throws DataException { if ( this.paramDefnAndValBindings == null ) return; // nothing to add // iterate thru the collection to add parameter hints Iterator list = this.paramDefnAndValBindings.iterator( ); while ( list.hasNext( ) ) { ParamDefnAndValBinding paramDefnAndValBinding = (ParamDefnAndValBinding) list.next( ); IParameterDefinition parameterDefn = paramDefnAndValBinding.getParamDefn(); ParameterHint parameterHint = new ParameterHint( parameterDefn.getName(), parameterDefn.isInputMode(), parameterDefn.isOutputMode() ); parameterHint.setPosition( parameterDefn.getPosition( ) ); // following data types is not supported by odaconsumer currently Class dataTypeClass = DataType.getClass( parameterDefn.getType( ) ); if ( dataTypeClass == DataType.AnyType.class || dataTypeClass == Boolean.class || dataTypeClass == Blob.class ) { dataTypeClass = null; } parameterHint.setDataType( dataTypeClass ); parameterHint.setIsInputOptional( parameterDefn.isInputOptional( ) ); parameterHint.setDefaultInputValue( paramDefnAndValBinding.getValue() ); parameterHint.setIsNullable( parameterDefn.isNullable() ); odaStatement.addParameterHint( parameterHint ); //If the parameter is input parameter then add it to input value list. if ( parameterHint.isInputMode( ) && parameterHint.getDefaultInputValue( ) != null ) { Object inputValue = convertToValue( parameterHint.getDefaultInputValue( ), parameterDefn.getType( ) ); if ( parameterHint.getPosition( ) != -1 ) this.setInputParamValue( parameterHint.getPosition( ), inputValue ); else this.setInputParamValue( parameterHint.getName( ), inputValue ); } } this.setInputParameterBinding(); } The line above that assigns the position value: parameterHint.setPosition( parameterDefn.getPosition( ) ); This line should be changed to if ( parameterDefn.getPosition() != -1 ) parameterHint.setPosition( parameterDefn.getPosition( ) ); This will make sure the code does not trigger the sanity check within parameterHint.setPosition(). | resolved fixed | 100ba3d | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/DataSourceQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-27T06:03:22Z | 2006-03-24T00:26:40Z |
133,180 | Bug 133180 Support FolderArchive in BIRT.core | BIRT curently supports FolderArchive reader and writer. However, to support using report document as data source, and potentially even replace the report document during rendering, an interface/class that supports both read and write with the same object is needed. Because BIRT internal codes uses archive reader and writer frequently, it is desirable that the new class implements both the reader and writer interfaces. The implementation class could contain a reader and a writer class, and implement the two interfaces through delagation. But this is not a requirement, but just a suggestion. The interface shuld also support a method isOpen() for checking whether the archive is already open. The interface should support file lock, i.e., read/write file lock. The class for now does not need to support synchronization between read/write. It is the caller's responsibility to do so, using the lock mechanism/method on the archive. Because the archive is a folder, concurrently read/write is an exception, instead of norm. | resolved fixed | ffa8926 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/archive/FolderArchive.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-25T21:28:29Z | 2006-03-24T17:06:40Z |
133,096 | Bug 133096 Mapping of ODA data type literal value to code value | The ODA dataSource extension point specifies an ODA scalar data type in its literal value. But most handling of an ODA data type in the ODA framework is done with its code value. The oda.util.manifest package should provide the conversion utility to map from an ODA literal value to its corresponding code value. Another issue is with the native data type code. If a native data type is unknown, a 0 value has been used to represent "unknown" value. The latest implementation in the ODA design-time framework should be consistent with the definition. | closed fixed | 4a5133f | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/data/DataTypeUtil.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odaconsumer/Driver.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-24T03:13:35Z | 2006-03-24T03:13:20Z |
131,835 | Bug 131835 Clean up FO related code | Now that FO is not part of BIRT, clean up all references to FO, including the FORenderOption, TailoredForFOP, etc. | resolved fixed | 26d0422 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/ReportRunner.java", "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 | 2006-03-23T04:44:55Z | 2006-03-14T21:00:00Z |
132,630 | Bug 132630 Additional markers can not support interactivity | Additional markers can not support interactivity Steps: 1.Create a line chart 2.Set Y series marker to additional marker such as star or ellipse 3.Add a interactivity such as showTooltip to Y series 4.Preview in web viewer Actual results: 1.Additional markers can not support interactivity Expected Results: 1.Additional markers can nsupport interactivity | closed fixed | d58fb91 | ["chart/org.eclipse.birt.chart.device.svg/src/org/eclipse/birt/chart/device/svg/SVGRendererImpl.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-22T18:59:40Z | 2006-03-21T05:46:40Z |
127,005 | Bug 127005 Dynamic drill thru link to book mark | To create a drill thru link to a report document, user has to pre-create book marks in the target report today. But in many cases, the target report could be designed by a different report writer. And that report writer may not know what section of the report others want to link to. We shall not require the target report has pre-created book mark for other reports to link to it. We shall allow link to a report's TOC, and allow link to report based on report item ID + row id (col name, col value) For BIRT 2.1, we only need to add support of drill thru link to tarket report's TOC. | resolved fixed | 05098ff | ["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 | 2006-03-22T09:40:46Z | 2006-02-09T01:53:20Z |
132,519 | Bug 132519 The program is differ from the specification | Description: The program is differ from the specification Detail: 1.In the code of BuiltInAggregationFactory.java public static final String TOTAL_TOP_PERCENT_FUNC = "ISTOPPERCENT"; public static final String TOTAL_BOTTOM_PERCENT_FUNC = "ISBOTTOMPERCENT"; should change to: public static final String TOTAL_TOP_PERCENT_FUNC = "ISTOPNPERCENT"; public static final String TOTAL_BOTTOM_PERCENT_FUNC = "ISBOTTOMNPERCENT"; 2. the function Total.isTopNPercent( expr, pct ) the value of Pct should be [0,100] | closed fixed | 501add5 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-22T05:37:46Z | 2006-03-20T10:20:00Z |
130,088 | Bug 130088 [Regression]NPE when open report with syntax error. | Description: NPE when open report with syntax error. Steps to reproduce: 1.In report, under MasterPage, add:<Style name="wrongName"/> as attached report 2.Open it. Expected result: See syntax error. Actual result: java.lang.NullPointerException at org.eclipse.birt.report.designer.core.model.DesignElementHandleAdapter.getModuleHandle(DesignElementHandleAdapter.java:105) at org.eclipse.birt.report.designer.core.model.SessionHandleAdapter.getReportDesignHandle(SessionHandleAdapter.java:225) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.actions.EditBindingAction.calculateEnabled(EditBindingAction.java:51) at org.eclipse.gef.ui.actions.WorkbenchPartAction.refresh(WorkbenchPartAction.java:119) at org.eclipse.gef.ui.actions.SelectionAction.handleSelectionChanged(SelectionAction.java:85) at org.eclipse.gef.ui.actions.SelectionAction.setSelection(SelectionAction.java:96) at org.eclipse.gef.ui.actions.SelectionAction.update(SelectionAction.java:117) at org.eclipse.birt.report.designer.internal.ui.editors.parts.GraphicalEditorWithFlyoutPalette.updateActions(GraphicalEditorWithFlyoutPalette.java:721) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.layout.ReportLayoutEditor.selectionChanged(ReportLayoutEditor.java:97) at org.eclipse.ui.internal.AbstractSelectionService.fireSelection(AbstractSelectionService.java:156) at org.eclipse.ui.internal.AbstractSelectionService$1.selectionChanged(AbstractSelectionService.java:62) at org.eclipse.ui.part.MultiPageSelectionProvider$1.run(MultiPageSelectionProvider.java:101) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:816) at org.eclipse.ui.part.MultiPageSelectionProvider.fireEventChange(MultiPageSelectionProvider.java:99) at org.eclipse.ui.part.MultiPageSelectionProvider.fireSelectionChanged(MultiPageSelectionProvider.java:82) at org.eclipse.birt.report.designer.internal.ui.editors.parts.ReportMultiPageEditorSite.handleSelectionChanged(ReportMultiPageEditorSite.java:335) at org.eclipse.birt.report.designer.internal.ui.editors.parts.ReportMultiPageEditorSite$1.selectionChanged(ReportMultiPageEditorSite.java:271) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:162) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:816) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:160) at org.eclipse.jface.text.TextViewer.fireSelectionChanged(TextViewer.java:2275) at org.eclipse.jface.text.TextViewer.selectionChanged(TextViewer.java:2258) at org.eclipse.jface.text.TextViewer$3.widgetSelected(TextViewer.java:1484) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:949) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:934) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:706) at org.eclipse.swt.custom.StyledText.sendSelectionEvent(StyledText.java:6519) at org.eclipse.swt.custom.StyledText.doSelection(StyledText.java:2761) at org.eclipse.swt.custom.StyledText.doMouseSelection(StyledText.java:2388) at org.eclipse.swt.custom.StyledText.doMouseLocationChange(StyledText.java:2372) at org.eclipse.swt.custom.StyledText.handleMouseMove(StyledText.java:5157) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4809) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1899) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1863) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:417) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:99) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:374) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | closed fixed | 6d494be | ["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/src/org/eclipse/birt/report/designer/internal/ui/editors/parts/GraphicalEditorWithFlyoutPalette.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-22T02:15:52Z | 2006-03-02T09:00:00Z |
132,621 | Bug 132621 Series label font can not take effect. | Series label font can not take effect. Steps: 1.Create a line chart 2.Open chart builder, go to "Format Chart" tab, click "Y Series", click "Label" button, click "..." button beside font, set color to red and bold 3.Preview in layout, html Actaul Results: 1.Label font can not be changed Expected Results: 1.Label color is red and font is bold. | closed fixed | a8c7183 | ["chart/org.eclipse.birt.chart.device.svg/src/org/eclipse/birt/chart/device/svg/SVGGraphics2D.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-03-21T20:04:38Z | 2006-03-21T03:00:00Z |
122,254 | Bug 122254 Not Like operator is missing in the Filter tab of Data Set window | null | resolved fixed | 615a45c | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/api/IConditionalExpression.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/ScriptEvalUtil.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/adapter/ModelDteApiAdapter.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 | 2006-03-21T08:35:42Z | 2005-12-28T17:13:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.