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] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
124,238 | Bug 124238 Grid without data binding will throw npe and break report. | In GridItemExecutor the following line of code will throw npe if there is no result set: IResultIterator rsIterator = ( ( DteResultSet ) rset ).getResultIterator( ); Need a null check. This is very serious, it will break reports with grids that don't have data binding. I consider this a showstopper for the 2.0 release. | resolved fixed | 43a2a4f | ["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/script/internal/RowData.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-18T02:13:55Z | 2006-01-18T02:06:40Z |
123,722 | Bug 123722 Java based scripting -> getExpressionValue(int i) of IRowData returns unreasonable value | public void onPrepare( IRow row, IReportContext reportContext ) { try { row.setBookmark( "\"row-bookmark\"" ); System.out.println( row.getBookmark( ) ); } catch ( Exception e ) { e.printStackTrace( ); } } public void onCreate(IRowInstance rowInstance, IReportContext reportContext) { try { IRowData rowData = rowInstance.getRowData( ); Object int2 = rowData.getExpressionValue( 1 ); System.out.println( int2 ); } catch ( Exception e ) { e.printStackTrace( ); } } Consider the script above, according to Javadoc, rowData.getExpressionValue( 1 ) will return the first data expr. of the row, i.e. the value of the first column. However, it was noticed that "row-bookmark" was returned instead. And if i used rowData.getExpressionValue( 2 ), then i got the right value. So if it was the correct implementation, it should be clearly stated in Javadoc. | closed fixed | c332d32 | ["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/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/GridScriptExecutor.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"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-17T20:10:43Z | 2006-01-13T05:26:40Z |
123,840 | Bug 123840 Incorrect use of static fields in NEvaluator and FilterPassController | Data Engine classes org.eclipse.birt.data.engine.script.NEvaluator and FilterPassController (used for top-n and bottom-n filter process) use static class fields to store proessing data. This is not multi-thread safe. If there are concurrent requests running in the same JVM (even if they use different instances of DataEngine), data corruption will occur since multiple requests may get/set the static fields at the same time. These classes should keep all per-request data in instance fields. Each report query need to have its own instance. | resolved fixed | 54d8c65 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/FilterPassController.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/NEvaluator.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/ScriptEvalUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-17T05:44:27Z | 2006-01-13T22:06:40Z |
123,705 | Bug 123705 ClassCastException when trying to cast IReportContext.getHttpServletRequest() to HttpServletRequest | When scripting in Java, I try to get the http servlet request. IReportContext.getHttpServletRequest() returns an object, which by inspection seems to implement javax.servlet.HttpServletRequest. But I get a ClassCastException when trying to cast the object to a HttpServletRequest. The java project with the event handler class has $ECLIPSE_HOME/plugins/org.eclipse.tomcat_4.1.30.1/servlet.jar on the build path. I'm guessing there might be a class loader problem? Here is the code: public void onCreate(IImageInstance image, IReportContext reportContext) { Object o = reportContext.getHttpServletRequest(); Class[] interfaces = o.getClass().getInterfaces(); for (int i = 0; i < interfaces.length; i++) System.out.println(interfaces[i]); HttpServletRequest request = (HttpServletRequest)reportContext.getHttpServletRequest(); } The printout of the System.out is: interface javax.servlet.http.HttpServletRequest The exception is: Error0 : Error.UnhandledScriptError ( 1 time(s) ) detail : org.eclipse.birt.report.engine.api.EngineException: Unhandled exception when executing script at org.eclipse.birt.report.engine.script.internal.ScriptExecutor.addException(ScriptExecutor.java:204) at org.eclipse.birt.report.engine.script.internal.ScriptExecutor.addException(ScriptExecutor.java:194) at org.eclipse.birt.report.engine.script.internal.ImageScriptExecutor.handleOnCreate(ImageScriptExecutor.java:62) at org.eclipse.birt.report.engine.executor.ImageItemExecutor.execute(ImageItemExecutor.java:120) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitImageItem(ReportExecutorVisitor.java:203) at org.eclipse.birt.report.engine.ir.ImageItemDesign.accept(ImageItemDesign.java:91) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:121) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:87) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:175) at org.eclipse.birt.report.services.ReportEngineService.runAndRenderReport(ReportEngineService.java:442) at org.eclipse.birt.report.viewer.aggregation.layout.EngineFragment.doService(EngineFragment.java:100) at org.eclipse.birt.report.viewer.aggregation.BaseFragment.service(BaseFragment.java:156) at org.eclipse.birt.report.viewer.servlet.ViewerServlet.doGet(ViewerServlet.java:172) 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(Thread.java:534)Caused by: java.lang.ClassCastException at ImageImpl.onCreate(ImageImpl.java:22) at org.eclipse.birt.report.engine.script.internal.ImageScriptExecutor.handleOnCreate(ImageScriptExecutor.java:59) ... 44 more | resolved fixed | 9788c15 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/EngineConstants.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ExecutionContext.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ScriptExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-17T05:06:44Z | 2006-01-13T02:40:00Z |
123,036 | Bug 123036 Data in a reprot is doubly stored | We currently stored data twice. Once in the content stream, once by DtE. The instance stored by content stream should not be there. | resolved fixed | 5b44626 | ["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/RDLoad.java", "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-01-17T04:18:53Z | 2006-01-08T22:40:00Z |
123,939 | Bug 123939 [Smoke][Regression]Drill through link doesn't work in pdf. | Description: Drill through link doesn't work in pdf. Steps to reproduce: 1. View attached design file url.rptdesign in html/pdf, click the drill though link in the last three image. Result: Drill through link doesn't work in pdf. Some links in html also don't work. | closed fixed | a3103af | ["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-01-16T13:13:50Z | 2006-01-16T11:13:20Z |
123,723 | Bug 123723 I18n Problem | null | closed fixed | cc7f7e8 | ["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-01-13T20:55:33Z | 2006-01-13T05:26:40Z |
123,736 | Bug 123736 Underline, linethrough, overline doesn't work for chart font. | Description: Underline, linethrough, overline doesn't work for chart font. Steps to teproduce: 1. Add a style, set its font. 2. Tick "underline", "linethrough" and "overline". 3. Preview. Font setting doesn't work. | closed fixed | e3afd8d | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/factory/Generator.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/util/ChartUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T18:49:01Z | 2006-01-13T08:13:20Z |
123,701 | Bug 123701 Edit JDBC DataSet unresponsive when database has many tables | I am using a JDBC DataSet to access an Oracle database. When I try to edit the JDBC DataSet to edit the query, the interface becomes unresponsive for several minutes, as BIRT is trying to retrieve the names of all the tables, views and stored procedures from all the schemas (and there are many schemas). After the dialog finally pops up, I have the option to specify a filter, but the filter does not get saved, so next time I have to go through this again. Version: 2.0.0 Build id: 200601060544 | resolved fixed | 50ccb69 | ["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-01-13T11:10:58Z | 2006-01-13T02:40:00Z |
123,727 | Bug 123727 the 'Top N' and 'Buttom N' do not work | Description: the 'Top N' and 'Buttom N' do not work Steps to reproduce: 1. new a report 2. new a datasource and a dataset 3. creat a report parameter, 4. drag a chart to the layout, In chart dialogue, click the 'select data' tab and click the button 'filters'. 5. set two filters condition, one is used the 'Top N' function and the other used the report parameter. 6. save and preview Actual result: NO data are displayed. Expect result: The data displayed according to the 'Top N' and 'Input Parameters' | closed fixed | 7d440a1 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/FilterPassController.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/script/NEvaluator.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T10:29:33Z | 2006-01-13T08:13:20Z |
123,734 | Bug 123734 org.eclipse.birt.report.tests.engine unit test failed in daily build 20060113 | org.eclipse.birt.report.tests.engine unit test failed. Please see attached. | closed fixed | 5b8d16a | ["testsuites/org.eclipse.birt.report.tests.engine/src/org/eclipse/birt/report/tests/engine/api/RenderTaskTest.java", "testsuites/org.eclipse.birt.report.tests.engine/src/org/eclipse/birt/report/tests/engine/api/ReportDocumentTest.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T10:15:39Z | 2006-01-13T08:13:20Z |
123,708 | Bug 123708 A new Date() appears in a generated report between a Text element and a Table element | A new Date() appears in a generated report between a Text element and a Table element. I did not observe this behavior before the 20060112 build. For example, using the 20051230 build, the date did not appear between the HTML text block and the table that follows it in the report. The date that appears in the generated report matches the date that appears in the footer, which uses the following script: <value-of>new Date()</value-of> The report design specifies no content in the header of the Master Page. The report design does not specify a page break after the Text element and before the Table element. The attached Customers.rptdesign that uses ClassicModels database. | resolved fixed | 863bf54 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/presentation/Page.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/presentation/PageRegion.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T09:54:44Z | 2006-01-13T02:40:00Z |
123,559 | Bug 123559 Interval can't be set on scripted data | Description: Interval can't be set on scripted data Steps to reproduce: 1.New a sample data source and a data set with table "ORDERS" 2.New a table binding with the data set 3.Add a group on the table, goupkey->row["ORDERDATE"].getFullYear() Interval->Interval, range->1 4.Preview Expected result: The data is grouped by the group key and interval Actual result: Error0 : data.engine.group.interval ( 1 time(s) ) detail : org.eclipse.birt.data.engine.core.DataException: Setting a numeric interval on a column with type org.eclipse.birt.core.data.DataType$AnyType is not supported. at org.eclipse.birt.data.engine.executor.GroupBy.newInstance(GroupBy.java:57) at org.eclipse.birt.data.engine.executor.GroupCalculationUtil.initGroupSpec(GroupCalculationUtil.java:288) at org.eclipse.birt.data.engine.executor.CachedResultSet.pass(CachedResultSet.java:1376) at org.eclipse.birt.data.engine.executor.CachedResultSet.populateResultSet(CachedResultSet.java:224) at org.eclipse.birt.data.engine.executor.CachedResultSet.<init>(CachedResultSet.java:84) at org.eclipse.birt.data.engine.executor.DataSourceQuery.execute(DataSourceQuery.java:546) at org.eclipse.birt.data.engine.impl.PreparedExtendedDSQuery$ExtendedDSQueryExecutor.executeOdiQuery(PreparedExtendedDSQuery.java:353) at org.eclipse.birt.data.engine.impl.PreparedQuery$Executor.execute(PreparedQuery.java:712) at org.eclipse.birt.data.engine.impl.QueryResults.getResultIterator(QueryResults.java:110) 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:114) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitTableItem(ReportExecutorVisitor.java:187) at org.eclipse.birt.report.engine.ir.TableItemDesign.accept(TableItemDesign.java:69) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:121) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:87) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:158) at org.eclipse.birt.report.services.ReportEngineService.runAndRenderReport(Unknown Source) at org.eclipse.birt.report.viewer.aggregation.layout.EngineFragment.doService(Unknown Source) at org.eclipse.birt.report.viewer.aggregation.BaseFragment.service(Unknown Source) at org.eclipse.birt.report.viewer.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(Thread.java:534) | closed fixed | cfeebd7 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/i18n/ResourceConstants.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/PreparedQuery.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T08:46:49Z | 2006-01-12T07:13:20Z |
123,568 | Bug 123568 Can not evaluate new Date(String).getDate() | Description: Add a computed column named "a", set its type to "Date", and set its expression as "new Date("1/1/2002")". Pull the computed column "a" to the layout, and change the expression to "row["a"].getDate()", error pops up. Error message: iO3EI OU iIo: -Data OO iIo: 81 iIo 0 : data.engine.BirtException ( 1 I IeI EAI: org.eclipse.birt.data.engine.core.DataException: Eu BIRT AyIaoO Javascript i iE12CoOE3o i 12A34OyC iIo: TypeError: getDate is not a function. 12A34O : null: 0IA34:<compiled script>2e IAO oAyIaOOAE12a uaAIO Javascript i iE12CoOE3o i 12A34OyC iIo: TypeError: getDate is not a function. 12A34O : null: 0IA34:<compiled script> at org.eclipse.birt.data.engine.core.DataException.wrap(DataException.java:113) at org.eclipse.birt.data.engine.impl.BytecodeExpression.evaluate(BytecodeExpression.java:53) at org.eclipse.birt.data.engine.impl.ResultIterator.evaluateCompiledExpression(ResultIterator.java:248) at org.eclipse.birt.data.engine.impl.ResultIterator.getValue(ResultIterator.java:275) at org.eclipse.birt.report.engine.data.dte.DteDataEngine.evaluate(DteDataEngine.java:297) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:528) at org.eclipse.birt.report.engine.executor.DataItemExecutor.execute(DataItemExecutor.java:86) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitDataItem(ReportExecutorVisitor.java:157) at org.eclipse.birt.report.engine.ir.DataItemDesign.accept(DataItemDesign.java:68) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:121) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:87) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:158) at org.eclipse.birt.report.services.ReportEngineService.runAndRenderReport(Unknown Source) at org.eclipse.birt.report.viewer.aggregation.layout.EngineFragment.doService(Unknown Source) at org.eclipse.birt.report.viewer.aggregation.BaseFragment.service(Unknown Source) at org.eclipse.birt.report.viewer.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(Thread.java:534)Caused by: org.eclipse.birt.core.exception.CoreException: O Javascript i iE12CoOE3o i 12A34OyC iIo: TypeError: getDate is not a function. 12A34O : null: 0IA34:<compiled script> at org.eclipse.birt.core.script.JavascriptEvalUtil.wrapRhinoException(JavascriptEvalUtil.java:220) ... 49 moreCaused by: org.mozilla.javascript.EcmaError: TypeError: getDate is not a function. at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3240) at org.mozilla.javascript.ScriptRuntime.constructError(ScriptRuntime.java:3230) at org.mozilla.javascript.ScriptRuntime.typeError(ScriptRuntime.java:3246) at org.mozilla.javascript.ScriptRuntime.typeError1(ScriptRuntime.java:3258) at org.mozilla.javascript.ScriptRuntime.notFunctionError(ScriptRuntime.java:3317) at org.mozilla.javascript.ScriptRuntime.getPropFunctionAndThis(ScriptRuntime.java:1987) at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2869) at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2164) at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:140) at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:304) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2769) at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2145) at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:140) at org.mozilla.javascript.InterpretedFunction.exec(InterpretedFunction.java:149) at org.eclipse.birt.data.engine.impl.BytecodeExpression.evaluate(BytecodeExpression.java:47) ... 48 more | closed fixed | e980b4a | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/ResultClass.java", "data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ResultIterator.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T08:35:42Z | 2006-01-12T07:13:20Z |
123,576 | Bug 123576 Data can't be retrieved when exporting data | Description: Data can't be retrieved when exporting data Steps to reproduce: 1.Preview the attached file in Web Viewer 2.Exported the data in table Expected result: The data is exported as a CSV file Actual result: No data is retrieved | closed fixed | 9c18cb1 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTask.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T05:33:05Z | 2006-01-12T10:00:00Z |
122,850 | Bug 122850 Table/list should not be able to be inserted in Master Page mode. | Description: Table/list should not be able to be inserted in Master Page mode. Steps to reproduce: 1. New a report and transfer to Master Page mode. 2. New a datasource and dataset 3. Drag a list/table to page header/footer, bind it to dataset and drag some columns inside. 4. Save and preview Expected result: Insert list/table item in master page should be forbidden. Actual result: They are allowed and preview showed "undefine" in page | closed fixed | 18bf723 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/elements/SemanticError.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/validators/MasterPageContextContainmentValidator.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/validators/TableHeaderContextContainmentValidator.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/elements/MasterPage.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/i18n/MessageConstants.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-01-13T03:29:33Z | 2006-01-06T04:00:00Z |
123,038 | Bug 123038 Change order of BIRT streams | Currenlty, birt streams have no order. For example, the version number is stored at the very end of the file! Need to exert some ordering. | resolved fixed | fa40038 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/archive/ArchiveUtil.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/archive/FileArchiveWriter.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/archive/IDocArchiveWriter.java", "core/org.eclipse.birt.core/src/org/eclipse/birt/core/archive/IStreamSorter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ReportDocumentStreamSorter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ReportDocumentWriter.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-13T02:15:43Z | 2006-01-08T22:40:00Z |
123,523 | Bug 123523 Previewing a scripted data set mapped to a java event handler throws NPE | When previewing a scripted data set we try to get a class loader from the ExecutionContext. (See ScriptExecutor.getClassUsingCustomClassPath). The context will be null in this case. The reason for using the context is to use cached class loaders when possible. Need to use some other mechanism to get the class loader if the context is null. We can either provide an external map to use as cache, or not bother with caching at all. | resolved fixed | c3e3536 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/element/IReportItem.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/element/IRow.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventadapter/ScriptedDataSetEventAdapter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventadapter/ScriptedDataSourceEventAdapter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventhandler/IScriptedDataSetEventHandler.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventhandler/IScriptedDataSourceEventHandler.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/IDataItemInstance.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/IReportItemInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ExecutionContext.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DataSetScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DataSourceScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ReportContextImpl.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ScriptDataSetScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ScriptDataSourceScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ScriptExecutor.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/DataItemInstance.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/ReportItemInstance.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-12T22:39:44Z | 2006-01-11T22:53:20Z |
123,219 | Bug 123219 Export data in attached file which has a table covers multiple page will throw exception. | Description: Export data in attached file which has a table covers multiple page will throw exception. Steps to reproduce: 1. Preview attached design file in viewer. 2. Select the table and click Export Data Expected result: No errors. Actual result: Exception Exception in: ReportEngineService.getMetaData( ) | closed fixed | e02aa33 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTask.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-12T10:52:31Z | 2006-01-10T10:46:40Z |
123,388 | Bug 123388 Set html text, preivew in pdf, incorrectly. | Html text, preivew in pdf, incorrectly. Steps: 1.Drag a text into layout 2.Edit the text: <html>Our records indicate that several invoices are now past due. Below is a listing of outstanding invoices tatalling. Please let us know when we can expect receipt of these or if you have question or concerns. For a direct line call 604-893-6310. <br> <br> <br> Sincerely, <br> <br> Mark Elroy <br> CEO, Xtreme Mountain Bikes <html> 3.Preview in pdf Actual Results: 1.Mutli <BR> only displyed one line. Expected Results: 1.Text can be displyed correctly in pdf. | closed fixed | 1c5801c | ["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-01-12T10:18:00Z | 2006-01-11T06:13:20Z |
123,545 | Bug 123545 DateTimeSpan not working properly in Edit Data Set | i cannot use the following script in Edit Data Set, DateTimeSpan.addDate(row["SHIPPEDDATE"], 0, 0, 10) seps to reproduce: - open the attached report design - go to Data Explorer - open Edit Data Set - Preview Results expected behavior: - the above script is executed. actual behavior: - errors were thrown. | closed fixed | 9026c3c | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/DataEngineImpl.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-12T09:25:26Z | 2006-01-12T04:26:40Z |
123,035 | Bug 123035 Serialize primitive types, hashmaps and other Java classes not using Java serialization method | If you take a look at the serialized engine output, we frequently see java classes appearing. I see String class; I see PageHint class; I see Hashmap classes. All of these should be gone so that BIRT document is independent of any Java-based class serialization. DtE team will move primitive type serialization to BIRT.CORE, see 123034. Engine can use that. | resolved fixed | 8c0b1b8 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/AbstractDataEngine.java", "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"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-12T08:09:19Z | 2006-01-08T22:40:00Z |
123,550 | Bug 123550 Unit test has errors on 20060112 | Please see attached file. | closed fixed | 92f30c9 | ["UI/org.eclipse.birt.report.designer.tests/test/org/eclipse/birt/report/designer/internal/ui/util/UIUtilUITest.java", "UI/org.eclipse.birt.report.designer.tests/test/org/eclipse/birt/report/designer/tests/ITestConstants.java", "UI/org.eclipse.birt.report.designer.tests/test/org/eclipse/birt/report/designer/ui/SimpleUITest.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-12T06:11:36Z | 2006-01-12T04:26:40Z |
123,540 | Bug 123540 Smoke[Regression]: NPE is thrown out in property editor. | Description: NPE is thrown out in property editor. Steps to reproduce: 1. Install BIRT RCP build. 2. Kick off Eclipse. 3. NPE is thrown out. java.lang.NullPointerException at org.eclipse.birt.report.designer.core.model.SessionHandleAdapter.getMediator(SessionHandleAdapter.java:263) at org.eclipse.birt.report.designer.core.model.SessionHandleAdapter.getMediator(SessionHandleAdapter.java:278) at org.eclipse.birt.report.designer.ui.views.attributes.AttributeView.addActions(AttributeView.java:334) at org.eclipse.birt.report.designer.ui.views.attributes.AttributeView.createPartControl(AttributeView.java:276) at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:305) at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:180) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:552) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:283) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:512) at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:126) at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:268) at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:391) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1102) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1051) at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1256) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:576) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:528) at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:485) at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:230) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:813) at org.eclipse.ui.internal.WorkbenchPage.onActivate(WorkbenchPage.java:2165) at org.eclipse.ui.internal.WorkbenchWindow$5.run(WorkbenchWindow.java:2356) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.setActivePage(WorkbenchWindow.java:2338) at org.eclipse.ui.internal.WorkbenchWindow.busyOpenPage(WorkbenchWindow.java:681) at org.eclipse.ui.internal.Workbench.busyOpenWorkbenchWindow(Workbench.java:669) at org.eclipse.ui.internal.Workbench.doOpenFirstTimeWindow(Workbench.java:1282) at org.eclipse.ui.internal.Workbench.openFirstTimeWindow(Workbench.java:1223) at org.eclipse.ui.internal.WorkbenchConfigurer.openFirstTimeWindow(WorkbenchConfigurer.java:190) at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:706) at org.eclipse.ui.internal.Workbench.init(Workbench.java:1034) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1636) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.birt.report.designer.ui.rcp.DesignerApplication.run(DesignerApplication.java:36) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163) 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:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | closed fixed | b972438 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/SessionHandleAdapter.java", "UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/schematic/HandleAdapterFactory.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-12T04:26:40Z | 2006-01-12T04:26:40Z |
123,406 | Bug 123406 Add geLocaltStringProperty in GroupElementHandle and GroupPropertyHandle | Please refer to 123405. GUI need a way to get the local setting of given property because current getStringPropery method will return inherited value if there are no local value. | resolved fixed | 7860389 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/GroupElementHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/GroupPropertyHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/SimpleGroupElementHandle.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-12T02:32:04Z | 2006-01-11T11:46:40Z |
123,044 | Bug 123044 Preview attached file in PDF and the page break in the first item didn't happen. | null | closed fixed | ce7cd3f | ["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-01-11T12:54:26Z | 2006-01-09T01:26:40Z |
123,207 | Bug 123207 PropertyHandle items cannot be moved down | Use the property handle to move down the item. It seems not work. | closed fixed | 3d66621 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/PropertyHandleTableViewer.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/activity/AbstractElementCommand.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-11T06:58:37Z | 2006-01-10T08:00:00Z |
122,854 | Bug 122854 There is redundant columns in "available columns" list in "export data" dialog. | Description: There is redundant columns in "available columns" list in "export data" dialog. Steps to reproduce: 1. Preview attached design in web viewer. 2. Select the table and click on "export" button. 3. There is a "detail" column name in "available columns" list which is not data set column. | closed fixed | 1dcd377 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTask.java", "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/ir/Report.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-10T08:46:38Z | 2006-01-06T04:00:00Z |
122,656 | Bug 122656 URL builder improvement - usability issue | Currently the URL builder don't display the available target bookmarks. This makes it difficult to use especially if the report is designed by some one else. See attched UI mockup with the suggested improvement: URL builder will display the available target bookmarks for internal bookmark link and drill through links. This improvement require DE support and engine support. I will file a separate bugs for those required changes. | resolved fixed | 3e2c1be | ["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-01-10T08:21:10Z | 2006-01-04T18:40:00Z |
123,174 | Bug 123174 inappropriate column header when inserting a table group | steps to reproduce: - create a table, bind it to an existing data set - insert a table group, e.g. row["CUSTOMERNUMBER"] - drag some data into table detail row - preview report expected behavior: - the column header should be the name of the column actual behavior: - the column header was expr. row["CUSTOMERNUMBER"] | closed fixed | 62d51cc | ["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-01-10T07:29:37Z | 2006-01-10T02:26:40Z |
123,042 | Bug 123042 When do some operation on the data drive manager, the eclipse may be broken. | Description: When do some operation on the data drive manager, the eclipse may be broken. Steps to reproduce: 1. new a JDBC data resource, and click the "Manage drivers" 2. delete a Jar file , and click "OK" 3. click the "Manage drivers" , add the deleted Jar File and click "OK" 4. click the "Manage drivers" and click the 'Drivers' tab, and set a 'Display name' and 'URL Template' and clcik 'OK' 5. click the "Manage drivers" and click the 'Drivers' tab, and delete the 'Display name' and 'URL Template' and clcik 'OK' Actual result: The eclipse is broken. Expect result: The eclipse runs in good shape. | closed fixed | 10127f9 | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/dialogs/JdbcDriverManagerDialog.java", "data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/util/JdbcToolKit.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-09T12:44:35Z | 2006-01-09T01:26:40Z |
122,412 | Bug 122412 Need a scroll bar to display the full description in expression builder | Description: Need a scroll bar to display the full description in expression builder Step to reproduce: 1.Open the expression builder, choose BIRT JS Object->Total Expected result: All the methods and description could be displayed.Since we can't resize the dialog of expression builder, a scroll bar is needed Actual result: The methods and description are truncated due to the limited space (see the sreenshot in attachment) | closed fixed | 1072333 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-09T06:55:53Z | 2005-12-31T03:33:20Z |
123,034 | Bug 123034 Move primitive type serialization to BIRT.core | Move primitive type serialization/deserialization to BIRT.core. Engine needs to use them too. | resolved fixed | e7f39b2 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/util/IOUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-09T05:31:40Z | 2006-01-08T22:40:00Z |
122,941 | Bug 122941 Group interval range resets to 1 | 1. Create a group based on orders.orderNumber. 2. Specify an interval range of 100. 3. Do not check "Use fixed base value for interval" 4. Preview the report. Report groups on every order number. 5. Open the group editor. The interval range is set to 1. | resolved fixed | a5051a5 | ["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-01-09T04:05:39Z | 2006-01-06T17:53:20Z |
122,869 | Bug 122869 Drag a parameter from data explorer view into a table in library, a new parameter is created automatically. | Description:Drag a parameter from data explorer view into a table in library, a new parameter is created automatically. Steps to reproduce: 1. Add a cascading parameter and a table in a library file. 2. Drag a parameter from data explorer view into a table cell in layout editor. 3. Find that a new parameter was added in data explorer view automatically. | closed fixed | 93200c8 | ["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/dialogs/ExpressionTreeSupport.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/ui/dialogs/ExpressionBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-09T03:38:33Z | 2006-01-06T06:46:40Z |
122,687 | Bug 122687 Libraries dont appear to allow background colors on tables to be used | If I create a table and set the background color to blue in my library and then drag the table from the library to the report the background color does not go with it. | resolved fixed | 9395499 | ["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/StyledElement.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-09T02:24:21Z | 2006-01-04T21:26:40Z |
122,480 | Bug 122480 It is difficult to edit the properties of a library root element with Property Editor | Open a library. The Property Editor shows the properties of the library's root element. Click on any item in the Data Explorer, Palette, or Outline. The Property Editor shows the appropriate properties or is blank. Click on the library root element in the Outline. The Property Editor blanks. Click on the dark gray area outside the white or gray rectangle in the main editor window. The Property Editor shows the properties of the library's root element. Expected: Clicking on the library root element in the Outline shows the properties of the library's root element in the Property Editor. Click on the dark gray area outside the white or gray rectangle in the main editor window shows a blank Property Editor. | closed fixed | 7ae6129 | ["UI/org.eclipse.birt.report.designer.ui.lib/src/org/eclipse/birt/report/designer/internal/lib/editparts/LibraryReportDesignEditPart.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-06T04:06:13Z | 2006-01-03T01:00:00Z |
122,561 | Bug 122561 Java event handler class is loaded multiple times | It appears that a Java event handler class is loaded twice for every time that an event is fired that requires the handler class. You would expect that the class is loaded once per Engine session. To reproduce, create a Java project in the workspace, set it to depend on the org.eclipse.birt.report.engine project, and drop in the attached CellEvenHandler.java file. Add the attached script_test.rptdesign file to a BIRT report project. Preview the report. You will find the following content in the output file "c:\scriptout.txt": Static init: org.eclipse.birt.test.CellEventHandler Static init: org.eclipse.birt.test.CellEventHandler org.eclipse.birt.test.CellEventHandler.onCreate Static init: org.eclipse.birt.test.CellEventHandler Static init: org.eclipse.birt.test.CellEventHandler org.eclipse.birt.test.CellEventHandler.onCreate Static init: org.eclipse.birt.test.CellEventHandler Static init: org.eclipse.birt.test.CellEventHandler org.eclipse.birt.test.CellEventHandler.onCreate Static init: org.eclipse.birt.test.CellEventHandler Static init: org.eclipse.birt.test.CellEventHandler org.eclipse.birt.test.CellEventHandler.onCreate Static init: org.eclipse.birt.test.CellEventHandler Static init: org.eclipse.birt.test.CellEventHandler org.eclipse.birt.test.CellEventHandler.onCreate Static init: org.eclipse.birt.test.CellEventHandler Static init: org.eclipse.birt.test.CellEventHandler org.eclipse.birt.test.CellEventHandler.onCreate Static init: org.eclipse.birt.test.CellEventHandler Static init: org.eclipse.birt.test.CellEventHandler org.eclipse.birt.test.CellEventHandler.onCreate Static init: org.eclipse.birt.test.CellEventHandler Check the Java class code and you will see that the CellEventHandler class is loaded twice for each Cell.onCreate event. This is a rather serious problem: the event handler class cannot use any static field to persist data across events. It causes very bad scripting performance since loading a class is an expensive operation. It appears that the problem resides in Engine's class loading logic: it uses a new class loader every time an event is fired to load the necessary event handler. | resolved fixed | b900dee | ["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/eventadapter/CellEventAdapter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventadapter/RowEventAdapter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventhandler/ICellEventHandler.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventhandler/IRowEventHandler.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/IRowInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ExecutionContext.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/ListingElementExecutor.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/ScriptExecutor.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/RowInstance.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-05T21:19:33Z | 2006-01-03T20:26:40Z |
122,365 | Bug 122365 In data set dialog, add parameter first then edit query, parameter value will be cleared out. | Description: In data set dialog, add parameter first then edit query, parameter value will be cleared out. Steps to reproduce: 1. Add a data set. 2. In data set dialog, add a parameter. 3. Edit query and use this parameter. 4. Preview in data set dialog, it works. 5. Change to "parameter" page, its value is cleared out. | closed fixed | 5eb1936 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/PropertyHandleTableViewer.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-05T11:22:59Z | 2005-12-30T05:20:00Z |
122,577 | Bug 122577 Library Explorer does not refresh after creating or changing a library | 1. Open the Library Explorer view. Create a library. Expected: The library appears in Library Explorer. Actual: The library does not appear in Library Explorer until you re-open Eclipse. 2. Open the Library Explorer view. Open an existing library. Change the library. For example, change the title, or add a report item. Save the library. Expected: The library changes appear in Library Explorer. Actual: The library changes do not appear in Library Explorer until you re-open Eclipse. | resolved fixed | b06fe9f | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/runtime/GUIException.java", "UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerViewPage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/tools/LibraryElementsToolHandleExtends.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-05T09:11:42Z | 2006-01-04T02:00:00Z |
122,584 | Bug 122584 Cascading parameter values can't be displayed properly in html viewer. | Description: Cascading parameter values can't be displayed properly in html viewer. Steps to reproduce: 1. Preview attached design file in html viewer. 2. Click on "change parameter" button in html viewer. 3. Select the first parameter value and expect that the second parameter value in the same cascading parameter group could be displayed, but it is not displayed. | closed fixed | e5c6ee0 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/data/DataTypeUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-05T07:50:04Z | 2006-01-04T04:46:40Z |
122,177 | Bug 122177 Add input for IntervalBase to Group Editor | BIRT model's group definition has one important property: IntervalBase (see GroupHandle.setIntervalBase). This property controls how interval-based grouping picks the range of its initial group, and is an important part of range-based grouping. BIRT designer's Group Details editor should allow user to edit IntervalBase for a group. This is how the editor should work: * IntervalBase options should be presented only if "Interval" is not "None". (Since IntervalBase only makes sense for interval-based grouping) * IntervalBase should be presented in conjunction with checkbox. When it is unchecked (maps to a NULL IntervalBase value), Data Engine dynamically picks a base value using the first group key value in the result set. When it is checked, the user should input a base value. The following is a suggested look of the UI control: [ ] Use fixed base value for interval: _______________ ( [] is a checkbox, underline ___ is a textbox ). | resolved fixed | 8b6ff42 | ["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-01-05T07:00:22Z | 2005-12-27T21:46:40Z |
122,702 | Bug 122702 Smoke[regression]: Template file can't be published. | Description: Template file can't be published. Steps to reproduce: 1. Create a template file. 2. Publish it and click on "OK" button in "publish" window. 3. Error message "PublishTemplateAction.wizard.message" pops up. | closed fixed | 811907b | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-05T04:14:18Z | 2006-01-05T03:00:00Z |
120,975 | Bug 120975 Provide option to disable the master page for HTML reports | null | resolved fixed | 5aa9b5d | ["viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/ViewerPlugin.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-01-05T01:31:03Z | 2005-12-15T01:26:40Z |
122,666 | Bug 122666 Performance enhancement for RandomAccessFile | The readInt method for RandomAccessFile makes 4 calls to system, and the calls are not buffered. | resolved fixed | 15d5b13 | ["core/org.eclipse.birt.core/src/org/eclipse/birt/core/archive/RAFileInputStream.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-05T01:15:37Z | 2006-01-04T21:26:40Z |
122,581 | Bug 122581 Available columns are not displayed properly when export data. | Description: Available columns are not displayed properly when export data. Steps to reproduce: 1. Preview attached design file in html. 2. Select the first table and export it. 3. In "export data" dialog, Available columns are not displayed properly. | closed fixed | f180298 | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/soapengine/api/Column.java", "viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/soapengine/endpoint/BirtViewerAPI.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-04T22:44:44Z | 2006-01-04T02:00:00Z |
122,423 | Bug 122423 Support page range in RenderTask | Support page range in render task. For PDF format, simply log a message saying range is not supported if a range is specified, and still output whole report. For HTML format, support page range in the form of "1,2,5-10" + "All". The code should check if there is range set. If so, parse it and form a range and output them one after another, with a page splitter in between just like the runAndRenderTask. If no range is set, check if page number is set. There can only be one page in case a page number is set. Invalid page number should be logged, and error message is returned. If neither is set, we default to all pages, instead of the current behavior of giving an error message. | resolved fixed | bafc863 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/IRenderTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/RenderTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/RunAndRenderTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/dom/AreaStyle.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-04T09:11:08Z | 2005-12-31T14:40:00Z |
122,300 | Bug 122300 "NaN" is displayed when select value from an invalid column in data set filter page. | Description: "NaN" is displayed when select value from an invalid column in data set filter page. Steps to reproduce: 1. Add filter in data set dialog. 2. Add Expression "row["account_nm"]/row["Test"]", operator "equals", then select values, it displayed "NaN". Strange. See attached design file. | closed fixed | 2be6b93 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/ExpressionUtility.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-04T06:44:07Z | 2005-12-29T09:53:20Z |
122,212 | Bug 122212 Cancel the action of creating a chart, then delete a data set, it still refers to the non-existent chart. | Description: Cancel the action of creating a chart, then delete a data set, it still refers to the non-existent chart. Steps to reproduce: 1. Create a data source and related data set. 2. Add a chart and select a data set in chart dialog. 3. Cancel creating chart action. 4. Delete the data set from data explorer view. 5. It pops up a dialog said that "the data set refers to the chart". But indeed the chart doesn't exist. | closed fixed | 119ea96 | ["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-01-04T06:28:02Z | 2005-12-28T06:06:40Z |
122,110 | Bug 122110 Template can't publish to the path which is the same as create path | Details: Template can't publish to the path which is the same as create path Setp: 1.Open a report design and set windows-preferences-template-template folder to c:\test. 2.New a template in c:\test 3.Publish template to template folder Actual result: Template folder can't publish, and this error lead to a new report can't be new, except delete the template Expection result: Even if the template folder path and template create path is the same is wrong, can it pop up a error message to notice user it is wrong handle. | closed fixed | 99abed9 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-04T06:07:47Z | 2005-12-27T07:53:20Z |
121,287 | Bug 121287 Post BIRT M3 build: Edit Group Dialog does not present expression builder for Group On | In Edit Group dialog, there is no expression builder for the Group On field. In order to support multi-pass aggregation, the expression builder is needed to specify an expression to group on. | resolved fixed | 00d2505 | ["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-01-04T05:52:44Z | 2005-12-16T21:53:20Z |
122,045 | Bug 122045 Template should show blank preview when there is no image | Create a template but do not associate an image with it. Place the template in the templates directory. Now, create a new report design. On the second page of the New Report dialog, select the template that has no image. Actual result: The preview appears as a white rectangle with a small red square in the top left. Expected result: The preview appears as a gray background in the preview image area. | closed fixed | 3bcaa4b | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/wizards/WizardTemplateChoicePage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/IReportGraphicConstants.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/ReportPlatformUIImages.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-04T03:50:28Z | 2005-12-24T02:06:40Z |
122,306 | Bug 122306 TOC on group won't be displayed | Description: TOC on group won't be displayed Steps to reproduce: 1.Add a sample datasource and a data with table "CUSTOMERS" 2.Add a table binding with data set 3.Add a group on the table and set the toc expression to "Group" 4.Preview in HTML Expected result: TOC "Group" will be displayed on the TOC pane Actual result: Nothing in the TOC pane | closed fixed | db89e3c | ["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-01-04T03:17:23Z | 2005-12-29T12:40:00Z |
122,003 | Bug 122003 Could not export data properly | Description: Using a flatfile dataset in the report, there are a lot of columns name missed when exporting data. Steps to reproduce: 1.Using the attached flatfile to create datasource and dataset. 2.Pull the dataset to the layout and preview in html. 3.Click "Export data" in the toolbar and select all the columns to export. 4.Open the export csv file, there are a lot of columns name turn to be null. | closed fixed | 74b65c4 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ResultMetaData.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2006-01-04T02:49:58Z | 2005-12-23T15:00:00Z |
122,289 | Bug 122289 [Smoke][Regression][SPM-Linux WS]Item can't be dropped to layout from library | Details: Item can't be dropped to layout from library Setp: 1.New a library and insert a label 2.New a report design and use library 3.Drop label from library explorer to layout Actual results: Nothing is dropped into layout. Not only use library in outline, but also in library explorer is no effect. But when I drop the label without use library, it will use library and label can drop in it. | closed fixed | 3d32a8f | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/UIUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T10:12:32Z | 2005-12-29T07:06:40Z |
122,221 | Bug 122221 Space in text can't be previewed properly in PDF. | Description: Space in text can't be previewed properly in PDF. Steps to reproduce: Drag a text element to editor. Type two rows data. In second row, type several spaces ahead. Preview the report in PDF. The space in text can not preview | closed fixed | b58cc16 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ReportExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T07:21:34Z | 2005-12-28T08:53:20Z |
121,273 | Bug 121273 Script modification of style properties does not work for data item | Create a report with a lable and a data item. In the onCreate method for both items, put this.style.color="red" The label item works, but the data item does not. | resolved fixed | efa78d5 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/DataEngineImpl.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T04:09:11Z | 2005-12-16T19:06:40Z |
122,165 | Bug 122165 Publish template action should warn before overwriting existing template | Publish a template to the templates folder. Make a change to the template. Publish it again. Expected result: Warning dialog that you are about to overwrite the existing template. (Similar to File->Save As warning when overwriting an existing file.) Actual result: The template just gets written without a warning. | closed fixed | b975ef5 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T04:00:04Z | 2005-12-27T19:00:00Z |
122,173 | Bug 122173 Can't drag and drop a data set column to report design layout editor | With 20051227's build, I can't bind a data set column to a table cell by drag & drop it from data explorer. This is a show stopper that we need to have it fixed. | resolved fixed | 624c6ec | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DNDUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T03:59:37Z | 2005-12-27T21:46:40Z |
122,117 | Bug 122117 [RCP]Library name keeps the same when creating a new one. | Description: [RCP]Library name keeps the same when creating a new one. Steps to reproduce: 1. Create a new library file. 2. Its default name is always "new_library.rptlibrary". | closed fixed | d219e55 | ["UI/org.eclipse.birt.report.designer.ui.lib/src/org/eclipse/birt/report/designer/ui/wizards/NewLibraryWizard.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T03:55:54Z | 2005-12-27T07:53:20Z |
122,283 | Bug 122283 [Smoke][Regression][SPM-Linux WS]Item in library can't be used when include library from library explorer | Details: Item in library can't be used when include library from library explorer Step: 1.New a library and Insert a label. 2.Open a report design 3.Open the library exploer in report and use the library 4.Drop the library label from library explorer into layout Actual results: Expection pop up. If use the library from report outline, label can drop in layout succeed. | closed fixed | c4093a0 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/ImportLibraryDialog.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/internal/ui/views/actions/ImportLibraryAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T03:45:05Z | 2005-12-29T04:20:00Z |
121,954 | Bug 121954 Error pops up when bind a dataset without any record with Chart | Description: If there is a dataset returned no records, bind with chart, then error occurs. Steps to reproduce: 1.Create a datasource and dataset. Set filter to make return no record. 2.Pull a chart to the layout, bind with the dataset, error occurs. Error log: : + report : report 0 : data.engine.LoadReportDocumentError ( 2 � : org.eclipse.birt.data.engine.core.DataException: Result Data � at org.eclipse.birt.data.engine.impl.rd.RDLoad.getValue(RDLoad.java:191) at org.eclipse.birt.data.engine.impl.rd.ResultIterator2.getValue(ResultIterator2.java:168) at org.eclipse.birt.report.engine.data.dte.DteResultSet.evaluate(DteResultSet.java:149) at org.eclipse.birt.report.engine.extension.internal.RowSet.evaluate(RowSet.java:98) at org.eclipse.birt.chart.reportitem.BIRTDataRowEvaluator.evaluate(BIRTDataRowEvaluator.java:60) at org.eclipse.birt.chart.internal.factory.DataProcessor.mapToChartResultSet(DataProcessor.java:120) at org.eclipse.birt.chart.factory.Generator.bindData(Generator.java:558) at org.eclipse.birt.chart.reportitem.ChartReportItemPresentationImpl.onRowSets(ChartReportItemPresentationImpl.java:393) at org.eclipse.birt.report.engine.presentation.LocalizedEmitter.startExtendedContent(LocalizedEmitter.java:679) at org.eclipse.birt.report.engine.presentation.LocalizedEmitter.startForeign(LocalizedEmitter.java:449) at org.eclipse.birt.report.engine.presentation.ReportContentLoader$1.visitForeign(ReportContentLoader.java:842) at org.eclipse.birt.report.engine.content.impl.ForeignContent.accept(ForeignContent.java:60) at org.eclipse.birt.report.engine.presentation.ReportContentLoader$1.visit(ReportContentLoader.java:759) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.startContent(ReportContentLoader.java:739) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.loadFullContent(ReportContentLoader.java:261) at org.eclipse.birt.report.engine.presentation.ReportContentLoader.loadPage(ReportContentLoader.java:168) at org.eclipse.birt.report.engine.api.impl.RenderTask.doRender(RenderTask.java:197) at org.eclipse.birt.report.engine.api.impl.RenderTask.render(RenderTask.java:105) at org.eclipse.birt.report.services.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.GeneratedMethodAccessor84.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:402) at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:309) at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:333) at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71) at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150) at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120) at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481) at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323) at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:854) at org.eclipse.birt.report.soapengine.servlet.BirtSoapMessageDispatcherServlet.doPost(Unknown Source) at org.eclipse.birt.report.viewer.servlet.ViewerServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339) 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: java.io.EOFException at java.io.DataInputStream.readInt(DataInputStream.java:448) at java.io.ObjectInputStream$BlockDataInputStream.readInt(ObjectInputStream.java:2657) at java.io.ObjectInputStream.readInt(ObjectInputStream.java:900) at org.eclipse.birt.data.engine.impl.rd.RDLoad.getValue(RDLoad.java:177) ... 69 more | closed fixed | 5855912 | ["chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/factory/DataRowExpressionEvaluatorAdapter.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/factory/IDataRowExpressionEvaluator.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/internal/factory/SqlDataRowEvaluator.java", "chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/BIRTDataRowEvaluator.java", "chart/org.eclipse.birt.chart.ui/src/org/eclipse/birt/chart/ui/util/ChartUIUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-29T02:55:57Z | 2005-12-23T03:53:20Z |
122,068 | Bug 122068 [Smoke][Regression]Exception thrown out when preview Chart | New a report, create a regular chart and preview. Though the chart image is generated, a ClassCastException is thrown out. The handle here actually is an ExtendedItemHandle, not an ImageHandle. ------------------------------------------------------------------------ There are errors on the report page: - There are error(s) in Chart : 580 Error0 : Error.UnhandledScriptError ( 1 time(s) ) detail : org.eclipse.birt.report.engine.api.EngineException: Unhandled exception when executing script at org.eclipse.birt.report.engine.script.internal.ScriptExecutor.addException(ScriptExecutor.java:226) at org.eclipse.birt.report.engine.script.internal.ScriptExecutor.addException(ScriptExecutor.java:216) at org.eclipse.birt.report.engine.script.internal.ImageScriptExecutor.handleOnRender(ImageScriptExecutor.java:82) at org.eclipse.birt.report.engine.presentation.LocalizedEmitter.startExtendedContent(LocalizedEmitter.java:761) at org.eclipse.birt.report.engine.presentation.LocalizedEmitter.startExtendedContent(LocalizedEmitter.java:677) at org.eclipse.birt.report.engine.presentation.LocalizedEmitter.startForeign(LocalizedEmitter.java:447) at org.eclipse.birt.report.engine.presentation.WrappedEmitter.startForeign(WrappedEmitter.java:209) at org.eclipse.birt.report.engine.presentation.DefaultPaginationEmitter.startForeign(DefaultPaginationEmitter.java:253) at org.eclipse.birt.report.engine.executor.ExtendedItemExecutor.execute(ExtendedItemExecutor.java:101) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitExtendedItem(ReportExecutorVisitor.java:81) at org.eclipse.birt.report.engine.ir.ExtendedItemDesign.accept(ExtendedItemDesign.java:30) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:121) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:87) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:148) at org.eclipse.birt.report.services.ReportEngineService.runAndRenderReport(ReportEngineService.java:441) at org.eclipse.birt.report.viewer.aggregation.layout.EngineFragment.doService(EngineFragment.java:113) at org.eclipse.birt.report.viewer.aggregation.BaseFragment.service(BaseFragment.java:156) at org.eclipse.birt.report.viewer.servlet.ViewerServlet.doGet(ViewerServlet.java:172) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339) 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: java.lang.ClassCastException at org.eclipse.birt.report.engine.script.internal.ImageScriptExecutor.getEventHandler(ImageScriptExecutor.java:89) at org.eclipse.birt.report.engine.script.internal.ImageScriptExecutor.handleOnRender(ImageScriptExecutor.java:77) ... 49 more | closed fixed | 28b0c94 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/element/IDesignElement.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/IImageInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/IScriptStyle.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/element/DesignElement.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ImageInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/StyleInstance.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-28T22:52:26Z | 2005-12-26T04:06:40Z |
112,218 | Bug 112218 Preference dialog does not open in I20051011-0920 | There are unresolvecd compilation errors in the preference dialog. This errors prevent the preference dialog from opening in I20051011-0920. I'm investigating how this happened, and I've requested a rebuild. | resolved fixed | d3b7c73 | ["chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/ChartReportItemImpl.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-28T08:29:17Z | 2005-10-11T14:13:20Z |
122,203 | Bug 122203 No refresh when creating a template report item in masterpage header/footer | Description: No refresh when creating a template report item in masterpage header/footer Steps to reproduce: 1.Switch to masterpage, put a text in the masterpage header 2.Convert the elements in masterpage header/footer to template report item Expected result: Both the elements in masterpage header/footer are converted to template report item Actual result: Both the elements in masterpage header/footer are still report items till reopen the report | closed fixed | b2cd38f | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/AreaEditPart.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ReportElementEditPart.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-28T07:52:12Z | 2005-12-28T06:06:40Z |
122,195 | Bug 122195 Smoke-Regression:Eclispe 3.0: Can not create template report item. | Smoke:Eclispe 3.0: Can not create template report item. Steps: 1.Drag a label into layout 2.Select the label, right clight the mouse, select "Create Template Report Item..." 3.Click "Ok" button Actual Results: 1.System throws exception org.eclipse.birt.report.designer.core.runtime.GUIException: Caused by java.lang.NullPointerException. at org.eclipse.birt.report.designer.core.runtime.GUIException.createGUIException(GUIException.java:76) at org.eclipse.birt.report.designer.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:123) at org.eclipse.birt.report.designer.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:105) at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.handleException(AbstractElementAction.java:132) at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.run(AbstractElementAction.java:91) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.actions.WrapperSelectionAction.run(WrapperSelectionAction.java:60) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:915) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:866) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent(ActionContributionItem.java:785) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2772) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2431) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1377) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1348) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:254) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) 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.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) Caused by: java.lang.NullPointerException at org.eclipse.birt.report.designer.internal.ui.editors.schematic.figures.TextFlow.paintTo(TextFlow.java:194) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.figures.TextFlow.paintFigure(TextFlow.java:284) at org.eclipse.draw2d.Figure.paint(Figure.java:948) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1013) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1018) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.figures.ReportRootFigure.paintChildren(ReportRootFigure.java:95) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1022) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1018) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1018) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1018) at org.eclipse.draw2d.ScalableFreeformLayeredPane.paintClientArea(ScalableFreeformLayeredPane.java:54) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1018) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1013) at org.eclipse.draw2d.Viewport.paintClientArea(Viewport.java:156) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:986) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1018) at org.eclipse.draw2d.Figure.paint(Figure.java:950) at org.eclipse.draw2d.DeferredUpdateManager.repairDamage(DeferredUpdateManager.java:201) at org.eclipse.draw2d.DeferredUpdateManager.performUpdate(DeferredUpdateManager.java:139) at org.eclipse.birt.report.designer.internal.ui.editors.notification.ReportDeferredUpdateManager.performUpdate(ReportDeferredUpdateManager.java:33) at org.eclipse.draw2d.DeferredUpdateManager.performUpdate(DeferredUpdateManager.java:123) at org.eclipse.draw2d.LightweightSystem.paint(LightweightSystem.java:223) at org.eclipse.draw2d.LightweightSystem$4.handleEvent(LightweightSystem.java:127) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Composite.WM_PAINT(Composite.java:803) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3020) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3338) at org.eclipse.swt.internal.win32.OS.RedrawWindow(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:2865) at org.eclipse.swt.widgets.Display.update(Display.java:3245) at org.eclipse.jface.window.Window.runEventLoop(Window.java:674) at org.eclipse.jface.window.Window.open(Window.java:648) at org.eclipse.birt.report.designer.internal.ui.dialogs.BaseDialog.open(BaseDialog.java:145) at org.eclipse.birt.report.designer.internal.ui.views.DefaultNodeProvider.performCreatePlaceHolder(DefaultNodeProvider.java:441) at org.eclipse.birt.report.designer.internal.ui.views.DefaultNodeProvider.performRequest(DefaultNodeProvider.java:363) at org.eclipse.birt.report.designer.internal.ui.views.actions.CreatePlaceHolderAction.doAction(CreatePlaceHolderAction.java:42) at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.run(AbstractElementAction.java:64) ... 24 more Expected Results: 1.Can create template report item. | closed fixed | 111fab3 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/figures/LabelFigure.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-28T07:17:19Z | 2005-12-28T03:20:00Z |
122,077 | Bug 122077 Set visibility for the item inside a table which extends from a library, its setting doesn't work. | Descirption: Set visibility for the item inside a table which extends from a library, its setting doesn't work. Steps to reproduce: 1. Extend a table from library to report design file. 2. Select a label in the table and set its visibility, hide element in html/pdf. 3. Preview in html/pdf. it is still visibile. | closed fixed | ced45b0 | ["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 | 2005-12-28T05:34:39Z | 2005-12-26T06:53:20Z |
122,105 | Bug 122105 the schema should be added as 'schemaname.Procedurename' when use the stored procedure. | Description: the schema should be added as 'schemaname.Procedurename' when use the stored procedure. Steps to reproduce: 1. create a new report 2. create a data source and a data set on the store procedure 3. In the window "Edit data set", drag a store procedure to the QueryText Expected Results: The stored procedure naming should be composed of the database schema name and the store procedure name | closed fixed | 882857a | ["data/org.eclipse.birt.report.data.oda.jdbc.ui/src/org/eclipse/birt/report/data/oda/jdbc/ui/editors/SQLDataSetEditorPage.java", "data/org.eclipse.birt.report.data.oda.jdbc/src/org/eclipse/birt/report/data/oda/jdbc/CallStatement.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-27T07:30:30Z | 2005-12-27T05:06:40Z |
119,566 | Bug 119566 Support template items in page header/footer | Currently you can't create template report items inside a page header/footer. This should be fixed. | resolved fixed | 374a9b2 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/actions/CreatePlaceHolderAction.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/parser/SimpleMasterPageState.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-27T06:24:04Z | 2005-12-07T04:33:20Z |
121,871 | Bug 121871 Support intellisense for global varible "report" in both expression builder and script editor | Currently expression builder already provide intellisense support for static objects (both BIRT and standard javaScript object). However, it doesn't support intellisene for "report". Even with the class structure displayed in the expression builder, it is quite difficult to figure out how to use the report varible without intellisense. We should use the same mechanism for "report." object intellisense support as we did for "this." objects: - UI (expression builder or script editor) get the type for "report" object - UI use reflection to get all properties, methods defined on report object. - The reflection process will be recursive. | verified fixed | 018ed60 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/IReportGraphicConstants.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-27T03:23:40Z | 2005-12-22T11:13:20Z |
121,956 | Bug 121956 Data set binding status is not consistent in layout editor and property editor view. | Description: Data set binding status is not consistent in layout editor and property editor view. Steps to reproduce: 1. Drag a table from library into a report layout editor. 2. Enable property editor view. 3. change to "binding". Data set can be edited here. 4. Right click on the table and find that "edit data set binding" is grayed out. | closed fixed | 1b6b5e5 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/actions/EditBindingAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-27T02:51:52Z | 2005-12-23T03:53:20Z |
121,864 | Bug 121864 Report element can't be deleted | Description: Report element can't be deleted Steps to reproduce: 1.Open the attached design file 2.Delete the table/parameters/dataset/datasource Expected result: The element can be deleted Actual result: They can't be deleted | closed fixed | 8bfd438 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/ContentCommand.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-26T06:51:17Z | 2005-12-22T08:26:40Z |
102,436 | Bug 102436 Date/time value not stored correctly in report design | null | resolved fixed | 2412c8e | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-26T06:12:25Z | 2005-07-01T03:53:20Z |
121,988 | Bug 121988 [Smoke][SPM-Linux WS]Template cannot publish to temple folder | Details: Template cannot publish to temple folder Setp: 1.New a template. 2.Insert a label and input "label1", right click and select Create Template Report Item 3.Save and Publish to temple folder Actual result: An error pop up Error.DesignFileException.SYNTAX_ERROR - 1 errors found! 1.) org.eclipse.birt.report.model.parser.DesignParserException (code = Error.DesignParserException.FILE_NOT_FOUND, message : The file "SPM/eclipse-correct/eclipse3.1/plugins/org.eclipse.birt.report.designer.ui_2.0.0/templates//new_template.rpttemplate" is not found.) at org.eclipse.birt.report.model.parser.ModuleReader.readModule(ModuleReader.java:166) at org.eclipse.birt.report.model.parser.DesignReader.read(DesignReader.java:135) at org.eclipse.birt.report.model.core.DesignSession.openDesign(DesignSession.java:177) at org.eclipse.birt.report.model.api.SessionHandle.openDesign(SessionHandle.java:133) at org.eclipse.birt.report.designer.ui.actions.PublishTemplateWizard.setDesignFile(PublishTemplateAction.java:203) at org.eclipse.birt.report.designer.ui.actions.PublishTemplateWizard.performFinish(PublishTemplateAction.java:171) at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:676) at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:349) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) 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:1021) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2867) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2572) at org.eclipse.jface.window.Window.runEventLoop(Window.java:809) at org.eclipse.jface.window.Window.open(Window.java:787) at org.eclipse.birt.report.designer.ui.actions.PublishTemplateAction.run(PublishTemplateAction.java:86) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:246) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:223) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2867) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2572) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163) 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:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | closed fixed | 10c8ccf | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/UIUtil.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-26T04:17:37Z | 2005-12-23T09:26:40Z |
122,040 | Bug 122040 Incorrect labels on New Template dialog | Choose File->New Choose Template in the list of BIRT file types. New Template appears. Select a folder and type a file name. Choose Next. The next page has the following problems: 1. The subtitle is: Set Report Property The subtitle should be: Set Template Properties 2. The first label is: Dispaly name The label should be: Display name | closed fixed | d99dacb | ["UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/NewReportWizard.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/NewTemplateWizard.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/SaveReportAsWizard.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/internal/ui/wizards/WizardReportSettingPage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/wizards/WizardTemplateChoicePage.java", "UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-26T03:15:44Z | 2005-12-23T23:20:00Z |
121,852 | Bug 121852 Drag theme in library1 to library2 will cause BirtException. | Description: Drag theme in library1 to library2 will cause BirtException. Steps to reproduce: 1. New a library lib1, add a theme theme1. 2. New a library lib2, use lib1 in lib2 then theme1 appeared in lib2's theme directory. 3. Modify lib1 to add another theme2. 4. Refresh lib1 then drag theme2 from lib1 to lib2 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.0.0 Error Code:Error.ExtendsException.NOT_FOUND Error Message:The parent element "NewTheme1" does not exist. | closed fixed | d4f51ce | ["UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/dnd/LibraryDragListener.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-26T02:29:19Z | 2005-12-22T08:26:40Z |
121,109 | Bug 121109 Bad Data Source and Data Set Javascript event handlers are ignored | Open a report design, open any Data Set's Script editor. Type in an invalid Javascript for the "beforeOpen" method, for example, " { ". Preview a report that uses that Data Set. The report executes normally. No error is shown. Apparently Report Engine ignored the bad Javascript code. It's only when you run the report in Debug mode do you see some exception message in the Eclipse console, with error message " ... Script engine error: missing } after function body ... " This is a regression against BIRT 1.0.1. In earlier builds the bad Javascript error message will be shown. Event handlers are an integral part of a report design, and if a script handler has an compilation error, or if the handler throws a runtime exception, Report Engine should either stop the report execution, or show the error message in the generated report. (Tested with the 2005-12-15 nightly build) | resolved fixed | 6e54ed3 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DtEScriptExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-24T00:19:45Z | 2005-12-15T20:53:20Z |
121,111 | Bug 121111 Bad event handler class name does not cause an error | Open a report design, open any Data Set's Property editor. Type in an invalid Java class name for the "Event Handler Class" property, say "aaa". Preview a report that uses that Data Set. The report executes normally. No error is shown. Event handlers are an integral part of a report design, and if a script handler class is not found, or if the handler throws a runtime exception, Report Engine should either stop the report execution, or show the error message in the generated report. (Tested with the 2005-12-15 nightly build) | resolved fixed | c0422a1 | ["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/api/impl/GetParameterDefinitionTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/RenderTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/RunTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ScriptedDesignVisitor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventadapter/ReportEventAdapter.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/eventhandler/IReportEventHandler.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/AbstractDataEngine.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/data/dte/DteDataEngine.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ExecutionContext.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/i18n/MessageConstants.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/CellScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DataItemScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DataSetScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DataSourceScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DtEScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DynamicTextScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/GridScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ImageScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/LabelScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ListGroupScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ListScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ReportScriptExecutor.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/ScriptDataSetScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ScriptDataSourceScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/TableGroupScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/TableScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/TextItemScriptExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-23T23:58:13Z | 2005-12-15T20:53:20Z |
121,974 | Bug 121974 Can't evaluate global expressions when ResultIterator is not in the iteration loop | For global expressions, such as {params["p1"]},{new DateTime()}, it should always be available and evaluatable within the birt scripting environment. Currently, Dte scriptExpresson has three types: BEFORE_FIRST_ROW, AFTER_LAST_ROW, ON_EACH_ROW. But in fact BEFORE_FIRST_ROW only works when the cursor is just to enter the first row, and AFTER_LAST_ROW only works when cursor is just to leave the last row. Once the iteration is finished, both type won't work anymore. A "QueryResults or its iterator has been closed" DataException will be thrown out if you try to evaluate these expressions. But actually, these global expressions is nothing to do with the data row iteration. It should return a correct result value whenever be evaluated within the birt scripting environment. So a new GLOBAL expreesion type is required to mark this need. Also, current BEFORE_FIRST_ROW/AFTER_LAST_ROW name is misleading, better change to ON_START_ROW, ON_END_ROW or others which are more clarified. This bug currently blocks chart to evaluate those non-datarow expressions(i.e. expressions from title url action) which are not within a datarow iteration(Chart need to evaluate these expreesions from action after data binding). | closed fixed | 51c480e | ["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/ResultIterator.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-23T19:35:20Z | 2005-12-23T06:40:00Z |
121,873 | Bug 121873 Can't load birt classes in report item script | In report item script functions, i.e. onCreate(), onRender(), try writing some javascript code to use birt classes which are in plugins that are not explicitly depended on by the Viewer(for example, org.eclipse.birt.chart.util.CDateTime in birt.chart.engine plugin), Exception will be thrown out. This is because Viewer now uses the EclipseClassLoader to load all plugin classes while EclipseClassLoader will restrict the accessing privilege due to the plugin dependency rules. So only classes in birt.core, birt.report.engine, birt.report.model, birt.data can be accessed currently in script. So this prevents the user from using those birt classes in script. Reargding to chart, this lowers the usability a lot, since in chart scripting, user usually need to use/access many chart attributes classes to change the chart model, but now they can't do this in BIRT. This works fine for chart standalone mode. | closed fixed | ed5c5fe | ["viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/ViewerPlugin.java", "viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/ViewerClassPathHelper.java", "viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/WebappAccessor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-23T12:49:58Z | 2005-12-22T11:13:20Z |
121,524 | Bug 121524 Border is still displayed in the layout after delete the style | Description: Border is still displayed in the layout after delete the style Steps to reproduce: 1.New a style with background color: yellow, border{solid,red,10pixels} 2.Add a table and apply the style to the table (see the attachement) 3.Delete the style Expected result: All style disappear Actual result: Border is still displayed in the layout,while other style disappear. In preview, border is not there. | closed fixed | 7a3f7e1 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/BackRefRecord.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/ElementBackRefRecord.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-23T08:44:42Z | 2005-12-20T06:26:40Z |
121,019 | Bug 121019 Java based scripting -> TextItemInstance/setText, getText does not work properly | textItemInstance.setText( "Actuate Shanghai" ); System.out.println( textItemInstance.getText( ) ); after executing the codes above, i got "text/template". expected behavior: - Actuate Shanghai actual behavior: - text/template | closed fixed | 33ba196 | ["UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/internal/ui/launcher/DebugStartupClass.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/IReportContext.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/IImageInstance.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/script/internal/CellScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DataItemScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DynamicTextScriptExecutor.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/GridScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ImageScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/LabelScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ListScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/ReportContextImpl.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/TableScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/TextItemScriptExecutor.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/element/ActionImpl.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/element/DataItem.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/element/Image.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/element/Label.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/DataItemInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/DynamicTextInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ForeignTextInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/GridInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ImageInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/LabelInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/ListInstance.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/ReportItemInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/RowInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/TableInstance.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/TextItemInstance.java", "viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/WebappAccessor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-23T03:14:07Z | 2005-12-15T09:46:40Z |
121,269 | Bug 121269 Allow displaying HTML source for debugging | With the new AJAX-based viewer, one can no longer see the HTML source of the page. This is extremely inconvenient for debugging engine problems, because there is not an easy way to see the HTML source code. This might fall into the category an enhancement, but since it significantly reduces other people's work efficiency, I listed its severity as a "major". | resolved fixed | 4e9bd97 | ["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 | 2005-12-23T00:11:05Z | 2005-12-16T19:06:40Z |
109,350 | Bug 109350 output parameter should display in data set dialog. | details output parameter should display in edit data set dialog. steps to reproduce: when call the stored procedure from Oracle database, the query result has been stored in output parameter as an object. While in query result page, there is no data returned actual result: output parameter should display in edit data set dialog. | resolved fixed | 126b0c4 | ["data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odaconsumer/ResultSet.java", "data/org.eclipse.birt.report.data.oda.jdbc/src/org/eclipse/birt/report/data/oda/jdbc/CallStatement.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-22T14:24:19Z | 2005-09-13T02:53:20Z |
121,815 | Bug 121815 NullPointerException when undo a delete action. | Description: NullPointerException when undo a delete action. Steps to reproduce: 1. Attached is a grid/table/list nest report, select the outer grid and press delete button. 2. Press Ctrl+Z Expected result: The deleted items are recovered without exception. Actual result: java.lang.NullPointerException at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.getRefreshManager(ReportElementEditPart.java:713) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.refreshVisuals(ReportElementEditPart.java:513) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.LabelEditPart.markDirty(LabelEditPart.java:65) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.markDirty(ReportElementEditPart.java:677) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.markDirty(ReportElementEditPart.java:677) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.markDirty(ReportElementEditPart.java:677) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.markDirty(ReportElementEditPart.java:677) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.TableEditPart.markDirty(TableEditPart.java:1228) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.markDirty(ReportElementEditPart.java:655) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.GridEditPart.elementChanged(GridEditPart.java:73) at org.eclipse.birt.report.model.core.DesignElement.broadcast(DesignElement.java:776) at org.eclipse.birt.report.model.activity.NotificationRecordTask.doTask(NotificationRecordTask.java:199) at org.eclipse.birt.report.model.activity.FilterEventsCompoundRecord.performPostTasks(FilterEventsCompoundRecord.java:76) at org.eclipse.birt.report.model.activity.CompoundRecord.undo(CompoundRecord.java:127) at org.eclipse.birt.report.model.activity.ActivityStack.undo(ActivityStack.java:397) at org.eclipse.birt.report.designer.internal.ui.command.WrapperCommandStack.undo(WrapperCommandStack.java:59) at org.eclipse.gef.ui.actions.UndoAction.run(UndoAction.java:93) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:222) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:117) at org.eclipse.core.commands.Command.execute(Command.java:311) at org.eclipse.core.commands.ParameterizedCommand.execute(ParameterizedCommand.java:396) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:459) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:781) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:828) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:550) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:493) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:117) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:917) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:867) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:852) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:880) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:876) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1190) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3135) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3038) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3706) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1656) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2711) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163) 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:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | closed fixed | a7fc92e | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/GridEditPart.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-22T07:42:04Z | 2005-12-22T02:53:20Z |
121,170 | Bug 121170 get column label from meta data object should return some user recognizable strings | Calling IMetaData.getColumnLabel() before/after data extraction have different results. The labels returned before extraction are null, while the ones after extraction are recognizable strings. Since the labels need to be displayed to the end user before doing the extraction, getcolumnlabel before extraction should also return the same labels as after extraction. | closed fixed | 165fa76 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataIterator.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-22T06:51:24Z | 2005-12-16T05:13:20Z |
121,174 | Bug 121174 Bookmark url is not correct. | null | resolved fixed | efde2e5 | ["viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/soapengine/api/UpdateContent.java", "viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/soapengine/endpoint/BirtSoapBindingStub.java", "viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/classes/org/eclipse/birt/report/soapengine/endpoint/BirtViewerAPI.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-22T03:15:58Z | 2005-12-16T05:13:20Z |
121,682 | Bug 121682 Exception throws when export data from table containing highlight/map. | Description: Exception throws when export data from attached report. Steps to reproduce: 1. I add a table which has a group, a highlight rule and a map rule in group row. 2. Preview the report attached. 3. Export the data in table. Expected result: Data are exported. Actual result: Exception in: ReportEngineService.getMetaData( ) | closed fixed | fccbc9a | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTask.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-22T02:15:56Z | 2005-12-21T04:40:00Z |
121,687 | Bug 121687 Exception throws when export data in table which inside a grid cell. | Description: Exception throws when export data in table which inside a grid cell. Steps to reproduce: 1. insert a grid. 2. insert one table to one grid cell. 3. insert another table to the other grid cell. 4. export data in two tables. Expected result: Data are exported. Actual result: Exception in: ReportEngineService.getMetaData( ) | closed fixed | 45aac06 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/DataExtractionTask.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/ir/Report.java", "engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/parser/EngineIRVisitor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-21T10:05:18Z | 2005-12-21T07:26:40Z |
104,592 | Bug 104592 Spanish label on Edit Parameter is truncated | Spanish translation for "Selection values:" on Edit Parameter is truncated. Please check attached bitmap file for detail. "Set default" button is also truncated, but it's a duplicate of 104584. | closed fixed | 4aa4d16 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-21T09:02:17Z | 2005-07-20T22:53:20Z |
121,352 | Bug 121352 The data set binding property cannot be retrieved in report preview layout | In report preview page, the datasource/dataset property binding lists cannot be retrieved. The dataset binding can not work correctly in layout preview because it's value cannot get from the binding list. But in the data set edit page, the binding value can be got. You can refer to the attachment. | closed fixed | 6a3ed59 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/ContentRecord.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/ContentReplaceRecord.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/parser/ModuleParserHandler.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-21T08:18:56Z | 2005-12-19T05:26:40Z |
121,166 | Bug 121166 in the second time use of scripted data set, the result is null | 1: Create a scripted data source 2: Create a scripted data set 3: Drag this data set to report design to create a table 4: Do step 4 again to create the second table 5: Preview report, the first table has result but the second table is null Expected: 5: the first table and the second table have the same result | resolved fixed | 4ea6215 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DtEScriptExecutor.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-21T07:48:53Z | 2005-12-16T05:13:20Z |
104,986 | Bug 104986 Backgound image uses an absolute path | Currently Chart uses an absolute path to indicate a backgournd image, that may cause the design unusable on other environments. Expected the background image can be definded in multiple ways like in report designer. e.g. URI(absolute path), File(relative path), Embedded Image(Encoded Image Data). | resolved fixed | 99ab478 | ["chart/org.eclipse.birt.chart.device.extension/src/org/eclipse/birt/chart/device/swing/SwingRendererImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/AttributeFactory.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/AttributePackage.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/CallBackValue.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/EmbeddedImage.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/impl/AttributeFactoryImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/impl/AttributePackageImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/impl/EmbeddedImageImpl.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/util/AttributeAdapterFactory.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/util/AttributeSwitch.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/model/attribute/util/AttributeValidator.java", "chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/render/AxesRenderer.java", "chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/FillCanvas.java", "chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/FillChooserComposite.java", "chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/IconCanvas.java", "chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/ImageDialog.java", "chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/composites/MarkerIconDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-21T05:27:46Z | 2005-07-25T11:13:20Z |
119,804 | Bug 119804 [Smoke]Drill-through link doesn't work in BIRT PDF Emitter. | Description: Drill-through link doesn't work in BIRT PDF Emitter. Steps to reproduce: 1. Define a drill-through link in design file. 2. Preview in pdf using birt pdf emitter. 3. Click the drill-through link Expected result: The target report opens. Actual result: Nothing happened. | closed fixed | 1df9f1f | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/EngineConstants.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-21T02:33:50Z | 2005-12-08T05:33:20Z |
121,527 | Bug 121527 new feature: Cache data set data for report preview works incorrectly | Description: Set the "Cache and use first 5 rows" for report preview, but in the preview result and preview in designer there still return the entire data set. Steps to reproduce: 1.Create sample datasource, create a dataset with "select * from CLASSICMODELS.CUSTOMERS". 2.In the "Edit dataset" dialog, set the "Cache and use first 5 rows" for report preview. But in the preview result of "Edit dataset" dialog, it returns the entire dataset. Expected result: Return 5 rows for preview. | closed fixed | 4ca1d02 | ["engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/EngineConstants.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-20T22:20:52Z | 2005-12-20T06:26:40Z |
121,399 | Bug 121399 There is no default file name in "save as" dialog. | Description: There is no default file name in "save as" dialog. Steps to reproduce: 1. Open a report file and save as it to a new file. 2. "Save as" dialog pops up. 3. Notice that default name is missing. | closed fixed | 4a12598 | ["UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/SaveReportAsWizard.java", "UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/WizardSaveAsPage.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-20T10:58:36Z | 2005-12-19T11:00:00Z |
117,644 | Bug 117644 Set inside nested table's filter to use outer table's column with two tables usi | Description: Set inside nested table's filter to use outer table's column with two tables using different data source will cause exception Steps to reproduce: 1.create a new report 2.create datasource1 from sample database,datasource2 with jdbc database type 3.create ds1 from datasource1 and ds2 from datasource2 4.insert a table(table1) and bind it to ds1 5.insert a table(table2) to table1's detail row and bind it to ds2 6.select the table2 and select filter tab in property editor 7.select ds1's column as filter's expression 8.click the value1 drop down list and click select value Expected result: values are listed Actual result: Birt Exception: Let me simplify it as following example. Below is a report. column1 (Table) column2 (Nested Table) If we add a filter in nested table, it has an expression rows[0]["column1"] which indicates we want to use outer table column data as filter condition. Next, we choose value1, and click <select value>, an error dialog will pop up. The cause is in selecting value, DtE will try to get all rows[0]["column1"] value and provider them to user. But in designing time, only nested table info is passed to DtE, and then DtE can not get outer table data. In running time, there is no problem if user set a static value by not using select value. | resolved fixed | c1bc3c2 | ["UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/SelectValueDialog.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-20T10:34:21Z | 2005-11-23T07:13:20Z |
120,958 | Bug 120958 Match operator does not work | 1. Insert a table and a data set field, such as customerName. 2. Specify the following filter for the table: row["customerName"] Match /^Mini/i (This is a valid JavaScript regular expression) 3. Preview the report. An error message appears saying that the conditional operator is not supported. See attached report design. | resolved fixed | fc8d300 | ["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/data/dte/ReportQueryBuilder.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-20T09:51:03Z | 2005-12-14T19:53:20Z |
121,498 | Bug 121498 When datasource/dataset deleted, the datasource/dataset property binding element haven't been deleted | When deleted the datasource/dataset, the datasource/dataset property binding element haven't been deleted. Expected result: This operation must be a transaction. | resolved fixed | 47a6771 | ["model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/DesignElementHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/ContentCommand.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/core/Module.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-20T09:15:06Z | 2005-12-20T03:40:00Z |
121,370 | Bug 121370 ?eirst open BIRT, property editor can not be opened. | eirst open BIRT , create a new workspace, property editor can not be opened, system throws exception. Steps: 1.Install eclipse and birt 2.Open the eclipse 3.Create a new workspace Actual Results: 1.Propertye editor can not be opened, system throws exception java.lang.NullPointerException at org.eclipse.birt.report.model.api.GroupElementHandle.<init>(GroupElementHandle.java:86) at org.eclipse.birt.report.designer.util.DEUtil.getGroupElementHandle(DEUtil.java:1562) at org.eclipse.birt.report.designer.ui.views.attributes.AttributeView.addActions(AttributeView.java:334) at org.eclipse.birt.report.designer.ui.views.attributes.AttributeView.createPartControl(AttributeView.java:276) at org.eclipse.ui.internal.PartPane$2.run(PartPane.java:137) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.PartPane.createChildControl(PartPane.java:133) at org.eclipse.ui.internal.ViewPane.createChildControl(ViewPane.java:135) at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:351) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.ViewFactory.busyRestoreView(ViewFactory.java:273) at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:530) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView(ViewFactory.java:528) at org.eclipse.ui.internal.ViewFactory$ViewReference.getPart(ViewFactory.java:102) at org.eclipse.ui.internal.WorkbenchPage$1.propertyChange(WorkbenchPage.java:132) at org.eclipse.ui.internal.LayoutPart.setVisible(LayoutPart.java:268) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:317) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:568) at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:122) at org.eclipse.ui.internal.presentations.DefaultPartPresentation.selectPart(DefaultPartPresentation.java:1116) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:946) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:921) at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1020) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:383) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:367) at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:432) at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:155) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:732) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2818) at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:743) at org.eclipse.ui.internal.WorkbenchPage.access$8(WorkbenchPage.java:728) at org.eclipse.ui.internal.WorkbenchPage$12.run(WorkbenchPage.java:2961) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2959) at org.eclipse.ui.internal.ChangeToPerspectiveMenu.run(ChangeToPerspectiveMenu.java:87) at org.eclipse.ui.actions.PerspectiveMenu.run(PerspectiveMenu.java:303) at org.eclipse.ui.actions.PerspectiveMenu$3.widgetSelected(PerspectiveMenu.java:119) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2772) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2431) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1377) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1348) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:254) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) 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.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) Expected Results: 1.Property editor can be opened. | closed fixed | d13b184 | ["UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/EmptyGroupElementHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/GroupElementFactory.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/GroupElementHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/GroupPropertyHandle.java", "model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/SimpleGroupElementHandle.java"] | Birt | https://github.com/eclipse/birt | eclipse/birt | java | null | null | null | 2005-12-20T08:12:03Z | 2005-12-19T08:13:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.