id
int64
1
6.5k
bug_id
int64
2.03k
426k
summary
stringlengths
9
251
description
stringlengths
1
32.8k
report_time
stringlengths
19
19
report_timestamp
int64
1B
1.39B
status
stringclasses
6 values
commit
stringlengths
7
9
commit_timestamp
int64
1B
1.39B
files
stringlengths
25
32.8k
project_name
stringclasses
6 values
3,908
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
2005-12-15 23:10:50
1,134,710,000
resolved fixed
4ea6215
1,135,150,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/DtEScriptExecutor.java
Birt
3,909
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).
2005-07-25 06:37:19
1,122,290,000
resolved fixed
99ab478
1,135,140,000
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
3,910
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.
2005-12-08 00:26:13
1,134,020,000
closed fixed
1df9f1f
1,135,130,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/EngineConstants.java
Birt
3,911
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.
2005-12-20 02:08:01
1,135,060,000
closed fixed
4ca1d02
1,135,120,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/EngineConstants.java
Birt
3,912
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.
2005-12-19 06:58:24
1,134,990,000
closed fixed
4a12598
1,135,080,000
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
3,913
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.
2005-11-23 01:39:14
1,132,730,000
resolved fixed
c1bc3c2
1,135,070,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/SelectValueDialog.java
Birt
3,914
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.
2005-12-14 16:03:37
1,134,590,000
resolved fixed
fc8d300
1,135,070,000
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
3,915
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.
2005-12-19 21:45:49
1,135,050,000
resolved fixed
47a6771
1,135,070,000
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
3,916
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.
2005-12-19 04:11:08
1,134,980,000
closed fixed
d13b184
1,135,070,000
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
3,917
121,418
Bug 121418 Error enlarging a chart in ReportDesigner
Trying to resize a Chart (no much actually) in the report Designer results in the following behaviour: The chart disappears from the page, but is still visible in the outline. There the chart gets assigned a very hugh number in the width/height properties (540625in/18020833333333332in) or (15854166666666666in/3171875in) or various other very big numbers. Trying to change this, does not really result in an improvement. It is possible to reproduce this and it is never again possible to change the size of the chart. Rebuilding the report is the only possibility to get out.
2005-12-19 09:53:31
1,135,000,000
resolved fixed
176d6d2
1,135,060,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/commands/SetConstraintCommand.java UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/ReportItemtHandleAdapter.java UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/schematic/RowHandleAdapter.java
Birt
3,918
117,981
Bug 117981 Any item can't be selected at the first time in library outline view.
Description: Any item can't be selected at the first time in library outline view. Steps to reproduce: 1. Add a label in library file. 2. Select the label item in library outline view. 3. The focus jumps to library file node in outline view. The second time I select the label item, it can be selected.
2005-11-24 21:36:34
1,132,890,000
closed fixed
462296c
1,135,050,000
UI/org.eclipse.birt.report.designer.ui.lib/src/org/eclipse/birt/report/designer/internal/lib/editparts/LibraryReportDesignEditPart.java
Birt
3,919
120,337
Bug 120337 In the style list, style name is not alphabetic.
In the style list, style name is not alphabetic. Steps: 1.Create some style: PageBreak, FormatNumber, FormatString, Border, Box, TextBlock (style Name) 2.Drag a label into the layout 3.Open the Property Editor View 4.Select "General" tab, click Style drop list Actual Resutls: 1.style name is not alphabetic. Expected Results: 1.style name is alphabetic.
2005-12-12 03:43:26
1,134,380,000
closed fixed
aedfebb
1,135,050,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/AlphabeticallyComparator.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/attributes/providers/ChoiceSetFactory.java
Birt
3,920
120,061
Bug 120061 data type boolean in dbms can not show in data set
i use postgresql 8.1 and jdbc driver in create data set from table with boolean field it have error data set try to make it a integer and show can not convert 't', 'f' to integer
2005-12-09 00:05:54
1,134,100,000
resolved fixed
ba9eef4
1,135,050,000
data/org.eclipse.birt.report.data.oda.jdbc/src/org/eclipse/birt/report/data/oda/jdbc/ResultSet.java
Birt
3,921
121,032
Bug 121032 [Regressiong][Smoke]Error pop up in Engine Smoke Test
Description: Error pop up in Engine Smoke Test Step: 1. run attached file to generate html file. Actual result: Much of engine smoke test case appear the same error. Dec 15, 2005 10:08:16 AM org.eclipse.birt.core.util.BirtTimer logTimeTaken INFO: Engine startup takes 766 Milliseconds. Dec 15, 2005 10:08:20 AM org.eclipse.birt.report.engine.script.internal.TableScriptExecutor handleOnRender WARNING: org.eclipse.birt.report.model.api.GridHandle java.lang.ClassCastException: org.eclipse.birt.report.model.api.GridHandle at org.eclipse.birt.report.engine.script.internal.TableScriptExecutor.handleOnRender(TableScriptExecutor.java:78) at org.eclipse.birt.report.engine.presentation.LocalizedEmitter.startTable(LocalizedEmitter.java:261) at org.eclipse.birt.report.engine.presentation.WrappedEmitter.startTable(WrappedEmitter.java:261) at org.eclipse.birt.report.engine.presentation.DefaultPaginationEmitter.startTable(DefaultPaginationEmitter.java:153) at org.eclipse.birt.report.engine.executor.GridItemExecutor.execute(GridItemExecutor.java:125) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitGridItem(ReportExecutorVisitor.java:172) at org.eclipse.birt.report.engine.ir.GridItemDesign.accept(GridItemDesign.java:117) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:161) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:199) at org.eclipse.birt.report.engine.api.ReportRunner.runAndRenderReport(ReportRunner.java:232) at org.eclipse.birt.report.engine.api.ReportRunner.execute(ReportRunner.java:158) at org.eclipse.birt.report.engine.api.ReportRunner.main(ReportRunner.java:129) Dec 15, 2005 10:08:20 AM org.eclipse.birt.report.engine.script.internal.LabelScriptExecutor handleOnRender WARNING: org.eclipse.birt.report.model.api.TextItemHandle java.lang.ClassCastException: org.eclipse.birt.report.model.api.TextItemHandle at org.eclipse.birt.report.engine.script.internal.LabelScriptExecutor.handleOnRender(LabelScriptExecutor.java:78) at org.eclipse.birt.report.engine.presentation.LocalizedEmitter.startLabel(LocalizedEmitter.java:366) at org.eclipse.birt.report.engine.presentation.WrappedEmitter.startLabel(WrappedEmitter.java:326) at org.eclipse.birt.report.engine.presentation.DefaultPaginationEmitter.startLabel(DefaultPaginationEmitter.java:230) at org.eclipse.birt.report.engine.executor.TextItemExecutor.executePlainText(TextItemExecutor.java:175) at org.eclipse.birt.report.engine.executor.TextItemExecutor.execute(TextItemExecutor.java:79) at org.eclipse.birt.report.engine.executor.ReportExecutorVisitor.visitTextItem(ReportExecutorVisitor.java:111) at org.eclipse.birt.report.engine.ir.TextItemDesign.accept(TextItemDesign.java:129) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:161) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:199) at org.eclipse.birt.report.engine.api.ReportRunner.runAndRenderReport(ReportRunner.java:232) at org.eclipse.birt.report.engine.api.ReportRunner.execute(ReportRunner.java:158) at org.eclipse.birt.report.engine.api.ReportRunner.main(ReportRunner.java:129) Picked up _JAVA_OPTIONS: -Dawt.toolkit=mercury.awt.awtSW -Xrunmicsupp -Xbootclasspath/a:C:\PROGRA~1\COMMON~1\MERCUR~1\SHARED~1\JAVAAD~1\classes;C:\PROGRA~1\COMMON~1\MERCUR~1\SHARED~1\JAVAAD~1\classes\mic.jar
2005-12-15 05:00:16
1,134,640,000
closed fixed
d1a966f
1,135,030,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/GridScriptExecutor.java
Birt
3,922
121,348
Bug 121348 When some labels write in Japanese and Chinese, the lables don't display int the pdf emitter
Description: When some labels write in Japanese and Chinese, the lables don't display int the pdf emitter Steps to reproduce: 1. create a new report 2. drag some labels to the layout, and input the Japanese and Chinese charaters in the labels 3. save and preview in the PDF emitter Actual Results: the labels with the Japanese and Chinese characters don't show up Expected Results: the labels with the Japanese and Chinese characters show up correctly
2005-12-18 22:06:12
1,134,960,000
closed fixed
09b2c95
1,134,990,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/RunAndRenderTask.java
Birt
3,923
120,300
Bug 120300 Parameter which drop from library explorer to layout cannot be used
Details: Parameter in library explorer can not drop to layout Step: 1.New a library and new a parameter named "p1" 2.Open a report design and include a library 3.Drop the p1 from library explorer to layout and preview Actual result: An error message pop up. Error0 : Error.ScriptEvaluationError ( 1 time(s) ) detail : org.eclipse.birt.report.engine.api.EngineException: There are errors evaluating script "params["P1"]". at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:424) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:386) at org.eclipse.birt.report.engine.data.dte.DteDataEngine.evaluate(DteDataEngine.java:321) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:441) 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:161) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:199) 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: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:595) Caused by: org.mozilla.javascript.JavaScriptException: P1 not found at org.eclipse.birt.core.script.NativeJavaMap.get(NativeJavaMap.java:68) at org.mozilla.javascript.ScriptableObject.getProperty(ScriptableObject.java:1263) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1301) at org.mozilla.javascript.ScriptRuntime.getObjectElem(ScriptRuntime.java:1283) at org.mozilla.javascript.gen.c26._c0(:1) at org.mozilla.javascript.gen.c26.call() at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:304) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2769) at org.mozilla.javascript.gen.c26.call() at org.mozilla.javascript.gen.c26.exec() at org.eclipse.birt.core.script.ScriptContext.eval(ScriptContext.java:231) at org.eclipse.birt.report.engine.executor.ExecutionContext.evaluate(ExecutionContext.java:417) ... 45 more
2005-12-11 22:04:26
1,134,360,000
closed fixed
bf4dbe7
1,134,990,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/BasePaletteFactory.java
Birt
3,924
120,503
Bug 120503 Cascading Parameter can not drop into layout
Details: Cascading Parameter can not drop into layout Step: 1.Open a report design and Create a Sample Data Source and data set by "select * from CLASSICMODELS.CUSTOMERS" 2.New a cascading parameter and create CUSTOMERSNUMBER and CUSTOMERSNAME in parameter named number and name. Press OK 3.Drop parameter name into layout. Actual results: The parameter in Cascading Parameter Group can not drop to layout
2005-12-12 22:12:08
1,134,440,000
closed fixed
3e0d05e
1,134,980,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/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.lib/src/org/eclipse/birt/report/designer/internal/lib/views/outline/LibraryOutlinePage.java
Birt
3,925
117,450
Bug 117450 Birt will hang when add several drivers through
Description: Add several drivers in the "Edit Data source" dialog, click "Ok" button, BIRT will hang and nothing can do except close BIRT forcibly. According to the developer's said, out of memory problem will occur when doing this operation. But why such operation cosumes so many memory? And the memory of my PC is 512M.
2005-11-22 04:03:23
1,132,650,000
closed fixed
1692435
1,134,980,000
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
3,926
121,323
Bug 121323 XML Edit Data Set dialog does not persist filter information
If one enters an XPath expression for the column mapping with a selection part like section[@id='left'] then within class RelationInformation the selection is stripped of and stored in filterInfo HashMap. When leaving the dialog, RelationInformation gets persited to .rptdesign - but data stored in filterInfo is lost. However - IMHO treating XPath expressions in that way will lead to a lot of trouble. Why can't we use the plain XPath expression (of course prepended with the path from the data set selector itself) and let filtering be something for those which need it? Kind regards, Herbert
2005-12-17 17:24:04
1,134,860,000
resolved fixed
5fba8aa
1,134,980,000
data/org.eclipse.birt.report.data.oda.xml/src/org/eclipse/birt/report/data/oda/xml/util/RelationInformation.java
Birt
3,927
118,389
Bug 118389 Java based scripting -> ScriptStyle -> getBorderRightWidth
steps to reproduce, - create a label - map the label to the Java class attached expected behavior, - getBorderRightWidth return "1cm" actual behavior, - getBorderRightWidth return null
2005-11-29 04:10:54
1,133,260,000
closed fixed
8f727ff
1,134,760,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/script/internal/instance/StyleInstance.java
Birt
3,928
120,345
Bug 120345 Need a URL generator API from Engine
The Chart Engine needs the ability to generate a viewer URL from an ActionHandle, this can be provided by a Report Engine public API for instance. The URL should usable as is by the viewer without any additional change. The Chart Engine can take care of evaluating the expressions inside the ActionHandle before calling the Report Engine API if necessary.
2005-12-12 04:35:08
1,134,380,000
closed fixed
a5c8902
1,134,760,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/HTMLActionHandler.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/IAction.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/Action.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/executor/ExecutionContext.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/extension/IReportItemPresentation.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/extension/IRowSet.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/extension/ReportItemPresentationBase.java
Birt
3,929
120,072
Bug 120072 Support intellisense for "this" object in script editor & expression builder.
In BIRT, "this" object in javaScript methods represents the current report item or report item instamnce, for example, "this" object represents an ILabel object in label report item's onPrepare() method, and an ILabelInstance object in label report item's onCreate() and onRender() method. Script editor should support inteli-sense for "this" object for all report items. DE will define those methods using standard ROM method defintion, and the first argument will be the "this" object. This is also consistent with eventhandler interface defined for java event handler. Script editor (GUI) should use DE-API to get the classtype of the first argument of the current method, and use reflection to get all the methods defined on this classes, and display after the "this." is enetered.
2005-12-09 02:36:37
1,134,110,000
resolved fixed
fa0d9b8
1,134,720,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/SaveReportAsWizard.java UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/SaveReportAsWizardDialog.java UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/WizardSaveAsPage.java UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerTreeViewPage.java UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerView.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/TemplateReportItemPropertiesDialog.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/ui/actions/PublishTemplateAction.java
Birt
3,930
119,127
Bug 119127 Accessing data: UTF-8 BOM encoded text file causes problems
Create a simple flat file to use as a data source. Save it as UTF-8 using Notepad in Windows. Try to use it as a flat file data souce: 1. Create a new XML data source: This can be successfully created and a new data source appears in the project data sources. 2. Create a new XML: Click New Data Set on context menu. 3. Define new XML data set. Select XML data source. Choose Next. 4. Select the sample.xml file. Choose Next. 5. Choose XPath Expression. You cannot continue. There are no options available in the XML structure portion of the screen. Clicking Next does nothing. User cannot advance. Evaluation from Lin Zhu: The sample xml file is of UTF-8 BOM format rather than the standard UTF-8 format. If we simply save that xml file to standard UTF-8 format then everything is all right. Although Xecers claims that it supports UTF-8 BOM encoding, when we pass a file encoded with UTF-8 BOM it will throw a SaxParserException which reads " Content is not allowed in prolog", and this is usually caused by error encoding information.
2005-12-02 16:25:23
1,133,560,000
resolved fixed
35938c2
1,134,720,000
data/org.eclipse.birt.report.data.oda.xml/src/org/eclipse/birt/report/data/oda/xml/util/SaxParser.java
Birt
3,931
120,922
Bug 120922 "Dirty Page" behavior in XML Report Designer editor needs improved
If you edit the XML in the "source" view of the Layout Editor, and then try to switch back to the Layout view, you will get an error message indicating that you need to save your changes. This problem is the user has to figure out what he needs to do to save the changes (or discard them, which is even harder), and the error message is not very good. The error message is "Source page is dirty. Other pages cannot be used until the source is saved." (including the quotes). And then the user needs figure out how to save or discard their changes. A better and more typical approach would be: XML Report Design has been changed. Do you want to save the changes? <Yes> <No> <Cancel> Yes would save the changes No would discard the changes Cancel would do nothing and remain on the Source page In addition, the dialog is titled "Error" (including the quotes). The dialog needs to use a better title (and certainly should not have the quotes).
2005-12-14 13:47:53
1,134,590,000
resolved fixed
267e0ac
1,134,710,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/parts/GraphicalEditorWithFlyoutPalette.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ListEditPart.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionProvider.java
Birt
3,932
120,919
Bug 120919 Date value incorrectly displayed as 1/1/2005 when group by day is used with data all from a single day
Using the 2.0M3 milestone build. If you create a bar chart with data/time column data for the x-axis and use the group by feature selecting "day" and an interval of "1", the value displayed will be 1/1/2005 regardless of the actual date/time value in the dataset if all of the data falls within a single group (i.e. a single day in this case... actually, the same thing happens with any of the other date/time values such as minutes, hours, seconds if all of your data would end up in a single group). For example if you have 3 rows of data in a dataset and one of the columns has a date/time value and the values for that column are say: 4/1/2005 10:12 AM 4/1/2005 11:15 AM 4/1/2005 7:15 AM If you use this date/time column for the x-axis and group by "day" with an interval of "1". Instead of a single bar on the chart labeled 4/1/2005 you will see 1/1/2005. If you group by hour so that you get 3 bars the dates will display correctly. Basically, if you end up with more than 1 group the date is fine. If everything falls into a single group the date is incorrect.
2005-12-14 13:08:57
1,134,580,000
resolved fixed
505e843
1,134,700,000
chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/DataSetIterator.java
Birt
3,933
121,003
Bug 121003 Data source property binding error
When there are two data source property binding, the second binding cannot be set.The exception will be reported: org.eclipse.birt.report.model.api.metadata.PropertyValueException: The value "odaDataSource" already exists. at org.eclipse.birt.report.model.api.validators.StructureListValidator.doCheckStructureList(StructureListValidator.java:223) at org.eclipse.birt.report.model.api.validators.StructureListValidator.validateForAdding(StructureListValidator.java:96) at org.eclipse.birt.report.model.core.DesignElement.checkStructureList(DesignElement.java:2642) at org.eclipse.birt.report.model.command.PropertyCommand.addItem(PropertyCommand.java:444) at org.eclipse.birt.report.model.api.DesignElementHandle.setPropertyBinding(DesignElementHandle.java:2086) at org.eclipse.birt.report.designer.internal.ui.dialogs.DataSourcePropertyBindingPage.performOk(DataSourcePropertyBindingPage.java:192)
2005-12-14 22:28:23
1,134,620,000
closed fixed
9f640a6
1,134,630,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/validators/StructureListValidator.java
Birt
3,934
114,721
Bug 114721 NPE thrown out when preview cascading parameter which binding data set deleted
description: NPE thrown out when preview cascading parameter which binding data set deleted steps to reproduce: 1. create a cascading parameter which binds to data set 2. select the data set in data explorer and delete it 3. click on Preview button actual result: NPE thrown out expected result: No exception thrown out exception stack trace: java.lang.NullPointerException at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.getCo mboSelectionLabel(InputParameterDialog.java:929) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.getIn itValue(InputParameterDialog.java:903) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.getPa rameterValue(InputParameterDialog.java:774) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.isEna ble(InputParameterDialog.java:1076) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.isEna ble(InputParameterDialog.java:1066) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.enabl eOkButton(InputParameterDialog.java:1048) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.initD ialog(InputParameterDialog.java:1109) at org.eclipse.birt.report.designer.internal.ui.dialogs.BaseDialog.open (BaseDialog.java:137) at org.eclipse.birt.report.designer.internal.ui.editors.parts.AbstractMultiPageLay outEditor.prePreview(AbstractMultiPageLayoutEditor.java:1100) at org.eclipse.birt.report.designer.internal.ui.editors.parts.AbstractMultiPageLay outEditor.pageChange(AbstractMultiPageLayoutEditor.java:948) at org.eclipse.birt.report.designer.ui.editors.ReportEditor.pageChange (ReportEditor.java:170) at org.eclipse.ui.part.MultiPageEditorPart$2.widgetSelected (MultiPageEditorPart.java:200) 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:843) 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.notifyListeners(Widget.java:660) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3138) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1922) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:288) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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)
2005-11-02 01:28:13
1,130,910,000
resolved fixed
2a123cf
1,134,600,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/GetParameterDefinitionTask.java
Birt
3,935
120,317
Bug 120317 Set "dimension" property to 3D in "properties" view, error appears in layout editor.
Description: Set "dimension" property to 3D in "properties" view, error appears in layout editor. Steps to reproduce: 1. Add a 2D chart in property editor. 2. Set its dimension property to "three-dimension" in properties view. 3. Error appears in chart.
2005-12-12 01:22:29
1,134,370,000
closed fixed
c2e1d6e
1,134,550,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ExtendedItemHandle.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/PropertyHandle.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/extension/IPropertyDefinition.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/extension/IReportItem.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/extension/PropertyDefinition.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/extension/ReportItem.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/elements/ExtendedItem.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/extension/PeerExtensibilityProvider.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/metadata/ElementPropertyDefn.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/metadata/ExtensionLoader.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/metadata/ExtensionModelPropertyDefn.java
Birt
3,936
103,291
Bug 103291 Group key doesn't support inputting text
Description: Group key doesn't support inputting text Steps to reproduce: 1.Add a table and bind it with data set 2.Add a group to the table: enter a row name in the "Group On:" textbox 3.Save and preview Expected result: Everything is OK Actual result: Error occurs because the group key is added as a string not a expression
2005-07-11 03:45:52
1,121,070,000
closed fixed
c307ae0
1,134,550,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/GroupDialog.java
Birt
3,937
120,293
Bug 120293 There is no response when I drag an embedded image from library explorer into outline view.
Description: There is no response when I drag an embedded image from library explorer into outline view. Steps to reproduce: 1. Use a library in a report. 2. Drag an embedded image from library explorer into outline view. There is no response. It doesn't take effect.
2005-12-11 21:14:57
1,134,350,000
closed fixed
120d679
1,134,550,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DNDUtil.java
Birt
3,938
120,433
Bug 120433 File types are hard coded in ReportPage.java
File Types for Preview Image are hard coded in ReportPage.java. (Please check the attached bitmap file) private final static String[] prvImgFilterNames = { "All Image Files(*.bmp,*.JPG,*.JPEG,*.GIF,*.TIF,*.PNG,*.ICO)", //$NON-NLS-1$ "Bitmap Files(*.bmp)", //$NON-NLS-1$ "JPEG Files(*.JPG,*.JPEG)", //$NON-NLS-1$ "TIF Files(*.TIF)", //$NON-NLS-1$ "GIF Files(*.GIF)", //$NON-NLS-1$ "PNG Files(*.PNG)", //$NON-NLS-1$ "Icon Files(*.ICO)" //$NON-NLS-1$ };
2005-12-12 14:47:01
1,134,420,000
verified fixed
e28ae6e
1,134,540,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/IReportGraphicConstants.java
Birt
3,939
120,036
Bug 120036 Preview of XML attributes is not working
The XML attribute values are not working in the current BIRT XML ODA driver. Only 'text'-type XML elements' values are displayable in Preview. ColumnMapping XPath expressions like "@attributeName" are broken in Preview. I'll attach document showing the problem and sample XML/XSD data
2005-12-08 19:40:10
1,134,090,000
resolved fixed
469779f
1,134,540,000
data/org.eclipse.birt.report.data.oda.xml/src/org/eclipse/birt/report/data/oda/xml/util/RelationInformation.java
Birt
3,940
120,519
Bug 120519 NullPointerException is thrown out when deleting a list group.
Description: NullPointerException is thrown out when deleting a list group. Steps to reproduce: 1. Save attached design file as a new file. 2. Right click on list group header and select "delete group". NullPointerException is thrown out. ava.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.ReportDesignEditPart.notifyChildrenDirty(ReportDesignEditPart.java:219) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.notifyChildrenDirty(ReportElementEditPart.java:688) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ListEditPart.notifyChildrenDirty(ListEditPart.java:297) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ReportElementEditPart.markDirty(ReportElementEditPart.java:669) 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.ListEditPart.elementChanged(ListEditPart.java:103) 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.ActivityStack.commit(ActivityStack.java:704) at org.eclipse.birt.report.model.command.ContentCommand.doRemove(ContentCommand.java:465) at org.eclipse.birt.report.model.command.ContentCommand.remove(ContentCommand.java:351) at org.eclipse.birt.report.model.api.DesignElementHandle.drop(DesignElementHandle.java:1183) at org.eclipse.birt.report.designer.core.model.schematic.ListHandleAdapter.removeGroup(ListHandleAdapter.java:213) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.editparts.ListEditPart.removeGroup(ListEditPart.java:282) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.actions.DeleteListGroupAction.run(DeleteListGroupAction.java:59) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) 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:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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)
2005-12-13 02:32:13
1,134,460,000
closed fixed
2a3a5ca
1,134,540,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/ContentRecord.java
Birt
3,941
120,291
Bug 120291 Data source and data set extended from library in a report are invalid.
Description: Data source and data set extended from library in a report are invalid. Steps to reproduce: 1. Drag a data source and data set from library explorer view. Noticed that their names are different from the names in library. 2. I want to use the data source extended from library to create a new data set. The data source is invalid. 3. The data set from library is also invalid. When editing it, NullPointerException is thrown out.
2005-12-11 21:08:51
1,134,350,000
closed fixed
106d9f0
1,134,540,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/StructureFactory.java
Birt
3,942
120,316
Bug 120316 Java based scripting -> ITextItemInstance does not have getStyle()
ITextItemInstance, which extends IForeignTextInstance does not have getStyle() method for user to change text item properties.
2005-12-12 01:20:00
1,134,370,000
closed fixed
2f5140bf
1,134,500,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/script/instance/ITextItemInstance.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/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
Birt
3,943
120,215
Bug 120215 BPS 40 - DE changes
1. all report elements' properties will be overidable with an expression. The binding expression will have access to report parameter, and static BIRT report objects only. 2) DE will provide api to get property binding expression for a given property on a report element handle. It's up to the engine to evaluate the property binding expression when the report gets executed. DE API changes -------------------------- a) DesignElementHandle will support the following two methods. - String (expression) GetPropertyBinding ( propertyName ) - void SetPropertyBinding( propertyName , String (expression) ) // Note get and set property methods are wrapper classes which actually use reportDesignHandle methods to retrive and set the property binding. b) rom.def changes Property bindings contains a list of binding expressions. ReportDesign element will be enhanced to support a new property called. <Property canInherit="false" detailType="propertyBinding" displayNameID="Element.Module.propertyBindings" isList="true" name="propertyBindings" type="structure"/> A new datatype - <Structure name="propertybinding"> <Member name="name" since="2.0" type="name"/> <Member name="id" returnType="any" since="2.0" type="string"/> // Use the unique id used to identify an element. <Member name="value" returnType="string" since="2.0" type="expression"/> </Structure>
2005-12-10 00:19:30
1,134,190,000
resolved fixed
ca93671
1,134,470,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/DesignElementHandle.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ModuleHandle.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/PropertyBindingHandle.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/core/IModuleModel.java 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/elements/structures/PropertyBinding.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/elements/structures/PropertyMask.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/command/PropertyCommand.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/ReportDesign.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/parser/StructureState.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/writer/ModuleWriter.java
Birt
3,944
120,216
Bug 120216 Group dialog should be showed even dataset is not set.
- Add a table report item - do not set the data set - try creating a new table group. - An error is shown Expected behavior - As part of the template requirements, we dont want UI to do the validation. User should be able to go and define a group, even if the dataset is not defined.
2005-12-10 00:25:10
1,134,190,000
resolved fixed
a11c613
1,134,460,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/util/UIUtil.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/GroupDialog.java
Birt
3,945
120,448
Bug 120448 Issue with returned id
After the change of id, InstanceId.parse() can no long be able to parse the id and how can I determin the type of this element? What would be the component id based on the id I get? Or there is another api that I can use to query the type. Note that all these happened in the document processor that rendering the page. Js code has not been invoked to send back the idd that recognizable by the InstanceId.parse().
2005-12-12 16:25:21
1,134,420,000
closed fixed
74754c2
1,134,460,000
engine/org.eclipse.birt.report.engine.emitter.html/src/org/eclipse/birt/report/engine/emitter/html/HTMLReportEmitter.java
Birt
3,946
119,343
Bug 119343 Smoke: Report design can't be edited.
Description: Report design can't be modified. Steps to reproduce: 1. Create a report. 2. Preview and then edit it. 3. Preview again. 4. It is not modified.
2005-12-05 20:57:17
1,133,830,000
closed fixed
e6b6035
1,134,420,000
viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/WebViewer.java
Birt
3,947
120,315
Bug 120315 If the display property of an item is set to "none", it doesn't take effect in new pdf emitter.
Description: If the display property of an item is set to "null", it doesn't take effect in new pdf emitter. steps to reproduce: 1. Add a label. 2. Open "properties" view. 3. Set section>Display as "none". 4. Preview in PDF. Expected result: the label disappears. Actual result: the label is still visible.
2005-12-12 01:17:01
1,134,370,000
closed fixed
b3052a6
1,134,380,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/engine/value/birt/VisibleFormatManager.java
Birt
3,948
120,311
Bug 120311 Double click any node in the outline, an error is thrown out
Description: Double click any node in the outline, an error is thrown out Steps to reproduce: 1. new a report 2. switch to the outline 3. double click a node in the outline Expect result: no exception are thrown out Actual result: an exception appears java.lang.NullPointerException at org.eclipse.birt.report.designer.internal.ui.views.actions.EditAction.isEnabled(EditAction.java:61) at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.run(AbstractElementAction.java:49) at org.eclipse.birt.report.designer.internal.ui.views.RenameListener.doubleClick(RenameListener.java:211) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:720) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044) at org.eclipse.core.runtime.Platform.run(Platform.java:783) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:718) at org.eclipse.jface.viewers.StructuredViewer.handleDoubleSelect(StructuredViewer.java:950) at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:1057) at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:219) at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:216) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:275) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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)
2005-12-12 00:52:32
1,134,370,000
closed fixed
69a2e82
1,134,370,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/actions/EditAction.java
Birt
3,949
120,218
Bug 120218 Right click menu option to apply theme.
We should support the following right click menu. -- User right clicks int he report design layout area. -- The following menu items needs to be supported Theme --> Apply Theme -->Theme1 -->Theme2 ( similar to Apply style menu option )
2005-12-10 00:40:35
1,134,190,000
resolved fixed
e2cfefe
1,134,360,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DEUtil.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/providers/SchematicContextMenuProvider.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/ApplyThemeAction.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/ApplyThemeMenuAction.java
Birt
3,950
120,062
Bug 120062 Default name of parameter and theme is not displayed as setting in preference.
null
2005-12-09 00:19:15
1,134,110,000
closed fixed
2743f90
1,134,360,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/newelement/DesignElementFactory.java
Birt
3,951
120,068
Bug 120068 TOC Item Expression is added automatically when adding the group key
Description: TOC Item Expression is added automatically when adding the group key Steps to reproduce: 1.Add a table binding with the dataset 2.Choose the table, add a group(say goupkey:row["CUSTOMERNUMBER"]) 3.Click "group" to invoke "Edit Group" dialog Expected result: Nothing in TOC Item Expression Actual result: The group key (row["CUSTOMERNUMBER"]) is added to the TOC Item Expression
2005-12-09 01:34:25
1,134,110,000
closed fixed
5629342
1,134,360,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/GroupDialog.java
Birt
3,952
119,754
Bug 119754 ClassCastException when trying to change the mouse over activity on the legend item
I want to highlight a series when hovering over the legend item. I accomplish this by doing the following on the chart model: chart.getLegend().getTriggers( ) .add( TriggerImpl.create( TriggerCondition.ONMOUSEOVER_LITERAL, ActionImpl.create( ActionType.HIGHLIGHT_LITERAL, SeriesValueImpl.create( "not-used" ) ) ) ); However I get the following exception for the SWT and Swing renderers. I suspect that both renderers are expecting tool tip action. java.lang.ClassCastException at org.eclipse.birt.chart.device.swt.SwtEventHandler.showTooltip(SwtEventHandler.java:701) at org.eclipse.birt.chart.device.swt.SwtEventHandler.mouseMove(SwtEventHandler.java:621) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:145) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713)
2005-12-07 17:22:19
1,133,990,000
closed fixed
1159990
1,134,120,000
chart/org.eclipse.birt.chart.device.extension/src/org/eclipse/birt/chart/device/swing/SwingEventHandler.java 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/device/DeviceAdapter.java chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/device/IDeviceRenderer.java
Birt
3,953
119,357
Bug 119357 Description in "New Template" dialog is not correct.
Description: Description in "New Template" dialog is not correct. Steps to reproduce: 1. Create a template. 2. See its description, it shows "New Report".
2005-12-05 23:29:51
1,133,840,000
closed fixed
03a9d41
1,134,100,000
UI/org.eclipse.birt.report.designer.ui.ide/src/org/eclipse/birt/report/designer/ui/ide/wizards/NewTemplateWizard.java
Birt
3,954
119,331
Bug 119331 Library - name space terminology and behavior
During BIRT 2.0 library feature review meeting the following change was decided. - Change the term namespace to 'prefix' - By default use the library name as the prefix ( namespace ); the dialog to input prefix should be prompted only if hte auto generated prefix is not unique.
2005-12-05 18:00:31
1,133,820,000
resolved fixed
a4e1b81
1,134,100,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/commands/CreateCommand.java UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/util/DNDUtil.java 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/dnd/InsertInLayoutUtil.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/BasePaletteFactory.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/ReportTemplateTransferDropTargetListener.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
3,955
118,780
Bug 118780 Set alias for columns in data set but in expression builder still shows the old columns name when select the dataset.
Description: Set alias for columns in data set but in expression builder still shows the old columns name when select the dataset. Steps to reproduce: 1. New a datasource and a dataset 2. Set alias of the first column in the dataset to "column1". 3. Insert a data item and bind it to dataset. 4. In the expression builder, select the dataset and double click the first column name. Expected result: According to scr #78193 in tracker, the first column in expression build should use alias name instead of original name. Actual result: The original name of the first column was listed in the below of expression builder but the alias name appeared above as row["column1"] after double click the original name.
2005-12-01 03:27:55
1,133,430,000
closed fixed
08d8bf0
1,134,030,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionProvider.java
Birt
3,956
118,757
Bug 118757 Focus is lost when select a value during importing values for parameter
"Description: Focus is lost when select a value during importing values for parameter. Steps to reproduce: 1.Create a parameter.Select type as ""List Box"". 2.Click on ""import values"". 3.Select a value from left pane to right pane. 4.After click on "">>"". 5.Select a value from right pane to left pane 6.After click on "<" Actual result: focus is lost."
2005-11-30 22:11:11
1,133,410,000
closed fixed
8b30c72
1,134,030,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/ImportValueDialog.java
Birt
3,957
118,557
Bug 118557 Default name setting of data source, data set and dynamic text doesn't take effect.
Description: Default name setting of data source, data set and dynamic text doesn't take effect. Steps to reproduce: 1.Select Window>Preferences>BIRT>Element Names. 2.Set DataSource, DataSet and TextData default name. 3.Add a data source, data set and dynamic text and find that their default names are not displayed.
2005-11-29 21:03:01
1,133,320,000
closed fixed
1d02070
1,134,030,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/newelement/DesignElementFactory.java
Birt
3,958
119,220
Bug 119220 Image in library can't display properly when it is imported in a report design.
Description: Image in library can't display properly when it is imported in a report design. Steps to reproduce: 1. Add an image in a library. 2. Use this library in a report design. 3. Drag the image from library explorer into layout view. 4. The image is marked invalid.
2005-12-05 04:20:21
1,133,770,000
closed fixed
7ef4314
1,134,030,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/ImageHandle.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/parser/IncludedLibrariesStructureListState.java
Birt
3,959
114,903
Bug 114903 Default values are not shown in Show Report Parameters' dialog
Description: Default values are not shown in Show Report Parameters' dialog Steps to reproduce: 1. Create several report parameters, only set default value for them. 2. Drag them to Layout 3. Preview and click Show Report Parameters button. Expected result: Default values are shown in value box, so I can modify the parameter which I want to change. Actual result: In Enter Parameters dialog, all values were empty, I just wanted to modify one parameter and found that I had to input all values.
2005-11-03 06:59:29
1,131,020,000
closed fixed
6fb13bb
1,134,030,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/CascadingParametersDialog.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java
Birt
3,960
119,807
Bug 119807 Repeat header doesn't work in birt pdf emitter.
Description: Repeat header doesn't work in birt pdf emitter. Steps to reproduce: 1. New a report and insert a table containing data more than one page. 2. Preview in pdf through birt pdf emitter. 3. Change table repeatHeader to false and preview in pdf again. Expected result: Repeat header property works. Actual result: Table header wasn't repeated no matter repeatHeader was set to true or false.
2005-12-08 01:01:55
1,134,020,000
closed fixed
55a8788
1,134,030,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/TableItemExecutor.java
Birt
3,961
119,398
Bug 119398 Using RenderTask to render pdf file but the master page information lost.
Description: Using RenderTask to render pdf file but the master page information lost. Steps to reproduce: 1. Generate attached case1.rptdesign to report document 2. Using RenderTask to render report document to pdf file. Expected result: Master Page contents show in pdf file. Actual result: In generated pdf file, I saw "NO DATA FOUND!!!" instead of master page contents
2005-12-06 07:33:57
1,133,870,000
closed fixed
209b603
1,134,020,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/engine/value/css/BorderWidthManager.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/executor/ReportItemExecutor.java
Birt
3,962
118,644
Bug 118644 Hint for Date Time Parameters
The hint you give for date time parameters (Please enter date ... pattern: MM/DD/YYYY ....) is only true if the date is unformatted. If you apply a format, you must enter it according to it. So it's quite confusing!
2005-11-30 10:33:41
1,133,360,000
resolved fixed
309b028
1,133,940,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java
Birt
3,963
109,573
Bug 109573 Focus in outline view can't be synchronized with focus in layout view when multi-select rows in a grid.
Description: Focus in outline view can't be synchronized with focus in layout view when multi-select rows in a grid. Steps to reproduce: 1. Select two rows in a grid in outline view. 2. Only one row is focused in layout view.
2005-09-15 04:07:10
1,126,770,000
closed fixed
734b746
1,133,940,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/parts/GraphicalEditorWithFlyoutPalette.java
Birt
3,964
118,784
Bug 118784 Relative path cannot be used in report property for drill-through link.
Description: Relative path cannot be used in report property for drill-through link. Steps to reproduce: 1. New a report as report1, insert a label and define a bookmark on it. 2. New a report as report2, insert a label and define a drill-through link, input report1 name in report property but got warning about invalid report design. Expected result: Relative path can be used here. Actual result: It is not recognized.
2005-12-01 04:09:55
1,133,430,000
closed fixed
0597c8f
1,133,940,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/HyperlinkBuilder.java
Birt
3,965
119,550
Bug 119550 Default Value of Named Expression can't be saved in design file
New a report, set named expression in the report property editor add a named expression and set the default value add a report item, say table, to the layout set the named expression of the report item add a named expression and set hte default value save the report close the report and reopen, and there is no default named expression value displayed. open report design file with a text editor, there is no default value associate with the named expression
2005-12-06 21:44:05
1,133,920,000
closed fixed
7d76875
1,133,930,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/core/UserPropertyDefn.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/parser/UserPropertyStructureState.java model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/writer/ModuleWriter.java
Birt
3,966
110,620
Bug 110620 Can Chart dialogs be made available ?
Standalone Development We are trying to develop a standalone application which will output a BIRT '.rptdesign' file. As creating charts in particular requires the user to choose or set a large number of parameters, would it be possible to add the chart creation dialog to the API so that other plugins or applications may use it and thus avoid re-inventing the wheel ? In truth all of the various dialogs, data source, data set etc would be useful additions to the API or pluggin set for anyone embedding BIRT into their own project. Regards, Brian Compston
2005-09-26 11:47:00
1,127,750,000
resolved fixed
df749af
1,133,920,000
chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/TaskSelectType.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/data/SelectDataDynamicArea.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/format/series/SeriesYSheetImpl.java chart/org.eclipse.birt.chart.ui/src/org/eclipse/birt/chart/ui/swt/wizard/ChartWizardContext.java core/org.eclipse.birt.core.ui/src/org/eclipse/birt/core/ui/frameworks/errordisplay/ErrorDialog.java core/org.eclipse.birt.core.ui/src/org/eclipse/birt/core/ui/frameworks/taskwizard/TasksManager.java core/org.eclipse.birt.core.ui/src/org/eclipse/birt/core/ui/frameworks/taskwizard/WizardBase.java core/org.eclipse.birt.core.ui/src/org/eclipse/birt/core/ui/utils/UIHelper.java
Birt
3,967
118,487
Bug 118487 Report iTem tempalte value should provide the option to revert.
The Report Tempalte spec mockups expect the following. UI needs to support the following 2 options as described in the Report Template spec mockups. Please refer to it. - Revert to Template Item ( call DE API DesignElementHandle.revertToTemplateItem ) - Revert to Report Item ( call DE API DesignElementHandle.reveretToReportItem or TransformToReportItem() ) to create a report item and get rid of the template definition )
2005-11-29 14:26:58
1,133,290,000
resolved fixed
5aac4a1
1,133,860,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/actions/RevertToTemplatePartAction.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/providers/SchematicContextMenuProvider.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/DefaultNodeProvider.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/IRequestConstants.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/actions/RevertToReportItemAction.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/views/actions/RevertToTemplateAction.java
Birt
3,968
119,225
Bug 119225 Theme is not found when selected from theme dropdown list in a report.
Description: Theme is not found when selected from theme dropdown list in a report. Steps to reproduce: 1. Use a library in a report. 2. Select a theme in the property editor. 3. Error message pops up "theme is not found". 4. If I add library name before the theme name like "library1.newtheme". It can work.
2005-12-05 04:47:36
1,133,780,000
closed fixed
46391ca
1,133,860,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/attributes/providers/ChoiceSetFactory.java
Birt
3,969
119,216
Bug 119216 Regression: Group can't be added in layout editor.
Description: Group can't be added in layout editor. Steps to reproduce: 1. Add a table. 2. Right click on the table and find that "insert group" is grayed out.
2005-12-05 04:08:06
1,133,770,000
closed fixed
41fabef
1,133,850,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/actions/InsertGroupActionFactory.java
Birt
3,970
118,998
Bug 118998 Background image set in inline items doesn't show up in pdf generated using BIRT PDF emitter.
Description: Background image set in inline items doesn't show up in pdf generated using BIRT PDF emitter. Steps to reproduce: 1. run attached list-data-style-background(attribute).xml file to generate pdf file through birt pdf emitter. 2. view the inline data items with background image setting in pdf file. Expected result: Images show. Actual result: Images didn't show up.
2005-12-02 02:30:29
1,133,510,000
closed fixed
3bfeae7
1,133,840,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/engine/value/AbstractColorManager.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/engine/value/RGBColorValue.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/engine/value/css/LineHeightManager.java
Birt
3,971
110,566
Bug 110566 Wrong data set result returned when set an invalid filter expression row[0]
description: Wrong data set result returned when set an invalid filter expression row[0] steps to reproduce: 1. set a filter in data set with "row[0] equals to " 2. click on Preview tab. actual result: The first result record returned when preview expected result: As developer said that row[0] can only be generated after all the data were fetched. Row[0] can't be taken as filter expression. Then when set filter like "row[0] equals to 0". some relevant error message should pop up. Or just return null result set.
2005-09-26 03:44:09
1,127,720,000
resolved fixed
d9810d4
1,133,780,000
data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/FilterByRow.java
Birt
3,972
119,219
Bug 119219 Put the template publish to the template folder, system throws exception
Put the template publish to the template folder, system throws exception. Steps: 1.Create a template 2.Select "File-Publish To Template Folder" 3.Input name and image 4.Click "Finish" Expected Results: 1.Can be published Actual Results: 1.System throws exception java.lang.NullPointerException at org.eclipse.birt.report.designer.ui.actions.PublishPage.validate(PublishTemplateAction.java:439) at org.eclipse.birt.report.designer.ui.actions.PublishPage.access$000(PublishTemplateAction.java:231) at org.eclipse.birt.report.designer.ui.actions.PublishPage$1.modifyText(PublishTemplateAction.java:307) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:188) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:867) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:848) at org.eclipse.swt.widgets.Text.wmCommandChild(Text.java:2061) at org.eclipse.swt.widgets.Control.WM_COMMAND(Control.java:3164) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3041) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3706) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1580) at org.eclipse.swt.widgets.Text.callWindowProc(Text.java:131) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3123) at org.eclipse.swt.widgets.Text.windowProc(Text.java:1777) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3706) at org.eclipse.swt.internal.win32.OS.SetWindowTextW(Native Method) at org.eclipse.swt.internal.win32.OS.SetWindowText(OS.java:2355) at org.eclipse.swt.widgets.Text.setText(Text.java:1593) at org.eclipse.birt.report.designer.ui.actions.PublishPage$2.widgetSelected(PublishTemplateAction.java:328) 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:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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:84) 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:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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)
2005-12-05 04:19:19
1,133,770,000
closed fixed
65f562b
1,133,780,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java
Birt
3,973
119,124
Bug 119124 Something wrong with page number
Using latest engine api regenreate report. The last page of a 59 pages report is empty. The content of any 1 page report is always empty.
2005-12-02 16:18:04
1,133,560,000
closed fixed
2cddb11
1,133,770,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/IReportDocument.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ReportDocumentReader.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ReportDocumentWriter.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/data/DataEngineFactory.java
Birt
3,974
117,291
Bug 117291 Background properties in Master Page aren't supported in BIRT PDF emitter.
Description: Background properties in Master Page aren't supported in BIRT PDF emitter. Steps to reproduce: 1. Set background properties to Master Page 2. Preview in pdf. Expected result: Background properties work. Actual result: It doesn't work.
2005-11-21 05:13:45
1,132,570,000
closed fixed
33501b1
1,133,770,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/impl/PageContent.java
Birt
3,975
118,768
Bug 118768 [Regression]Drop a grid closely near the left ruler in Layout will cause exception.
Description: Drop a grid closely near the left ruler in Layout will cause exception. Steps to reproduce: 1.create a report 2.drop a grid closely near the left ruler or right side Expected result: No exception and dimension dialog appears. Actual Result: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:2942) at org.eclipse.swt.SWT.error(SWT.java:2865) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3057) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2716) 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.internal.ui.dialogs.BaseDialog.open(BaseDialog.java:145) at org.eclipse.birt.report.designer.internal.ui.palette.BasePaletteFactory$GridToolExtends.preHandleMouseUp(BasePaletteFactory.java:607) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportCreationTool.performCreation(ReportCreationTool.java:83) at org.eclipse.gef.tools.CreationTool.handleButtonUp(CreationTool.java:178) at org.eclipse.gef.tools.AbstractTool.mouseUp(AbstractTool.java:1053) at org.eclipse.gef.EditDomain.mouseUp(EditDomain.java:259) at org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseReleased(DomainEventDispatcher.java:374) at org.eclipse.draw2d.LightweightSystem$EventHandler.mouseUp(LightweightSystem.java:548) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:137) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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) Caused by: java.lang.NullPointerException at org.eclipse.gef.tools.TargetingTool.updateTargetUnderMouse(TargetingTool.java:376) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.tools.ReportCreationTool.handleMove(ReportCreationTool.java:298) at org.eclipse.gef.tools.TargetingTool.handleAutoexpose(TargetingTool.java:180) at org.eclipse.gef.tools.TargetingTool.doAutoexpose(TargetingTool.java:96) at org.eclipse.gef.tools.TargetingTool$QueuedAutoexpose.run(TargetingTool.java:285) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) ... 33 more
2005-12-01 01:54:59
1,133,420,000
closed fixed
0529e2b
1,133,760,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/tools/ReportCreationTool.java
Birt
3,976
118,750
Bug 118750 Insert group for table from library, system throws exception.
Insert group for table from library, system throws exception. Steps: 1.Insert a tabel from library 2.Insert group Actual Results: 1.System throws exception A Birt exception occurred. Plug-in Provider:Eclipse.org Plug-in Name:BIRT Model Plug-in ID:org.eclipse.birt.report.model Version:1.0.1 Error Code:Error.ContentException.STRUCTURE_CHANGE_FORBIDDEN Error Message:Element "report.Body[1]" is child element or a virtual element( inside the child ), can not change its structure. Expected Results: 1.Can be inserted group
2005-11-30 21:36:16
1,133,400,000
closed fixed
f20dffa
1,133,760,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/schematic/TableHandleAdapter.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/actions/InsertGroupActionFactory.java
Birt
3,977
119,132
Bug 119132 Remove the cheet sheet input box from the dialog
cheet sheet is more for advanced users. During the UI demo it was decided When a user tries to publish a template, the save dialog is displayed, remove the cheetsheet input box from the dialog.
2005-12-02 16:44:08
1,133,560,000
resolved fixed
dd60cac
1,133,750,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java
Birt
3,978
118,592
Bug 118592 Report error
please see attached design file.
2005-11-30 02:17:11
1,133,340,000
closed fixed
e16b3fb
1,133,530,000
data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/executor/cache/ResultObjectUtil.java data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ResultIterator.java
Birt
3,979
113,938
Bug 113938 Report is marked dirty when open/close cascading parameter dialog without doing any operation on it
description: Report is marked dirty when open/close cascading parameter dialog without doing any operation on it steps to reproduce: 1.new a cascading parameter group 2.save the reprot 3.double click the cascading parameter to bring out edit box 4.click OK to close edit box actual result: Report has been marked dirty expected result: No dirty marked for that no operations done in edit parameter dialog
2005-10-27 03:20:16
1,130,400,000
resolved fixed
32c3312
1,133,510,000
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/ui/dialogs/CascadingParametersDialog.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionProvider.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java
Birt
3,980
116,377
Bug 116377 container's data set should be list in dynamic image expression builder
description: container's data set should be list in dynamic image expression builder steps to reproduce: 1. drag an image to one cell of table 2. choose dynamic image 3. click on expression builder.... actual result: no data set list in the expression builder expected result: container's data set should be list in dynamic image expression builder
2005-11-15 01:08:49
1,132,030,000
resolved fixed
8881b55
1,133,510,000
UI/org.eclipse.birt.report.designer.ui.lib/src/org/eclipse/birt/report/designer/internal/lib/views/outline/dnd/LibraryDropListener.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ImageEditPart.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/extensions/GuiExtensionManager.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/providers/SchematicContextMenuProvider.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/BasePaletteFactory.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/DesignerPaletteFactory.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/MasterPagePaletteFactory.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/palette/ReportTemplateTransferDropTargetListener.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ImageBuilder.java
Birt
3,981
117,815
Bug 117815 If I apply a style to a table first then apply another style to a table row, select this row, related style is not selected.
Description:If I apply a style to a table first then apply another style to a table row, select this row, related style is not selected. Steps to reproduce: 1. Create a table and apply a style to it. 2. Select a table row and apply another style to the table row. 3. Select this row and find that the related style is not selected. But it has worked.
2005-11-23 21:18:37
1,132,800,000
closed fixed
9def3ca
1,133,510,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/ApplyStyleMenuAction.java
Birt
3,982
118,588
Bug 118588 Java Debug -> Inspect and Display
steps to reproduce: - start Java Debug - insert some breakpoints in the Java class - switch to the runtime workbench, add a label, and map it to the Java class - preview in html expected behavior - selected variables can be evaluated. actual behavior - an error message is printed saying that the expression cannot be evaluated.
2005-11-30 01:42:25
1,133,330,000
closed fixed
99b2da9
1,133,510,000
UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/internal/ui/launcher/util/WorkspaceClassPathFinder.java UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/ui/launcher/ReportLaunchConfigurationDelegate.java
Birt
3,983
118,738
Bug 118738 can't preview meter chart with grouping
Try to preview the following report with a meter chart group on the Y series, it fails. It used to work before, this is a regression. An exception is thrown org.eclipse.birt.chart.exception.ChartException: Can not plot meter series with null or non-numeric datapoint. at org.eclipse.birt.chart.render.DialRenderer.<init>(DialRenderer.java:132) at org.eclipse.birt.chart.render.Dial.compute(Dial.java:98) at org.eclipse.birt.chart.factory.Generator.build(Generator.java:759)
2005-11-30 19:09:32
1,133,400,000
closed fixed
3d424ff
1,133,500,000
chart/org.eclipse.birt.chart.device.extension/src/org/eclipse/birt/chart/device/image/JavaxImageIOWriter.java
Birt
3,984
117,453
Bug 117453 Property Editor for chart report item: deferred
Property Editor for chart report item(BPS16): deferred
2005-11-22 04:34:24
1,132,650,000
closed fixed
05acc2d
1,133,500,000
UI/org.eclipse.birt.report.designer.tests/src/org/eclipse/birt/report/designer/tests/example/matrix/PropertyTabUITest.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/extensions/IPropertyTabUI.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/extensions/PropertyTabUIAdapter.java chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/ChartElementCommandImpl.java chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/ChartReportItemFactoryImpl.java chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/ChartReportItemImpl.java chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/ChartSimplePropertyCommandImpl.java chart/org.eclipse.birt.chart.reportitem/src/org/eclipse/birt/chart/reportitem/i18n/Messages.java
Birt
3,985
117,381
Bug 117381 Support multiple emitters foir same output format using emitter ID
BIRT now has two emitters that can support PDF format. An fo emitter and a PDF emitter. BIRT should provide API for host (viewer) to choose which emitter to use. The proposed solution is that in IRenderTask, a method setEmitterID() is supported. Internally, BIRT should keep a list of (format, emitters). If setEmitterID() is not called, and there are multiple emitters for a specific format, engine will arbitrarily pick one emitter; otherwise, engine should use the emitter name specified; if the specified emitter is not available for whatever reasons, engine should throw "format not supported" exception, even if there is another emitter that supports the format. The APi change is already put into IRenderTask. Implementation class needs to be enhanced. Please also investigate whether the IRunAndRenderTask can support setEmitterID(). For BIRT 2.0, viewer should be setting the fo emitter ID for RunAndRenderTask, and pdf emitter id for RenderTask.
2005-11-21 17:05:36
1,132,610,000
resolved fixed
1d8d582
1,133,500,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/HTMLServerImageHandler.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/ReportEngineHelper.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/content/impl/PageContent.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/dom/AreaStyle.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/css/engine/value/css/VerticalAlignManager.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/extension/internal/ExtensionManager.java
Birt
3,986
118,351
Bug 118351 Predefine style in library cannot refresh in layout
Details: Predefine style in library cannot refresh in layout Step: 1.New a library and create two themes and two label predefine style with yellow and green background color. Named theme1 and theme2, style1 and style2. 2.Open a report design and insert a label. Actual result: No matter what theme is selected, the background color has not been changed in layout. Expected result: Select a theme, background color of label in layout is changed.
2005-11-28 22:34:52
1,133,240,000
closed fixed
24637ec
1,133,500,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/ReportDesignEditPart.java
Birt
3,987
117,415
Bug 117415 Focus is lost when publishing a template to a folder
Description: Focus is lost when publishing a template to a folder. Steps to reproduce: 1. After creating a template file, Select File>Publish to template folder. 2. "Publish to template folder" dialog pops up and no cursor is focused on.
2005-11-21 22:01:28
1,132,630,000
closed fixed
601718d
1,133,500,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java
Birt
3,988
116,829
Bug 116829 Label height doesn't change with label font modification.
Description: Label font size doesn't change right away it is modified. Steps to reproduce: 1. Add a label and edit its font size as "18 points". 2. Label height is not changed right after setting in UI. 3. Change label content, its height can be justified with the font size.
2005-11-17 04:04:48
1,132,220,000
closed fixed
43b17d6
1,133,500,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/editors/schematic/editparts/LabelEditPart.java
Birt
3,989
117,615
Bug 117615 ODA Consumer should handle Unsupported exception of oda.IQuery.GetParameterMetaData()
If an ODA driver is not capable of providing the metadata of a query's parameters, it may throw an UnsupportedOperationException or return null in its IQuery.GetParameterMetaData() method implementation. These 2 different types of response have no functional difference from the BIRT consumer perspective. Either way, it means that an ODA driver has no parameter metadata, and it is up to an user to manually define the metadata via the BIRT Data Set Editor. Therefore, the BIRT Data Engine odaconsumer should encapsulate the differences to make it easier for other BIRT components to handle. In other words, the odaconsumer should catch the UnsupportedOperationException from IQuery.GetParameterMetaData(), and instead returns a null parameter metadata to its caller. This way, its caller will only need to check for null parameter metadata to proceed. Note that an ODA driver may support the use of parameters, but yet not capable of providing metadata on the parameters. Thus, returning a null parameter metadata is independent of whether an ODA driver supports the use of query parameters at run-time, specified via the oda.IDataSetMetaData interface.
2005-11-22 21:00:29
1,132,710,000
resolved fixed
266ac53
1,133,500,000
data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/odaconsumer/PreparedStatement.java
Birt
3,990
118,748
Bug 118748 Smoke: Publish template failed in chinese locale
Description: When publish a template in chinese locale, the default directory is:"d:/buildtesting/Eclipse3.1-1201/plugins/org.eclipse.birt.report.designer.ui_1.0.1/IA/". The template could not be publish to that directory. When user change the default directory to custom directory, it seems that the template will still be published to the default directory. This problem occurs in english and other language locale.
2005-11-30 21:27:34
1,133,400,000
closed fixed
0ad18b6
1,133,410,000
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 UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/preferences/TemplatePreferencePage.java
Birt
3,991
118,573
Bug 118573 Smoke Test: Report can't be created in RCP build.
Description: Report can't be created in RCP build. Steps to reproduce: 1. Create a new report in RCP build. 2. NullPointerException is thrown out. java.lang.NullPointerException at java.util.Hashtable.put(Unknown Source) at java.util.Properties.setProperty(Unknown Source) at java.lang.System.setProperty(Unknown Source) at org.eclipse.birt.report.viewer.utilities.WebappAccessor.start(Unknown Source) at org.eclipse.birt.report.viewer.utilities.WebViewer.startWebApp(Unknown Source) at org.eclipse.birt.report.viewer.utilities.WebViewer.startup(Unknown Source) at org.eclipse.birt.report.designer.internal.ui.editors.preview.PreviewEditor.createPartControl(PreviewEditor.java:364) at org.eclipse.ui.part.MultiPageEditorPart.addPage(MultiPageEditorPart.java:155) at org.eclipse.ui.forms.editor.FormEditor.addPage(FormEditor.java:299) at org.eclipse.ui.part.MultiPageEditorPart.addPage(MultiPageEditorPart.java:132) at org.eclipse.ui.forms.editor.FormEditor.addPage(FormEditor.java:282) at org.eclipse.birt.report.designer.internal.ui.editors.parts.AbstractMultiPageLayoutEditor.createPreviewPage(AbstractMultiPageLayoutEditor.java:839) at org.eclipse.birt.report.designer.internal.ui.editors.parts.AbstractMultiPageLayoutEditor.addPages(AbstractMultiPageLayoutEditor.java:820) at org.eclipse.ui.forms.editor.FormEditor.createPages(FormEditor.java:133) at org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:241) at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:585) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:365) 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.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.add(PartStack.java:442) at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:109) at org.eclipse.ui.internal.EditorSashContainer.addEditor(EditorSashContainer.java:60) at org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:212) at org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:202) at org.eclipse.ui.internal.EditorManager.createEditorTab(EditorManager.java:753) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:665) at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:628) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2323) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2258) at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:2250) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2236) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2231) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2212) at org.eclipse.birt.report.designer.ui.internal.rcp.wizards.NewReportWizard$2.run(NewReportWizard.java:284) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3057) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2716) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:153) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:303) at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:830) at org.eclipse.birt.report.designer.ui.internal.rcp.wizards.NewReportWizard.performFinish(NewReportWizard.java:210) 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:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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.internal.rcp.actions.NewReportAction.run(NewReportAction.java:58) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) 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:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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.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)
2005-11-29 23:55:51
1,133,330,000
closed fixed
fdbf836
1,133,330,000
viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/WebappAccessor.java
Birt
3,992
118,352
Bug 118352 Smoke Test: RCP build doesn't work.
Description: RCP build doesn't work. Steps to reproduce: 1. Run RCP BIRT.EXE. 2. Error occurred.
2005-11-28 22:40:23
1,133,240,000
closed fixed
a0f8f97
1,133,310,000
UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/internal/ui/launcher/DebugStartupClass.java UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/internal/ui/launcher/util/WorkspaceClassPathFinder.java UI/org.eclipse.birt.report.debug.ui/src/org/eclipse/birt/report/debug/ui/launcher/ReportLaunchConfigurationDelegate.java viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/IWorkspaceClasspathFinder.java viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/WebappAccessor.java viewer/org.eclipse.birt.report.viewer/src/org/eclipse/birt/report/viewer/utilities/WorkspaceClasspathManager.java
Birt
3,993
109,641
Bug 109641 Stacked bar chart fails with missing data point
To reproduce, create a flat file .csv data source with the following data: Year, City, Population 1980, Chicago,2783726 1980, New York,7322564 1990, Los Angeles,4694820 1990, Chicago,3196016 1990, New York,8008278 2000, Los Angeles,6819951 2000, Chicago,2569121 2000, New York,8085742 This is the data used in the help example, except that the LA population for 1980 has been removed. Create a dataset and stacked or side-by-side bar chart using this dataset. The following error is generated: Error0 : Error.ExtendedItemRenderingError(1 time)detail: There are problems(s) rendering Chart extended item .$NO-RB$ Mismatch (3!=2) in dataset count found in stacked runtime seriesMismatch (3!=2) in dataset count found in stacked runtime series It is not uncommon to have one or more data points missing from a series - the chart should allow missing values.
2005-09-15 13:39:05
1,126,810,000
closed fixed
182827f
1,133,230,000
chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/computation/withoutaxes/SeriesRenderingHints.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/type/AreaChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/type/BarChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/type/LineChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/type/MeterChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/type/PieChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/type/ScatterChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/type/StockChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/TaskFormatChart.java chart/org.eclipse.birt.chart.ui.extension/src/org/eclipse/birt/chart/ui/swt/wizard/TaskSelectData.java chart/org.eclipse.birt.chart.ui/src/org/eclipse/birt/chart/ui/util/ChartUIUtil.java
Birt
3,994
118,003
Bug 118003 [Regression]NullPointException when run attached file about style inheritance.
Description: NullPointException when run attached file about style inheritance. Steps to reproduce: 1. run attached StyleInherited-test23_27.xml file Expected result: No exception. Result: NIO: java.lang.NullPointerException org.eclipse.birt.report.engine.api.EngineException: Error happened while running the report at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:199) at org.eclipse.birt.report.engine.api.ReportRunner.runAndRenderReport(ReportRunner.java:231) at org.eclipse.birt.report.engine.api.ReportRunner.execute(ReportRunner.java:157) at org.eclipse.birt.report.engine.api.ReportRunner.main(ReportRunner.java:129) Caused by: java.lang.NullPointerException at org.eclipse.birt.report.engine.ir.TextItemDesign.getExpressions(TextItemDesign.java:57) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.visitTextItem(ReportQueryBuilder.java:456) at org.eclipse.birt.report.engine.ir.TextItemDesign.accept(TextItemDesign.java:115) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.handleCell(ReportQueryBuilder.java:782) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.handleRow(ReportQueryBuilder.java:770) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.visitGridItem(ReportQueryBuilder.java:261) at org.eclipse.birt.report.engine.ir.GridItemDesign.accept(GridItemDesign.java:117) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder$QueryBuilderVisitor.buildQuery(ReportQueryBuilder.java:187) at org.eclipse.birt.report.engine.data.dte.ReportQueryBuilder.build(ReportQueryBuilder.java:114) at org.eclipse.birt.report.engine.data.dte.DteDataEngine.prepare(DteDataEngine.java:164) at org.eclipse.birt.report.engine.executor.ReportExecutor.execute(ReportExecutor.java:138) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:193) ... 3 more
2005-11-25 01:21:07
1,132,900,000
closed fixed
6a3e102
1,133,160,000
engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/impl/DataContent.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/content/impl/LabelContent.java engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/ir/TextItemDesign.java
Birt
3,995
117,645
Bug 117645 "element, struct, structref" is not supported for a property type.
Description: "element, struct, structref" is not supported for a property type. Steps to reproduce: 1. Add a user property. 2. "element, struct, structref" is not supported for a property type.
2005-11-23 01:43:04
1,132,730,000
closed fixed
6552a3d
1,132,900,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/UserPropertyBuilder.java
Birt
3,996
117,651
Bug 117651 The capitalization of the property type is inconsistent.
Description: The capitalization of the property type is inconsistent. Steps to reproduce: 1. Create a user property. 2. Set a name and its type. 3. Notice that the first character of some types are uppercase and another ones are lowercase.
2005-11-23 01:52:35
1,132,730,000
closed fixed
d469872
1,132,900,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/UserPropertyBuilder.java
Birt
3,997
117,977
Bug 117977 Exception is thrown out when editting data set in library outline.
Description: Exception is thrown out when editting data set in library outline. Steps to reproduce: 1. Create a data source and data set in library file. 2. Edit the data set in library outline view. 3. Library outline is not refreshed right away and when clicking on this data set, exception is thrown out. java.lang.ClassCastException: org.eclipse.birt.report.designer.core.model.views.data.DataSetItemModel at org.eclipse.birt.report.designer.core.model.LibraryHandleAdapter.setCurrentEditorModel(LibraryHandleAdapter.java:96) at org.eclipse.birt.report.designer.internal.lib.commands.SetCurrentEditModelCommand.execute(SetCurrentEditModelCommand.java:39) at org.eclipse.birt.report.designer.internal.lib.editors.LibraryDesigner.handleSelectionChange(LibraryDesigner.java:94) at org.eclipse.birt.report.designer.internal.ui.editors.parts.GraphicalEditorWithFlyoutPalette.performRequest(GraphicalEditorWithFlyoutPalette.java:732) at org.eclipse.birt.report.designer.internal.ui.editors.schematic.AbstractReportDesigner.performRequest(AbstractReportDesigner.java:586) at org.eclipse.birt.report.designer.core.util.mediator.ReportMediator.notifyRequest(ReportMediator.java:121) at org.eclipse.birt.report.designer.internal.ui.views.NonGEFSynchronizerWithTreeView.fireSelectionChanged(NonGEFSynchronizerWithTreeView.java:130) at org.eclipse.birt.report.designer.internal.ui.views.NonGEFSynchronizerWithTreeView.treeSelect(NonGEFSynchronizerWithTreeView.java:108) at org.eclipse.birt.report.designer.internal.ui.views.NonGEFSynchronizerWithTreeView$1.selectionChanged(NonGEFSynchronizerWithTreeView.java:157) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:162) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044) at org.eclipse.core.runtime.Platform.run(Platform.java:783) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:160) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:1784) at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:1027) at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:1053) at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:209) at org.eclipse.jface.util.OpenStrategy.access$3(OpenStrategy.java:204) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:364) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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)
2005-11-24 21:17:46
1,132,890,000
closed fixed
c9ac292
1,132,890,000
UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/LibRootModel.java UI/org.eclipse.birt.report.designer.core/src/org/eclipse/birt/report/designer/core/model/LibraryHandleAdapter.java
Birt
3,998
117,872
Bug 117872 Exception thrown out when add a filter in chart with Top n/Top Percent n/Bottom percent n
details Exception thrown out when add a filter in chart with Top n/Top Percent n/Bottom percent n steps to reproduce: 1. create a data set which contains a filter 2. bind data set to a chart 3. add a filter in chart builder with Top n/Top percent n/bottom percent n actual result Exception thrown out when add a filter in chart with Top n/Top Percent n/Bottom percent n exception stack trace: t: org.eclipse.birt.chart.ui.util.ChartUIUtil$1.evaluate(ChartUIUtil.java:324) org.eclipse.birt.chart.internal.factory.DataProcessor.mapToChartResultSet(DataProcessor.java:114) org.eclipse.birt.chart.factory.Generator.bindData(Generator.java:488) org.eclipse.birt.chart.ui.util.ChartUIUtil.doLivePreview(ChartUIUtil.java:354) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.doLivePreview(TaskSelectData.java:1038) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.widgetSelected(TaskSelectData.java:590) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) org.eclipse.birt.core.ui.frameworks.taskwizard.WizardBase.open(WizardBase.java:169) org.eclipse.birt.chart.reportitem.ChartReportItemBuilderImpl.open(ChartReportItemBuilderImpl.java:179) org.eclipse.birt.report.designer.internal.ui.extension.ExtendedEditPart.performDirectEdit(ExtendedEditPart.java:139) org.eclipse.birt.report.designer.internal.ui.extension.ExtendedEditPart.performRequest(ExtendedEditPart.java:168) org.eclipse.gef.tools.SelectEditPartTracker.performOpen(SelectEditPartTracker.java:187) org.eclipse.gef.tools.SelectEditPartTracker.handleDoubleClick(SelectEditPartTracker.java:129) org.eclipse.gef.tools.AbstractTool.mouseDoubleClick(AbstractTool.java:944) org.eclipse.gef.tools.SelectionTool.mouseDoubleClick(SelectionTool.java:502) org.eclipse.gef.EditDomain.mouseDoubleClick(EditDomain.java:204) org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseDoubleClicked(DomainEventDispatcher.java:285) org.eclipse.draw2d.LightweightSystem$EventHandler.mouseDoubleClick(LightweightSystem.java:518) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:141) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699) org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663) org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367) org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:324) org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) org.eclipse.core.launcher.Main.basicRun(Main.java:278) org.eclipse.core.launcher.Main.run(Main.java:973) org.eclipse.core.launcher.Main.main(Main.java:948) Caused By:$NO-RB$ No value returned. Please specify a valid dataset. org.eclipse.birt.chart.ui.util.ChartUIUtil$1.evaluate(ChartUIUtil.java:324) org.eclipse.birt.chart.internal.factory.DataProcessor.mapToChartResultSet(DataProcessor.java:114) org.eclipse.birt.chart.factory.Generator.bindData(Generator.java:488) org.eclipse.birt.chart.ui.util.ChartUIUtil.doLivePreview(ChartUIUtil.java:354) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.doLivePreview(TaskSelectData.java:1038) org.eclipse.birt.chart.ui.swt.wizard.TaskSelectData.widgetSelected(TaskSelectData.java:590) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) org.eclipse.birt.core.ui.frameworks.taskwizard.WizardBase.open(WizardBase.java:169) org.eclipse.birt.chart.reportitem.ChartReportItemBuilderImpl.open(ChartReportItemBuilderImpl.java:179) org.eclipse.birt.report.designer.internal.ui.extension.ExtendedEditPart.performDirectEdit(ExtendedEditPart.java:139) org.eclipse.birt.report.designer.internal.ui.extension.ExtendedEditPart.performRequest(ExtendedEditPart.java:168) org.eclipse.gef.tools.SelectEditPartTracker.performOpen(SelectEditPartTracker.java:187) org.eclipse.gef.tools.SelectEditPartTracker.handleDoubleClick(SelectEditPartTracker.java:129) org.eclipse.gef.tools.AbstractTool.mouseDoubleClick(AbstractTool.java:944) org.eclipse.gef.tools.SelectionTool.mouseDoubleClick(SelectionTool.java:502) org.eclipse.gef.EditDomain.mouseDoubleClick(EditDomain.java:204) org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseDoubleClicked(DomainEventDispatcher.java:285) org.eclipse.draw2d.LightweightSystem$EventHandler.mouseDoubleClick(LightweightSystem.java:518) org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:141) org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699) org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663) org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367) org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:324) org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) org.eclipse.core.launcher.Main.basicRun(Main.java:278) org.eclipse.core.launcher.Main.run(Main.java:973) org.eclipse.core.launcher.Main.main(Main.ja
2005-11-24 05:34:34
1,132,830,000
resolved fixed
2859788
1,132,890,000
data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/PreparedQuery.java
Birt
3,999
114,905
Bug 114905 The default value set in list box of report parameter lost after modify the default value.
Description: The default value set in list box of report parameter lost after modify the default value. Steps to reproduce: 1. New a report parameter, set Display type to List Box. 2. Input three values: "aa", "bb", "cc", set "aa" as default and click OK 3. Reopen the Edit Parameter dialog, modify "aa" to "aaa" and click OK directly 4. Reopen the Edit Parameter dialog 5. Change the Display type to Combo Box Expected result: "aaa" is the default value. After step 5, OK button should be gray. Actual result: No default value was set. After step 5, OK button still can be used.
2005-11-03 07:33:26
1,131,020,000
closed fixed
d4186ea
1,132,830,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java
Birt
4,000
115,938
Bug 115938 Issues in the Library feature
The following issues are noticed - Cannot add report items to container report items in layout of a library As a result user cannot add labels or text items to a grid/table item. - In the library spec, there is no plan for separate library perspective, but the actuate implementation has a separate library perspective. - If a report design does not include a library, and if a user tries to drag a report item from the library exploer to report design, the user should be provided the option to include hte library.
2005-11-10 19:12:36
1,131,670,000
resolved fixed
a22754a
1,132,830,000
UI/org.eclipse.birt.report.designer.ui.lib.explorer/src/org/eclipse/birt/report/designer/ui/lib/explorer/LibraryExplorerView.java
Birt
4,001
117,839
Bug 117839 NPE thrown out when the cascading parameter reference an empty xml data set
description: NPE thrown out when the cascading parameter reference an empty xml data set steps to reproduce: 1. create a xml data set which result set is empty 2. create a cascading parameter to bind the xml data set 3. insert a cascading parameter to layout view 4. preview actual result: NPE thrown out exception stack trace: java.lang.NullPointerException at org.eclipse.birt.data.engine.impl.ResultIterator.groupKeyValuesEqual(ResultIterator.java:919) at org.eclipse.birt.data.engine.impl.ResultIterator.findGroup(ResultIterator.java:891) at org.eclipse.birt.report.engine.api.impl.GetParameterDefinitionTask.getSelectionListForCascadingGroup(GetParameterDefinitionTask.java:639) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.getSelectionChoice(InputParameterDialog.java:645) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.buildChoiceList(InputParameterDialog.java:552) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.rendParameterComboBox(InputParameterDialog.java:506) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.rendScalarParameter(InputParameterDialog.java:357) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.renderParameterWidgets(InputParameterDialog.java:219) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.renderParameterWidgets(InputParameterDialog.java:214) at org.eclipse.birt.report.designer.internal.ui.dialogs.InputParameterDialog.createDialogArea(InputParameterDialog.java:173) at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:687) at org.eclipse.jface.window.Window.create(Window.java:418) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:996) at org.eclipse.birt.report.designer.internal.ui.editors.parts.AbstractMultiPageLayoutEditor.prePreview(AbstractMultiPageLayoutEditor.java:1104) at org.eclipse.birt.report.designer.internal.ui.editors.parts.AbstractMultiPageLayoutEditor.pageChange(AbstractMultiPageLayoutEditor.java:954) at org.eclipse.birt.report.designer.ui.editors.ReportEditor.pageChange(ReportEditor.java:170) at org.eclipse.ui.part.MultiPageEditorPart$2.widgetSelected(MultiPageEditorPart.java:200) 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:843) 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.notifyListeners(Widget.java:660) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3138) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1922) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:288) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713) 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)
2005-11-24 01:33:35
1,132,810,000
closed fixed
53393bb
1,132,820,000
data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/ResultIterator.java
Birt
4,002
117,620
Bug 117620 Parameter defined in a library doesn't work in a report design.
Description: Parameter defined in a library doesn't work in a report design. Steps to reproduce: 1. Add a static parameter and set default value in a library file. 2. Include this library in a report design. 3. Drag this parameter from library explorer view into layout editor. 4. Preview and error message appears, said that "Error0 : Failed to evaluate params["NewParameter"] ( 1 time(s) ) detail : Failed to evaluate params["NewParameter"] NewParameter not found"
2005-11-22 21:34:13
1,132,710,000
closed fixed
becd140
1,132,820,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dnd/InsertInLayoutUtil.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ParameterDialog.java
Birt
4,003
116,773
Bug 116773 In group builder, data set columns are not listed in "sorting" and "filters" expression drop down list.
Description: In group builder, data set columns are not listed in "sorting" and "filters" expression drop down list. Steps to reproduce: 1. Add a table and bind it to a data set, edit it. 2. Add a group, group builder pops up. 3. In "sorting" tab, pull down expression list. 4. Data set columns are not listed. 5. The same problem occurs in "filters".
2005-11-16 21:27:28
1,132,190,000
closed fixed
6ff1fdf
1,132,820,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/attributes/providers/FilterModelProvider.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/views/attributes/providers/SortingModelProvider.java
Birt
4,004
116,358
Bug 116358 Data source defined in library can't be used in report file.
Description:Data source defined in library can't be used in report file. Steps to reproduce: 1. Add a data source "ds1" and data set "dset1" in a library file. 2. Use this library in report design. 3. Create a data set related to "ds1" data source. Actual result: Error message "no datasource available" pops up.
2005-11-14 21:28:16
1,132,020,000
closed fixed
84c9a70
1,132,810,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/internal/ui/dialogs/UserPropertyBuilder.java
Birt
4,005
117,823
Bug 117823 User property values can't be set in properties view.
Description: User property values can't be set in properties view. Steps to reproduce: 1. Define a user property. 2. Open properties view, find this user property. 3. Its value can't be set.
2005-11-23 22:15:15
1,132,800,000
closed fixed
9179493
1,132,810,000
model/org.eclipse.birt.report.model/src/org/eclipse/birt/report/model/api/PropertyHandle.java
Birt
4,006
116,538
Bug 116538 missing some infopop hooks
New JSP Wizard - Select Template page jspw0010 New HTML Wizard - Select Template page htmlw0010 Add to Snippets Select Category dialog snip0080 JavaScript editor's Content Assist menu item js0000
2005-11-15 19:00:09
1,132,100,000
closed fixed
087d27c
1,132,810,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionBuilder.java UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/dialogs/ExpressionProvider.java
Birt
4,007
117,833
Bug 117833 Template image file type is not listed when publish a template to a folder.
Description: Template image file type is not listed when publish a template to a folder. Steps to reproduce: 1. Publish a template file to a folder. 2. When Setting template image, select an image file from file system. No file type is listed.
2005-11-24 00:31:37
1,132,810,000
closed fixed
46ffd45
1,132,810,000
UI/org.eclipse.birt.report.designer.ui/src/org/eclipse/birt/report/designer/ui/actions/PublishTemplateAction.java
Birt