<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-2267</id>
	<title>Nabble - Eclipse BIRT</title>
	<updated>2008-11-26T22:17:55Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Eclipse-BIRT-f2267.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Eclipse-BIRT-f2267.html" />
	<subtitle type="html">Eclipse Business Intelligence and Reporting Tools project. BIRT is an open source, Eclipse-based reporting system that integrates with your application to produce compelling reports for both web and PDF. Eclipse BIRT home is &lt;a href=&quot;http://www.eclipse.org/birt/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-20714101</id>
	<title>How to change the table name in reports at run time?</title>
	<published>2008-11-26T22:17:55Z</published>
	<updated>2008-11-26T22:17:55Z</updated>
	<author>
		<name>santhoshm</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;I have the fresh entry into this forum.
&lt;br&gt;&lt;br&gt;I am developing reports for SQL server agent. In my design, i need to support for all the databases. But 
&lt;br&gt;&lt;br&gt;some of table names are different in different databases. 
&lt;br&gt;&lt;br&gt;In one of my report I am trying to replace the table name based on the database connection. For example, in 
&lt;br&gt;&lt;br&gt;DB2 and SQL I am using the table namely &amp;quot;MS_SQL_Lock_Resource_Type_Summary&amp;quot;. But the table name is different 
&lt;br&gt;&lt;br&gt;in Oracle, i.e., &amp;quot;KOQLRTS&amp;quot;. 
&lt;br&gt;In run time the table name has to be replaced based on the connection to database, that is if i connected to 
&lt;br&gt;&lt;br&gt;Oracle the data should fetch from &amp;quot;KOQLRTS&amp;quot; table, if i connected to DB2 or SQL then the data should fetch 
&lt;br&gt;&lt;br&gt;from &amp;quot;MS_SQL_Lock_Resource_Type_Summary&amp;quot;.
&lt;br&gt;&lt;br&gt;Please help me to achieve this, using any sql query or java script.
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;Santhosh &lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Report-Designer---Dev-f2273.html&quot; embed=&quot;fixTarget[2273]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Report Designer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-change-the-table-name-in-reports-at-run-time--tp20714101p20714101.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20619002</id>
	<title>NoClassDefFoundError in BIRT Viewer when scripting</title>
	<published>2008-11-21T02:55:35Z</published>
	<updated>2008-11-21T02:55:35Z</updated>
	<author>
		<name>stanley.at</name>
	</author>
	<content type="html">We want to use BIRT with scripted sources based on the Spring 2.5 ApplicationContext of our application. We have solved successfuly the integration of BIRT ReportEngine into our application. 
&lt;br&gt;However, for report design we wanted to use BIRT in Eclipse. But when our ApplicationContext is offered to the BIRT in Eclipse about 20% of our services cause NoClassDefFoundError. The missed classes are in the same jars as classes used by other, successfully retrieved services. 
&lt;br&gt;Moving jars around in the directory tree did not help. Setting ContextClassLoader of the current Thread or setting of the ApplicationiClassLoader of the script's javascript Context to ApplicationContext's ClassLoader did not help although direct load of class with ApplicationContext's ClassLoader in script was successful. We tried to convert the service objects from Java to JS immediately after retrieval from ApplicationContext first with the Scope of the script, than with own, local Scope. It did not help. Than we exported BIRT-Viewer and ReportingEngine and made small web-application to exclude Eclipse. Id did not help either.
&lt;br&gt;Our conclusion is that the BIRT-Viewer causes the problem with class loading.
&lt;br&gt;Does anybody know solution to this problem?&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/NoClassDefFoundError-in-BIRT-Viewer-when-scripting-tp20619002p20619002.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20564844</id>
	<title>How to apply aggregation on aggregation in a table which has data grouped on a column?</title>
	<published>2008-11-18T09:54:46Z</published>
	<updated>2008-11-18T09:54:46Z</updated>
	<author>
		<name>KapsHere</name>
	</author>
	<content type="html">&lt;P&gt;
Hi,&lt;BR&gt;
&amp;nbsp; &lt;BR&gt;
I am designing a BIRT report using BIRT 2.3.1 using scripted data source. My BIRT report consists of table which contains the following columns: Frequency, FrequencyPercent, CumulativeFrequency, CumulativePercent. The columns stated above are dependent upon each other, e.g. FrequecencyPercent is based on Frequency, CumulativeFrequency is based on Frequency and CumulativePercent is based on FrequencyPercent/CumulativeFrequency.&lt;BR&gt;
&lt;BR&gt;
There are two scenarios to be dealt with:&lt;BR&gt;
1) No grouping of data. The entire data is placed in a one(1) table without any grouping.&lt;BR&gt;
2) The data is grouped by another data set output column.&lt;BR&gt;
&lt;BR&gt;
To calculate CumulativePercent, i am using an aggregate function on on FrequencyPercent column,, using the aggregation builder, and on FrequencyPercent column itself has been computed using the aggregation builder (lets call this 'aggregation on aggregation'). This works in scenario # 1 above, but in scenario # 2, the CumulativePercent column which has 'aggregation on aggregation', does not show any values.&lt;BR&gt;
&lt;BR&gt;
Any idea on why is this not working and how can i get it to work?&lt;BR&gt;
&lt;BR&gt;
Thanks,&lt;BR&gt;
Kapil
&lt;/P&gt;


&quot;There are&amp;nbsp;only 10&amp;nbsp;kinds of&amp;nbsp;people in&amp;nbsp;this world,&amp;nbsp;ones who&amp;nbsp;understand binary&amp;nbsp;and others&amp;nbsp;who dont.&quot;&lt;br&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;birt-report-designer-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20564844&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-report-designer-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-report-designer-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-report-designer-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Report-Designer---Dev-f2273.html&quot; embed=&quot;fixTarget[2273]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Report Designer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-apply-aggregation-on-aggregation-in-a-table-which-has-data-grouped-on-a-column--tp20564844p20564844.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20560939</id>
	<title>Welcome Mohamed El-Kholy as a new birt Committer</title>
	<published>2008-11-18T06:43:08Z</published>
	<updated>2008-11-18T06:43:08Z</updated>
	<author>
		<name>Wenbin He</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message marks the completion of all the legal
&lt;br&gt;paperwork and webmaster provisioning for Mohamed El-Kholy. Mohamed El-Kholy
&lt;br&gt;is a new full Committer on the birt project.
&lt;br&gt;&lt;br&gt;Welcome!
&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20560939&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Welcome-Mohamed-El-Kholy-as-a-new-birt-Committer-tp20560939p20560939.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20560827</id>
	<title>Welcome Yi Wang as a new birt Committer</title>
	<published>2008-11-18T06:37:03Z</published>
	<updated>2008-11-18T06:37:03Z</updated>
	<author>
		<name>portal on behalf of Yulin Wang</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message marks the completion of all the legal
&lt;br&gt;paperwork and webmaster provisioning for Yi Wang. Yi Wang is a new full
&lt;br&gt;Committer on the birt project.
&lt;br&gt;&lt;br&gt;Welcome!
&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20560827&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Welcome-Yi-Wang-as-a-new-birt-Committer-tp20560827p20560827.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20548455</id>
	<title>Dynamic Design of Layout</title>
	<published>2008-11-17T13:22:19Z</published>
	<updated>2008-11-22T05:55:07Z</updated>
	<author>
		<name>kinslayer2004</name>
	</author>
	<content type="html">I´m developing a hospital information system, one of the requirements is the capability of produce dynamic reports. The product must be able of let users design the report layout using an interface of the system , execute the report and show the results on multiple formats.
&lt;br&gt;&lt;br&gt;Is it possible using BIRT??
&lt;br&gt;&lt;br&gt;thanks &lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Report-Designer---Dev-f2273.html&quot; embed=&quot;fixTarget[2273]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Report Designer - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Dynamic-Design-of-Layout-tp20548455p20548455.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20539803</id>
	<title>New Eclipse BIRT Milestone Build Available for Download</title>
	<published>2008-11-17T05:54:48Z</published>
	<updated>2008-11-17T05:54:48Z</updated>
	<author>
		<name>Xiaoying Gu</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;BIRT Community,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-left:84.0pt;layout-grid-mode:char'&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-left:84.0pt;layout-grid-mode:char'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;The BIRT development team are pleased to let
you know that BIRT 2.5M3 &amp;nbsp;Build (build number: &lt;span style='color:black'&gt;20081114-1156&lt;/span&gt;)
is now available for download.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;2.5M3
build &amp;lt;&lt;span style='color:black'&gt;20081114-1156&lt;/span&gt;&amp;gt;can be downloaded
from the BIRT download page: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;&lt;a href=&quot;http://download.eclipse.org/birt/downloads/build.php?build=M-R1-2.5M3-200811141156&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.eclipse.org/birt/downloads/build.php?build=M-R1-2.5M3-200811141156&lt;/a&gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;As always, please provide your feedback
through the newsgroup or by reporting bugs through Bugzilla.&lt;/span&gt;&lt;span style='font-size:10.5pt;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:9.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:9.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Times New Roman&quot;,&quot;serif&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;Regards,&lt;/span&gt;&lt;span style='font-size:10.5pt'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='layout-grid-mode:char'&gt;&lt;span style='font-size:10.0pt;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;'&gt;BIRT Team&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20539803&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/New-Eclipse-BIRT-Milestone-Build-Available-for-Download-tp20539803p20539803.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20506636</id>
	<title>Robert Busby is out of the office.</title>
	<published>2008-11-14T11:07:42Z</published>
	<updated>2008-11-14T11:07:42Z</updated>
	<author>
		<name>Robert Busby</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body&gt;
&lt;p&gt;I will be out of the office starting  11/05/2008 and will not return until 11/20/2008.&lt;br&gt;
&lt;br&gt;
I will respond to your message when I return or you may contact Linda Robson at &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20506636&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lrobson@...&lt;/a&gt; for customer items&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;birt-news mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20506636&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-news@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-news&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-news&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---News-f2268.html&quot; embed=&quot;fixTarget[2268]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - News&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Robert-Busby-is-out-of-the-office.-tp20506636p20506636.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20501185</id>
	<title>Welcome Xingsheng Zhu as a new birt Committer</title>
	<published>2008-11-14T06:11:02Z</published>
	<updated>2008-11-14T06:11:02Z</updated>
	<author>
		<name>portal on behalf of Yulin Wang</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message marks the completion of all the legal
&lt;br&gt;paperwork and webmaster provisioning for Xingsheng Zhu. Xingsheng Zhu is a
&lt;br&gt;new full Committer on the birt project.
&lt;br&gt;&lt;br&gt;Welcome!
&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20501185&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Welcome-Xingsheng-Zhu-as-a-new-birt-Committer-tp20501185p20501185.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20501137</id>
	<title>Please check out stable build &lt;20081114-1156&gt; and response if it can be released as BIRT 2.5M3 Milestone Build</title>
	<published>2008-11-14T06:08:10Z</published>
	<updated>2008-11-14T06:08:10Z</updated>
	<author>
		<name>Xiaoying Gu</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;&lt;HTML DIR=ltr&gt;&lt;HEAD&gt;&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=gb2312&quot;&gt;&lt;/HEAD&gt;&lt;BODY&gt;
&lt;DIV dir=ltr id=idOWAReplyText61956&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;Fellow 
BIRT committers,&amp;nbsp;&lt;BR&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;Thanks 
for your great effort. &lt;?XML:NAMESPACE PREFIX = O /&gt;&lt;O:P&gt;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;COLOR: black&quot;&gt;&lt;O:P&gt;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;2.5.0 
Stable build &amp;lt;20081114-1156&amp;gt; has passed smoke tests, regression tests and 
acceptance tests. Project leads and PMC members please check out the stable 
build and response if it can be released as the BIRT 2.5.0 M3&amp;nbsp;Milestone 
Build. &lt;O:P&gt;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;&lt;O:P&gt;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;Stable 
Build &amp;lt;20081114-1156&amp;gt; can be downloaded from the BIRT download 
page:&lt;O:P&gt;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;&lt;A href=&quot;http://download.eclipse.org/birt/downloads/build.php?build=S-R1-2_5_0-S20081114-200811141156&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.eclipse.org/birt/downloads/build.php?build=S-R1-2_5_0-S20081114-200811141156&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;&lt;O:P&gt;&amp;nbsp;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;&lt;O:P&gt;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style=&quot;FONT-FAMILY: 'Arial','sans-serif'; COLOR: black; FONT-SIZE: 10pt&quot;&gt;Regards, 
&lt;BR&gt;BIRT Team &lt;/SPAN&gt;&lt;SPAN style=&quot;FONT-FAMILY: SimSun; COLOR: black; FONT-SIZE: 12pt&quot;&gt;&lt;O:P&gt;&lt;/O:P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;O:P&gt;&amp;nbsp;&lt;/O:P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20501137&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Please-check-out-stable-build-%3C20081114-1156%3E-and-response-if-it-can-be-released-as-BIRT-2.5M3-Milestone-Build-tp20501137p20501137.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20495489</id>
	<title>Report Layout</title>
	<published>2008-11-13T22:45:22Z</published>
	<updated>2008-11-13T22:45:22Z</updated>
	<author>
		<name>Prateek Sharma</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;Ive been writing a BIRT emitter by implementing the IContentEmitter interface.
&lt;br&gt;However now i need to improve the layout. Problem is that all the
&lt;br&gt;Icontent.getX() type methods all are returning for all the report
&lt;br&gt;elements.
&lt;br&gt;&lt;br&gt;How do i get the layout information? Looking at the PDF and HTML
&lt;br&gt;emitter, seems they have some layout engine etc but since im not
&lt;br&gt;getting the layout info, i cant do any sophisticated layouts.
&lt;br&gt;&lt;br&gt;Implementing IAreaVisitor doesnt help, as the methods never get called
&lt;br&gt;from the emitter methods.
&lt;br&gt;&lt;br&gt;How do i ensure that the emitter and the layoutemitter are 'tied' ?
&lt;br&gt;&lt;br&gt;Thanks so much!
&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20495489&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Report-Layout-tp20495489p20495489.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20495485</id>
	<title>Report Layout</title>
	<published>2008-11-13T22:45:07Z</published>
	<updated>2008-11-13T22:45:07Z</updated>
	<author>
		<name>Prateek Sharma</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;Ive been writing a BIRT emitter by implementing the IContentEmitter interface.
&lt;br&gt;However now i need to improve the layout. Problem is that all the
&lt;br&gt;Icontent.getX() type methods all are returning for all the report
&lt;br&gt;elements.
&lt;br&gt;&lt;br&gt;How do i get the layout information? Looking at the PDF and HTML
&lt;br&gt;emitter, seems they have some layout engine etc but since im not
&lt;br&gt;getting the layout info, i cant do any sophisticated layouts.
&lt;br&gt;&lt;br&gt;Implementing IAreaVisitor doesnt help, as the methods never get called
&lt;br&gt;from the emitter methods.
&lt;br&gt;&lt;br&gt;How do i ensure that the emitter and the layoutemitter are 'tied' ?
&lt;br&gt;&lt;br&gt;Thanks so much!
&lt;br&gt;_______________________________________________
&lt;br&gt;birt-news mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20495485&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-news@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-news&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-news&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---News-f2268.html&quot; embed=&quot;fixTarget[2268]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - News&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Report-Layout-tp20495485p20495485.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20448880</id>
	<title>BIRT 2.1.3 - HTML vs PDF Layout issue</title>
	<published>2008-11-11T13:30:51Z</published>
	<updated>2008-11-11T13:30:51Z</updated>
	<author>
		<name>Jon Hohgrefe</name>
	</author>
	<content type="html">I am trying to get our app converted to run on WebSphere 6.1 and I am having issues with HTML vs PDF layout.
&lt;br&gt;&lt;br&gt;I can run my reports in PDF layout with no issues. &amp;nbsp;When I run in HTML layout, my header (a grid) and report content (a table) are side by side.
&lt;br&gt;&lt;br&gt;I tried putting a grid within my body to wrap these two elements and that fixed the HTML layout, but then my PDFs run off the side of the page.
&lt;br&gt;&lt;br&gt;Any thoughts?
&lt;br&gt;&lt;br&gt;J Hohgrefe
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;_______________________________________________
&lt;br&gt;birt-news mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20448880&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-news@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-news&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-news&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---News-f2268.html&quot; embed=&quot;fixTarget[2268]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - News&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/BIRT-2.1.3---HTML-vs-PDF-Layout-issue-tp20448880p20448880.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20434489</id>
	<title>Committer vote for Xingsheng Zhu has been approved by the PMC</title>
	<published>2008-11-10T23:02:02Z</published>
	<updated>2008-11-10T23:02:02Z</updated>
	<author>
		<name>Wenfeng Li</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message marks the PMC's approval of the vote
&lt;br&gt;for Xingsheng Zhu's full Committer status on the birt project. The next
&lt;br&gt;step is for the project lead to return to the portal and fill in the CVS
&lt;br&gt;package and employer information for Xingsheng Zhu.
&lt;br&gt;&lt;br&gt;The PMC's comments were: Yi is a main contributor to BIRT's charting
&lt;br&gt;project for BIRT release 2.3. &amp;nbsp;
&lt;br&gt;&lt;br&gt;If you have any questions, please do not hesitate to contact your project
&lt;br&gt;lead, PMC member, or the EMO &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434489&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;emo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434489&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Committer-vote-for-Xingsheng-Zhu-has-been-approved-by-the-PMC-tp20434489p20434489.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20434491</id>
	<title>Committer vote for Xingsheng Zhu has been approved by the PMC</title>
	<published>2008-11-10T23:02:02Z</published>
	<updated>2008-11-10T23:02:02Z</updated>
	<author>
		<name>Wenfeng Li</name>
	</author>
	<content type="html">birt PMC Members,
&lt;br&gt;This automatically generated message marks the PMC's approval of the vote
&lt;br&gt;for Xingsheng Zhu's full Committer status on the birt project. The next
&lt;br&gt;step is for the project lead to return to the portal and fill in the CVS
&lt;br&gt;package and employer information for Xingsheng Zhu.
&lt;br&gt;&lt;br&gt;The PMC's comments were: Yi is a main contributor to BIRT's charting
&lt;br&gt;project for BIRT release 2.3. &amp;nbsp;
&lt;br&gt;&lt;br&gt;If you have any questions, please do not hesitate to contact your project
&lt;br&gt;lead, PMC member, or the EMO &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434491&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;emo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-pmc mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434491&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-pmc@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-pmc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-pmc&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---PMC-f2269.html&quot; embed=&quot;fixTarget[2269]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - PMC&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Committer-vote-for-Xingsheng-Zhu-has-been-approved-by-the-PMC-tp20434491p20434491.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20434481</id>
	<title>Committer vote for Yi Wang has been approved by the PMC</title>
	<published>2008-11-10T23:01:03Z</published>
	<updated>2008-11-10T23:01:03Z</updated>
	<author>
		<name>Wenfeng Li</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message marks the PMC's approval of the vote
&lt;br&gt;for Yi Wang's full Committer status on the birt project. The next step is
&lt;br&gt;for the project lead to return to the portal and fill in the CVS package
&lt;br&gt;and employer information for Yi Wang.
&lt;br&gt;&lt;br&gt;The PMC's comments were: Yi is a main contributor to BIRT's charting
&lt;br&gt;project for BIRT release 2.3. &amp;nbsp;
&lt;br&gt;&lt;br&gt;If you have any questions, please do not hesitate to contact your project
&lt;br&gt;lead, PMC member, or the EMO &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434481&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;emo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434481&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Committer-vote-for-Yi-Wang-has-been-approved-by-the-PMC-tp20434481p20434481.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20434480</id>
	<title>Committer vote for Yi Wang has been approved by the PMC</title>
	<published>2008-11-10T23:01:03Z</published>
	<updated>2008-11-10T23:01:03Z</updated>
	<author>
		<name>Wenfeng Li</name>
	</author>
	<content type="html">birt PMC Members,
&lt;br&gt;This automatically generated message marks the PMC's approval of the vote
&lt;br&gt;for Yi Wang's full Committer status on the birt project. The next step is
&lt;br&gt;for the project lead to return to the portal and fill in the CVS package
&lt;br&gt;and employer information for Yi Wang.
&lt;br&gt;&lt;br&gt;The PMC's comments were: Yi is a main contributor to BIRT's charting
&lt;br&gt;project for BIRT release 2.3. &amp;nbsp;
&lt;br&gt;&lt;br&gt;If you have any questions, please do not hesitate to contact your project
&lt;br&gt;lead, PMC member, or the EMO &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434480&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;emo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-pmc mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20434480&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-pmc@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-pmc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-pmc&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---PMC-f2269.html&quot; embed=&quot;fixTarget[2269]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - PMC&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Committer-vote-for-Yi-Wang-has-been-approved-by-the-PMC-tp20434480p20434480.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20433645</id>
	<title>Committer vote for Yi Wang has concluded successfully</title>
	<published>2008-11-10T21:00:05Z</published>
	<updated>2008-11-10T21:00:05Z</updated>
	<author>
		<name>portal on behalf of Yulin Wang</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message marks the successful completion of
&lt;br&gt;voting for Yi Wang to receive full Committer status on the birt project.
&lt;br&gt;The next step is for the PMC to approve this vote, followed by the EMO
&lt;br&gt;processing the paperwork and provisioning the account.
&lt;br&gt;&lt;br&gt;Vote summary: 6/0/0 with 46 not voting 
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Linda Chan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Chen Chao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liwen Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yuejie Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jerry Cheng
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Hank Christensen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Paul Clenahan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mark Coggins
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yasuo Doshiro
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Dazheng Gao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaoying Gu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nola Hague
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenbin He
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rima Kanguri
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Renuka Kanna
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lina Kemmel
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sue Lee
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sheldon Lee-Loy
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Heng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nina Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenfeng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiang Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xuelan Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Li
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhongbo Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gang Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ian Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rick Lu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ahmed Moharram
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Ouyang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Vincent Petry
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhiqiang Qian
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Scott Rosenbaum
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Jane Tatchell
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Krishna Venkatraman
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Qiangsheng Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yueqiang Wang
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Yulin Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jason Weathersby
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mingxia Wu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gary Xue
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Yan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liang Yu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Zhai
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaofeng Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiong Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jian Zhou
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lin Zhu
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Sissi Zhu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;he xingjie
&lt;br&gt;&lt;br&gt;If you have any questions, please do not hesitate to contact your project
&lt;br&gt;lead, PMC member, or the EMO &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20433645&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;emo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20433645&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Committer-vote-for-Yi-Wang-has-concluded-successfully-tp20433645p20433645.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20433648</id>
	<title>Committer vote for Xingsheng Zhu has concluded successfully</title>
	<published>2008-11-10T21:00:05Z</published>
	<updated>2008-11-10T21:00:05Z</updated>
	<author>
		<name>portal on behalf of Yulin Wang</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message marks the successful completion of
&lt;br&gt;voting for Xingsheng Zhu to receive full Committer status on the birt
&lt;br&gt;project. The next step is for the PMC to approve this vote, followed by the
&lt;br&gt;EMO processing the paperwork and provisioning the account.
&lt;br&gt;&lt;br&gt;Vote summary: 6/0/0 with 46 not voting 
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Linda Chan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Chen Chao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liwen Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yuejie Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jerry Cheng
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Hank Christensen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Paul Clenahan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mark Coggins
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yasuo Doshiro
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Dazheng Gao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaoying Gu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nola Hague
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenbin He
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rima Kanguri
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Renuka Kanna
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lina Kemmel
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sue Lee
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sheldon Lee-Loy
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Heng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nina Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenfeng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiang Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xuelan Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Li
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhongbo Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gang Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ian Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rick Lu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ahmed Moharram
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Ouyang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Vincent Petry
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhiqiang Qian
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Scott Rosenbaum
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Jane Tatchell
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Krishna Venkatraman
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Qiangsheng Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yueqiang Wang
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Yulin Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jason Weathersby
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mingxia Wu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gary Xue
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Yan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liang Yu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Zhai
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaofeng Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiong Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jian Zhou
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lin Zhu
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Sissi Zhu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;he xingjie
&lt;br&gt;&lt;br&gt;If you have any questions, please do not hesitate to contact your project
&lt;br&gt;lead, PMC member, or the EMO &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20433648&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;emo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20433648&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Committer-vote-for-Xingsheng-Zhu-has-concluded-successfully-tp20433648p20433648.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20433646</id>
	<title>PMC approval needed for committer vote for Xingsheng Zhu</title>
	<published>2008-11-10T21:00:05Z</published>
	<updated>2008-11-10T21:00:05Z</updated>
	<author>
		<name>portal on behalf of emo</name>
	</author>
	<content type="html">birt PMC Members,
&lt;br&gt;This automatically generated message marks the completion of voting for
&lt;br&gt;Xingsheng Zhu's Committer status on the birt project. As a PMC member, you
&lt;br&gt;can approve or disapprove this vote through your My Foundation portal page:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Xingsheng Zhu was nominated by Yulin Wang as follows: 
&lt;br&gt;I would like to nominate Xingsheng Zhu as a BIRT committer. Xingsheng Zhu
&lt;br&gt;joined BIRT Team in December 2007. He has contributed significantly in
&lt;br&gt;Chart bug fixing in the past 12 months.
&lt;br&gt;&lt;br&gt;More specificially, the following are the BUGs that Xingsheng has fixed in
&lt;br&gt;the past several months:
&lt;br&gt;&lt;br&gt;197641 &amp;nbsp; &amp;nbsp;Need to have interactivity on zero values of the datapoint.
&lt;br&gt;210061 	Category data for 1st item on x-axis does not get displayed
&lt;br&gt;213824 	The data fetch setting in dataset(row limit number) isn't effect.
&lt;br&gt;213434 	[2.2.2] Line properties are disabled when reopen the chart builder.
&lt;br&gt;213908 	Some parts disappear in the chart builder [13]
&lt;br&gt;213406 	[2.2.2]Data preview problem in chart builder
&lt;br&gt;213922 	Axis label rotation direction is not correct in live preview.
&lt;br&gt;213827 	Axis title rotation lose effect after flip axis.
&lt;br&gt;213965 	Can only select the first four rows in the Data Preview table in...
&lt;br&gt;214199 	[Regression] Pie chart compare failed [13]
&lt;br&gt;214708 	Browse For File in drill through of Chart Interactivity should...
&lt;br&gt;214337 	Problem when switch the locale.
&lt;br&gt;214205 	Chart Web Project should be able to import latest chart...
&lt;br&gt;215449 	The subtype Stacked does not take effect after untick the...
&lt;br&gt;215323 	The chart in Chart Preview Pane of the Chart Builder is flipped...
&lt;br&gt;210606 	Data fetch setting in dataset take no effect on the data preview...
&lt;br&gt;213946 	The cancel button of select data binding doesn't work[13]
&lt;br&gt;216402 	Series palette does not work correctly when there're two Y axis.
&lt;br&gt;213701 	Barchart With bar Thin
&lt;br&gt;216253 	[Regression] Error when preview the attached report with chart.
&lt;br&gt;215166 	Incorrect preview of pyramid and cone chart.
&lt;br&gt;214057 	Some part of dialog is clipped when select stock chart with...
&lt;br&gt;213799 	[Automation][Regression]Exception is thrown out when...
&lt;br&gt;212844 	Chart runtime component version is wrong in Project
&lt;br&gt;Facets[13][0603]
&lt;br&gt;214200 	Rename BIRT Chart Web Project to Chart Web Project[13][0603]
&lt;br&gt;214201 	BIRT Web Project fail to set birt component in project facet...
&lt;br&gt;213919 	The series type list should be disabled and the second series...
&lt;br&gt;215777 	[Regression] Exception is thrown out when run the attached java...
&lt;br&gt;215949 	No element name for chart and xtab items[0003]
&lt;br&gt;216396 	Can not create second series in the attached report design.
&lt;br&gt;213832 	Min and Max of Axis can not be changed through keyboard.
&lt;br&gt;214845 	Create default names for Series
&lt;br&gt;214997 	Palette UI is incorrect for multiple axes
&lt;br&gt;212268 	Bar Chart: A title of Axis-Y renders incorrent if the title is too
&lt;br&gt;long
&lt;br&gt;214855 	Add new chart types in examples view
&lt;br&gt;216384 	Chart builder dialog will be enlarged when use a cube.
&lt;br&gt;217415 	Interactivity does not work correctly in the attached report
&lt;br&gt;design.
&lt;br&gt;217389 	Refresh problem in the chart builder[13]
&lt;br&gt;216735 	Should not invoke the aggregation dialog for chart in crosstab.
&lt;br&gt;218738 	[Acceptance] Can not change series type for multiple Y Axis.
&lt;br&gt;216719 	Should disable &amp;lt;New series...&amp;gt;for chart in crosstab.
&lt;br&gt;215442 	Passing Date Type parameter while drill through to another
&lt;br&gt;report...
&lt;br&gt;215598 	The type of X-Axis is wrong when binding to a Date Type dimension
&lt;br&gt;[13]
&lt;br&gt;217214 	row[] should not be shown when add a binding for the chart...
&lt;br&gt;221084 	BAR CHART : A data definition entry for Y Series is undefined.
&lt;br&gt;217216 	[SPM] Exception is thrown out when run chart web project [13]
&lt;br&gt;220723 	Series name in legend is not refreshed after delete the first
&lt;br&gt;series.
&lt;br&gt;221099 	Refresh bindings will cause bindings removed.
&lt;br&gt;220721 	Data Field expression is not correct in Aggregation builder.
&lt;br&gt;220329 	Invalid chart types will reappear after invoke a normal chart
&lt;br&gt;builder.
&lt;br&gt;215601 	Error occurs when using different datatype measure for multiple
&lt;br&gt;axis.
&lt;br&gt;221622 	Error disappears after open a sub dialogue when chart binding to...
&lt;br&gt;221790 	[Automation][Regression]Drop shadow of pie chart are changed
&lt;br&gt;208735 	The Cancel button doesn't work correctly when cancel to remove a...
&lt;br&gt;217599 	Support create a new cube in the chart builder[1301]
&lt;br&gt;217420 	Exception is thrown out when preview the report under frameset...
&lt;br&gt;193667 	Chart background image dialogue should work in the same way with...
&lt;br&gt;203412 	Exception should show up in Chart Builder if Y Axis Type is...
&lt;br&gt;223041 	[Automation][Regression]Bubble size displays as 1.0 when its
&lt;br&gt;value...
&lt;br&gt;158631 	Rotate pie chart
&lt;br&gt;221457 	Data type checking for concatenated expression is wrong.
&lt;br&gt;215158 	java.util.ConcurrentModificationException during...
&lt;br&gt;211976 	ReportEngine fails under heavy concurrent load
&lt;br&gt;222540 	The aggregation expression can not be selected in aggregation
&lt;br&gt;builder.
&lt;br&gt;211471 	Markers Visibility and Properties
&lt;br&gt;200294 	Fail to deploy chart runtime in WebSphere6.1[13][0601]
&lt;br&gt;224829 	Failed to load engineOptionsClass when deploying ...
&lt;br&gt;224294 	Confusing error msg for axis data type in Chart Builder[13]
&lt;br&gt;210383 	Behavior on legend does not work when Enable Chart Interactivity...
&lt;br&gt;225472 	Refresh bindings will overwirte the edits.[13]
&lt;br&gt;224061 	Fail to set calculated number from date as series for...
&lt;br&gt;224301 	Refresh in Chart Binding will remove newly added binding[13]
&lt;br&gt;224303 	Rename Delete button in Chart-Data Binding dialog[00]
&lt;br&gt;226630 	Available column bindings and Current Data Cube category are...
&lt;br&gt;225200 	BIRT chart data preview truncates column names
&lt;br&gt;224271 	Series Type should be kept while switch chart type.[13]
&lt;br&gt;192443 	Enhance the Chart Builder for invalid Chart
&lt;br&gt;220505 	Open the invalid chart will cause blank chart builder
&lt;br&gt;160542 	Improve Sample Data in Chart Builder
&lt;br&gt;234440 	TVT34:TCT595: PLK: truncation of button label in &amp;quot;Series
&lt;br&gt;Palette&amp;quot;...
&lt;br&gt;234456 	TVT34:TCT598: PLK: truncations in &amp;quot;Errors encountered&amp;quot; dialog
&lt;br&gt;window
&lt;br&gt;236611 	TVT34:TCT777: TVT - HUN: Gridlines button is truncated
&lt;br&gt;234465 	TVT34:TCT603: PLK: functional: screen refresh in &amp;quot;Data Cube:...
&lt;br&gt;235262 	Context menu in chart build need double click to close[13]
&lt;br&gt;234503 	TVT34:TCT615: JA: Gantt chart description truncated
&lt;br&gt;219079 	Pie chart - total is not 100%
&lt;br&gt;234195 	TVT34:TCT547: DAN: Truncation in &amp;quot;Edit Chart&amp;quot; panel &amp;quot;Curve...
&lt;br&gt;240615 	In web project wizard, the &amp;quot;BIRT Charting Component&amp;quot; preset is...
&lt;br&gt;240456 	The most right and upmost gridlines are missing.
&lt;br&gt;240459 	The visibility of axis labels should not affect the visibility...
&lt;br&gt;234902 	TVT34:TCT665: TVT FR - BIRT - &amp;lt;None&amp;gt; in Series Interactivity Panel
&lt;br&gt;240786 	Hour is changed after reopen the dialog.
&lt;br&gt;233901 	Interactivity on Key Down event does not work.
&lt;br&gt;242205 	Data binding type is not refreshed immediately after modification.
&lt;br&gt;234522 	[Accessiblity] Axis or axis labels are invisible under high
&lt;br&gt;contrast...
&lt;br&gt;242206 	The datatype of data binding in Chart builder didn't update
&lt;br&gt;after...
&lt;br&gt;233906 	Interactivity using report parameter does not work as expected.
&lt;br&gt;241949 	Legend script chart example need to be updated.
&lt;br&gt;240293 	In the web project wizard, the &amp;quot;BIRT Chart Component&amp;quot; preset is...
&lt;br&gt;242455 	NPE when painting chart with null data sets
&lt;br&gt;234424 	TVT34:TCT590: PLK: functional: incative list in &amp;quot;Grouping and
&lt;br&gt;Sorting&amp;quot;
&lt;br&gt;235411 	zTriggerCondition.ONMOUSEOUT_LITERAL not handled
&lt;br&gt;233543 	TVT34:TCT522: RU: incorrect date&amp;time format in chart
&lt;br&gt;234446 	TVT34:TCT593: PLK: redundant lists of BIRT functions
&lt;br&gt;244905 	[Regression] Error happens in a new created BIRT chart web...
&lt;br&gt;243861 	Undo hint is hard to understand after editing the script of chart.
&lt;br&gt;243262 	[regression] SVG Chart can not display when deployed on WebLogic
&lt;br&gt;9.2
&lt;br&gt;245196 	The modification of Chart Area Interactivity doesn't work[13]
&lt;br&gt;245465 	[Regression]Chart in Sub Category in expression builder show as...
&lt;br&gt;246308 	User property is added but not appear in advanced tab until you...
&lt;br&gt;246663 	Note should be added about the max allowed value of Numerator...
&lt;br&gt;247129 	Exceptions throws out when trying to remove a binding in chart
&lt;br&gt;builder.
&lt;br&gt;246819 	Use to group Y series should be disabled in context menu when...
&lt;br&gt;231237 	[Accessibility] Scrolling with keyboard does not work for Data...
&lt;br&gt;246027 	The &amp;quot;Filters...&amp;quot; button in Edit Chart tab of Chart Builder
&lt;br&gt;should...
&lt;br&gt;245499 	The three column &amp;quot;Function&amp;quot;, &amp;quot;Filter&amp;quot; and &amp;quot;Aggregate On&amp;quot; should...
&lt;br&gt;245473 	The OverLay Area Chart icon is not correct in Chart Builder [13]
&lt;br&gt;245345 	Error icon before chart will try to add a binding for chart[13]
&lt;br&gt;246193 	Inconsistent UI Aggregation Builder for chart and table
&lt;br&gt;246174 	Chart can not get parent container's binding when this chart...
&lt;br&gt;232730 	Selected dimension should be saved when changing chart type
&lt;br&gt;245822 	Add description to explain why Can not define filter for chart...
&lt;br&gt;247774 	Not understandable message in chart builder when you delete the...
&lt;br&gt;245855 	Preivew result for &amp;quot;Gradient Editor&amp;quot; is incorrect [13]
&lt;br&gt;248817 	[Regression] Data Preview becomes empty and live preivew lost
&lt;br&gt;when...
&lt;br&gt;249902 	Upgrade Bundle-version in MANIFEST.MF to 2.5.0 in HEAD stream
&lt;br&gt;245498 	Chart binding is not refreshed after remove one computed column...
&lt;br&gt;246312 	Customized series identifier of Chart with multiple Y-Axes will
&lt;br&gt;be...
&lt;br&gt;248324 	Example SWTLiveViewer crashes after a few minutes
&lt;br&gt;237578 	[Enhancement] Allow user to define the label for grouping.
&lt;br&gt;246519 	There should be description or example about the usage of pattern.
&lt;br&gt;251048 	Setting scatter chart background with embedded image doesn't work
&lt;br&gt;251049 	Different background for chart area in &amp;quot;Select Chart Type&amp;quot; list...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Vote summary: 6/0/0 with 46 not voting 
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Linda Chan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Chen Chao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liwen Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yuejie Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jerry Cheng
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Hank Christensen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Paul Clenahan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mark Coggins
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yasuo Doshiro
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Dazheng Gao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaoying Gu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nola Hague
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenbin He
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rima Kanguri
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Renuka Kanna
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lina Kemmel
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sue Lee
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sheldon Lee-Loy
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Heng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nina Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenfeng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiang Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xuelan Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Li
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhongbo Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gang Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ian Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rick Lu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ahmed Moharram
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Ouyang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Vincent Petry
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhiqiang Qian
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Scott Rosenbaum
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Jane Tatchell
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Krishna Venkatraman
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Qiangsheng Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yueqiang Wang
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Yulin Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jason Weathersby
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mingxia Wu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gary Xue
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Yan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liang Yu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Zhai
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaofeng Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiong Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jian Zhou
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lin Zhu
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Sissi Zhu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;he xingjie
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-pmc mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20433646&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-pmc@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-pmc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-pmc&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---PMC-f2269.html&quot; embed=&quot;fixTarget[2269]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - PMC&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/PMC-approval-needed-for-committer-vote-for-Xingsheng-Zhu-tp20433646p20433646.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20433653</id>
	<title>PMC approval needed for committer vote for Yi Wang</title>
	<published>2008-11-10T21:00:05Z</published>
	<updated>2008-11-10T21:00:05Z</updated>
	<author>
		<name>portal on behalf of emo</name>
	</author>
	<content type="html">birt PMC Members,
&lt;br&gt;This automatically generated message marks the completion of voting for Yi
&lt;br&gt;Wang's Committer status on the birt project. As a PMC member, you can
&lt;br&gt;approve or disapprove this vote through your My Foundation portal page:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Yi Wang was nominated by Yulin Wang as follows: 
&lt;br&gt;I would like to nominate Yi Wang as a BIRT committer. Yi Wang joined BIRT
&lt;br&gt;Team in December 2007. He has contributed significantly in Chart bug fixing
&lt;br&gt;in the past 12 months.
&lt;br&gt;&lt;br&gt;Yi Wang's works include but not limited to:
&lt;br&gt;1. improved chart drawing performance
&lt;br&gt;2. made some improvements in AutoScale and 3D Engine 
&lt;br&gt;3. fixed following bugs:
&lt;br&gt;&lt;br&gt;117059 &amp;nbsp; &amp;nbsp;Optimize chart drawing using medium to large datasets
&lt;br&gt;121842 &amp;nbsp; &amp;nbsp;Pie chart can't be displayed properly when adding two Y series.
&lt;br&gt;140757 &amp;nbsp; &amp;nbsp;The sample chart image in layout is not correct when adding
&lt;br&gt;MarkerRange
&lt;br&gt;141934 &amp;nbsp; &amp;nbsp;3D chart, gridlines previewed error.
&lt;br&gt;174105 &amp;nbsp; &amp;nbsp;Positioning Right-Hand Side Pie Legends
&lt;br&gt;175792 &amp;nbsp; &amp;nbsp;[Mac] Buttons in chart builder display incorrectly
&lt;br&gt;181156 &amp;nbsp; &amp;nbsp;Gridline of 3D Chart does not work correctly [0001]
&lt;br&gt;182060 &amp;nbsp; &amp;nbsp;3D Line Chart does not work correctly [0001]
&lt;br&gt;189064 &amp;nbsp; &amp;nbsp;2D+ Stacked Area Chart with negative values does not work
&lt;br&gt;correctly [0001]
&lt;br&gt;192368 &amp;nbsp; &amp;nbsp;3D Tube and Cone Chart legend area should not take gradient color
&lt;br&gt;[0001]
&lt;br&gt;193944 &amp;nbsp; &amp;nbsp;The Line and the label overlap together if change the label
&lt;br&gt;dynamiclly [13]
&lt;br&gt;197254 &amp;nbsp; &amp;nbsp;[Regression] Pie Charts labels overlap
&lt;br&gt;197754 &amp;nbsp; &amp;nbsp;Axis Title Insets Left and Right is error
&lt;br&gt;199001 &amp;nbsp; &amp;nbsp;Some part of the difference series are drawn under the X-Axis
&lt;br&gt;[13]
&lt;br&gt;199008 &amp;nbsp; &amp;nbsp;Truncated labels problems in 3D
&lt;br&gt;199208 &amp;nbsp; &amp;nbsp;Stagger labels feature doesn't work as expected
&lt;br&gt;199890 &amp;nbsp; &amp;nbsp;In the chart dialogue, clicking on &amp;quot;Finish&amp;quot; crashes Eclipse
&lt;br&gt;202047 &amp;nbsp; &amp;nbsp;Can't set filter in chart build on Mac
&lt;br&gt;202400 &amp;nbsp; &amp;nbsp;java.lang.OutOfMemoryError occurs when input a large number in
&lt;br&gt;width of Chart[0005]
&lt;br&gt;204851 &amp;nbsp; &amp;nbsp;Second axis title is not rendering properly. The label is being
&lt;br&gt;cut off if it wraps
&lt;br&gt;205570 &amp;nbsp; &amp;nbsp;Ellipsis for long Axis labels
&lt;br&gt;206122 &amp;nbsp; &amp;nbsp;On Solaris 10, testexecution test log frozen the test log view
&lt;br&gt;found in RSD 705
&lt;br&gt;207462 &amp;nbsp; &amp;nbsp;Charts should use resources folder for marker images
&lt;br&gt;207538 &amp;nbsp; &amp;nbsp;Background color for Plot Area and Client Area works in the same
&lt;br&gt;area for Meter Chart [13]
&lt;br&gt;209799 &amp;nbsp; &amp;nbsp;Gantt chart series lable does not display suffix for task label
&lt;br&gt;210241 &amp;nbsp; &amp;nbsp;Axis title should be horizontal to Axis by default when select
&lt;br&gt;Flip Axis.
&lt;br&gt;210634 &amp;nbsp; &amp;nbsp;Value series does not appear again after toggle visibility once.
&lt;br&gt;210886 &amp;nbsp; &amp;nbsp;Legend text is clipped.
&lt;br&gt;211773 &amp;nbsp; &amp;nbsp;Legend entries overlap
&lt;br&gt;212119 &amp;nbsp; &amp;nbsp;Extra line shows up when apply multiplication to null series
&lt;br&gt;value.
&lt;br&gt;212371 &amp;nbsp; &amp;nbsp;[Regression] Auto-scale does not work correctly and gridline is
&lt;br&gt;not shown anymore when run the attached java file [13]
&lt;br&gt;213810 &amp;nbsp; &amp;nbsp;[2.2.2 acceptance] Error occurs when create a third axis.
&lt;br&gt;213909 &amp;nbsp; &amp;nbsp;The legend disappears if the bar width is set to 1 for Gantt
&lt;br&gt;Chart [13]
&lt;br&gt;213952 &amp;nbsp; &amp;nbsp;Only time is displayed on Axis label when Axis type is DateTime.
&lt;br&gt;213955 &amp;nbsp; &amp;nbsp;Default date format on Axis label is inconsistent with format
&lt;br&gt;preview.
&lt;br&gt;214077 &amp;nbsp; &amp;nbsp;[Automation][Regression]Chart Y-axis step size is changed
&lt;br&gt;214115 &amp;nbsp; &amp;nbsp;width hint height hint for pie charts unexpected behaviour
&lt;br&gt;214197 &amp;nbsp; &amp;nbsp;[Regression] Auto scale does not work correctly [13]
&lt;br&gt;214296 &amp;nbsp; &amp;nbsp;[Automation][Regression]Values of chart Y-axis are not expected
&lt;br&gt;when previewing chart report.
&lt;br&gt;214297 &amp;nbsp; &amp;nbsp;[Automation][Regression]Z-axis disappears in chart
&lt;br&gt;214331 &amp;nbsp; &amp;nbsp;[Regression] Axis title is vertical to the axis for some chart
&lt;br&gt;type.
&lt;br&gt;214453 &amp;nbsp; &amp;nbsp;Some Legend Entries are not correct when the text is shortened by
&lt;br&gt;ellipsis
&lt;br&gt;214720 &amp;nbsp; &amp;nbsp;Gantt chart - wrong scale rendering on datetime axis
&lt;br&gt;215171 &amp;nbsp; &amp;nbsp;[Automation][Regression]Space between legend title is changed
&lt;br&gt;215172 &amp;nbsp; &amp;nbsp;[Regression] Eclipse is freezed when chart has too small size
&lt;br&gt;[13]
&lt;br&gt;215198 &amp;nbsp; &amp;nbsp;Series render is not correct when value is zero.
&lt;br&gt;215405 &amp;nbsp; &amp;nbsp;'Show Value' totals in Legend are off by one
&lt;br&gt;215443 &amp;nbsp; &amp;nbsp;[Automation][Regression]Date format in legend is displayed as
&lt;br&gt;datetime
&lt;br&gt;215480 &amp;nbsp; &amp;nbsp;Chart labels on DateTime x-axis can be incorrect
&lt;br&gt;215600 &amp;nbsp; &amp;nbsp;[Regression] The two series chart legend does not work correctly
&lt;br&gt;[13]
&lt;br&gt;215744 &amp;nbsp; &amp;nbsp;[Automation][Regression]Legend disappeared randomly in gantt
&lt;br&gt;chart when chart is a given size
&lt;br&gt;215774 &amp;nbsp; &amp;nbsp;[Regression] The legend disappear when run the attached java
&lt;br&gt;class to render a chart [13]
&lt;br&gt;215933 &amp;nbsp; &amp;nbsp;[Regression]Inputing fraction number will force conversion.
&lt;br&gt;216087 &amp;nbsp; &amp;nbsp;NPE when change category x series in attached chart[1301]
&lt;br&gt;216331 &amp;nbsp; &amp;nbsp;Chart Y axis label is not centered along the Y axis
&lt;br&gt;216718 &amp;nbsp; &amp;nbsp;Problem when preview show crosstab measure as chart view.
&lt;br&gt;216857 &amp;nbsp; &amp;nbsp;Measure chart view issue in attached report.[1302]
&lt;br&gt;217044 &amp;nbsp; &amp;nbsp;[Automation][Smoke]Exception is thrown out when preview report
&lt;br&gt;containing meter chart
&lt;br&gt;217376 &amp;nbsp; &amp;nbsp;[Automation][Regression]Axis scale is changed
&lt;br&gt;217377 &amp;nbsp; &amp;nbsp;Duplicate x-axis value in chart with x-axis group on
&lt;br&gt;datetime.[13]
&lt;br&gt;217477 &amp;nbsp; &amp;nbsp;Multiple y-series bar chart, invisible series gaps are shown
&lt;br&gt;217549 &amp;nbsp; &amp;nbsp;[Automation] The client area of legend disappears in the result
&lt;br&gt;file.
&lt;br&gt;217573 &amp;nbsp; &amp;nbsp;Modifying the line attribute of the first runtime series does not
&lt;br&gt;work.
&lt;br&gt;217581 &amp;nbsp; &amp;nbsp;[Automation][Regression] the generated chart was changed when
&lt;br&gt;preview using the attached report design
&lt;br&gt;218743 &amp;nbsp; &amp;nbsp;[Acceptance] Line style does not work when preview in html/web
&lt;br&gt;viewer.
&lt;br&gt;219292 &amp;nbsp; &amp;nbsp;Axis labels are covered when select dimension as 2D+.
&lt;br&gt;219376 &amp;nbsp; &amp;nbsp;[Automation][Regression]Exception thrown out when previewing
&lt;br&gt;report
&lt;br&gt;219380 &amp;nbsp; &amp;nbsp;[Automation]Series label location is changed
&lt;br&gt;219544 &amp;nbsp; &amp;nbsp;Chart freezes when handle very big number
&lt;br&gt;220710 &amp;nbsp; &amp;nbsp;[Automation][Regression]Step size is NaN
&lt;br&gt;220980 &amp;nbsp; &amp;nbsp;Rendering time of area chart has non-linear growth as data rows
&lt;br&gt;increase in number
&lt;br&gt;223768 &amp;nbsp; &amp;nbsp;Leader line is too long and label is cut after pie rotation.
&lt;br&gt;224410 &amp;nbsp; &amp;nbsp;Percentile in Stacked Bar Chart
&lt;br&gt;225516 &amp;nbsp; &amp;nbsp;2D+ Bar Chart does not work correctly [13]
&lt;br&gt;225927 &amp;nbsp; &amp;nbsp;Rotation on horizontal issue[13]
&lt;br&gt;226647 &amp;nbsp; &amp;nbsp;Chart title can not be set as &amp;quot;value = 0&amp;quot;.
&lt;br&gt;226858 &amp;nbsp; &amp;nbsp;The Client Area Shadow will cover the Plot Area Background color
&lt;br&gt;226871 &amp;nbsp; &amp;nbsp;Wrong scale step of axis chart in xtab
&lt;br&gt;227257 &amp;nbsp; &amp;nbsp;Only one &amp;quot;Insets&amp;quot; should take effect for Plot&amp;Client Area [13]
&lt;br&gt;227283 &amp;nbsp; &amp;nbsp;java.lang.IllegalArgumentException encountered when trying to
&lt;br&gt;render attached report
&lt;br&gt;227481 &amp;nbsp; &amp;nbsp;Plot chart doesn't align with axis chart in xtab
&lt;br&gt;227525 &amp;nbsp; &amp;nbsp;[Automation] Exception is print out in the console when preview
&lt;br&gt;the attached report design with a stock chart [13]
&lt;br&gt;228111 &amp;nbsp; &amp;nbsp;Hiding Chart Series causes legend and axis labels to disappear
&lt;br&gt;229402 &amp;nbsp; &amp;nbsp;Debugging Chart Fails
&lt;br&gt;229436 &amp;nbsp; &amp;nbsp;Debugging a Java Chart Event Handler fails
&lt;br&gt;229534 &amp;nbsp; &amp;nbsp;Performance issue when preview xtab with chart measure in
&lt;br&gt;library[1102][01]
&lt;br&gt;230104 &amp;nbsp; &amp;nbsp;Filter definition is not valid show in Chart Builder
&lt;br&gt;231066 &amp;nbsp; &amp;nbsp;The 3D chart position is rather strange in the attached report
&lt;br&gt;design.
&lt;br&gt;231480 &amp;nbsp; &amp;nbsp;Axis step should be integer number in attached report
&lt;br&gt;231519 &amp;nbsp; &amp;nbsp;[Regression] Exception is thrown out when preview the attached
&lt;br&gt;report design using Report Engine [0600]
&lt;br&gt;231734 &amp;nbsp; &amp;nbsp;Sample chart preview of 3D chart with date value series is
&lt;br&gt;illegible.
&lt;br&gt;232640 &amp;nbsp; &amp;nbsp;Chart Events fail when deploying Chart Engine to RCP application
&lt;br&gt;232644 &amp;nbsp; &amp;nbsp;Blocks displayed beside chart title after setting chart text
&lt;br&gt;direction to RTL.
&lt;br&gt;232647 &amp;nbsp; &amp;nbsp;2D+ Pie chart with sample data has a pixel width of wrong color.
&lt;br&gt;232718 &amp;nbsp; &amp;nbsp;The Legend Title also overlap the icon when set Bidi text
&lt;br&gt;direction to rtl [13]
&lt;br&gt;232719 &amp;nbsp; &amp;nbsp;X-Axis title does not work the same as Y-Axis tilte and Chart
&lt;br&gt;title in the Layout [13]
&lt;br&gt;232757 &amp;nbsp; &amp;nbsp;Error with standard meter charts:
&lt;br&gt;org.eclipse.birt.chart.exception.ChartException: Could not zoomOut for
&lt;br&gt;step=8
&lt;br&gt;232824 &amp;nbsp; &amp;nbsp;Java chart ScriptHandler not initialized properly
&lt;br&gt;233885 &amp;nbsp; &amp;nbsp;Bubble chart does not work correctly with secondary Y axis.
&lt;br&gt;233900 &amp;nbsp; &amp;nbsp;Interactivity on minimum slice does not work correctly.
&lt;br&gt;233918 &amp;nbsp; &amp;nbsp;Backgroud image with a relative path does not work for chart.
&lt;br&gt;234190 &amp;nbsp; &amp;nbsp;&amp;quot;(Auto)&amp;quot; on the Curve Fitting Line dialog is not externalized.
&lt;br&gt;234476 &amp;nbsp; &amp;nbsp;TVT34:TCT591: PLK: &amp;quot;&amp;lt;undefined&amp;gt;&amp;quot; not externalized
&lt;br&gt;235045 &amp;nbsp; &amp;nbsp;Data Set label in Binding pane for Chart is &amp;quot;Data&amp;quot;[13]
&lt;br&gt;235048 &amp;nbsp; &amp;nbsp;[Automation][Regression]Invisible series should not take space of
&lt;br&gt;chart area
&lt;br&gt;235142 &amp;nbsp; &amp;nbsp;TVT34:TCT683: SV: Birt chart example names display in english
&lt;br&gt;235270 &amp;nbsp; &amp;nbsp;[BIDI] BIDI does not support for 3D Axis label [13]
&lt;br&gt;235293 &amp;nbsp; &amp;nbsp;Series name of 3D Chart is not correct in Layout [13]
&lt;br&gt;235767 &amp;nbsp; &amp;nbsp;Optimize chart drawing using several series but less data points
&lt;br&gt;236198 &amp;nbsp; &amp;nbsp;Charts does not work with WebService dataset defined in a library
&lt;br&gt;when multiple libraries are used.
&lt;br&gt;236381 &amp;nbsp; &amp;nbsp;Message should not pop up when the size of bubble chart is not
&lt;br&gt;defined.
&lt;br&gt;236384 &amp;nbsp; &amp;nbsp;The error message is tedious when you select date type for
&lt;br&gt;stacked chart.
&lt;br&gt;236386 &amp;nbsp; &amp;nbsp;[Automation][Regression]Bubble size can not be null
&lt;br&gt;237576 &amp;nbsp; &amp;nbsp;The unit of datetime type grouping is disabled in Chinese locale.
&lt;br&gt;237582 &amp;nbsp; &amp;nbsp;legend in bar chart does not display series names
&lt;br&gt;237806 &amp;nbsp; &amp;nbsp;Chart - setConnectMissingValue doesnt work for ScatterSeries
&lt;br&gt;237869 &amp;nbsp; &amp;nbsp;Pie value series does not allow string type data even when it's
&lt;br&gt;aggregation is set as count.
&lt;br&gt;239266 &amp;nbsp; &amp;nbsp;BIDI_BIRT: Charts legend do not follow the Report Orientation
&lt;br&gt;239271 &amp;nbsp; &amp;nbsp;BIDI_BIRT: Charts text direction does not inherit from the report
&lt;br&gt;orientation
&lt;br&gt;239546 &amp;nbsp; &amp;nbsp;marker change in &amp;quot;beforeDrawMarker&amp;quot; will infuence the following
&lt;br&gt;data points marker rendering
&lt;br&gt;239597 &amp;nbsp; &amp;nbsp;Stacked area chart bug
&lt;br&gt;239751 &amp;nbsp; &amp;nbsp;Failure occurs in Junit test of org.eclipse.birt.chart.tests in
&lt;br&gt;2.3.1 daily build 200807070630
&lt;br&gt;240303 &amp;nbsp; &amp;nbsp;database connection error in chart
&lt;br&gt;240508 &amp;nbsp; &amp;nbsp;Difference in legend displaying after opening in BIRT 230 reports
&lt;br&gt;created by BIRT 221
&lt;br&gt;240912 &amp;nbsp; &amp;nbsp;I18N and Libraries - library property file ignored
&lt;br&gt;241043 &amp;nbsp; &amp;nbsp;[Regression] Error shows up in Chart Builder when binding the
&lt;br&gt;chart to a data set [13]
&lt;br&gt;241491 &amp;nbsp; &amp;nbsp;Live preview does not work for chart using cube and chart in
&lt;br&gt;crosstab.
&lt;br&gt;241497 &amp;nbsp; &amp;nbsp;Interactivity on legend does not work correctly when the subtype
&lt;br&gt;of chart is stacked.
&lt;br&gt;241650 &amp;nbsp; &amp;nbsp;No series name in the second row of a chart legend
&lt;br&gt;241774 &amp;nbsp; &amp;nbsp;The second series name of 3D Chart is not shown in Chart Builder
&lt;br&gt;or when preview [13]
&lt;br&gt;241775 &amp;nbsp; &amp;nbsp;[Automation][Smoke]NPE thrown out when preview report containing
&lt;br&gt;chart item
&lt;br&gt;242336 &amp;nbsp; &amp;nbsp;[Regression] Exception is thrown out when preview the attached
&lt;br&gt;report design designed in an old version of BIRT [0901]
&lt;br&gt;242846 &amp;nbsp; &amp;nbsp;Exception error log when double click measure in data binding
&lt;br&gt;dialog.
&lt;br&gt;242882 &amp;nbsp; &amp;nbsp;Report with chart produces &amp;quot;Feature 'xsi' not found.&amp;quot; exception.
&lt;br&gt;243130 &amp;nbsp; &amp;nbsp;Symbols in the legend for line chart
&lt;br&gt;243767 &amp;nbsp; &amp;nbsp;AfterDataSet event does not have access to ReportContext
&lt;br&gt;244665 &amp;nbsp; &amp;nbsp;Background image of chart does not work the same as other report
&lt;br&gt;items when the report is under a subfolder.
&lt;br&gt;244974 &amp;nbsp; &amp;nbsp;word wrap in chart legend fails
&lt;br&gt;245210 &amp;nbsp; &amp;nbsp;Script of Chart Interactivity is invoked several times[13]
&lt;br&gt;245215 &amp;nbsp; &amp;nbsp;Unwanted lines appear on chart after invoking interactivity.
&lt;br&gt;245812 &amp;nbsp; &amp;nbsp;[regression]Scale for linear Date/Time X-Axis does not work
&lt;br&gt;correctly.[13]
&lt;br&gt;245912 &amp;nbsp; &amp;nbsp;[Regression] [SVG] The Chart title shadow and outline does not
&lt;br&gt;work correctly for SVG Chart [13]
&lt;br&gt;246032 &amp;nbsp; &amp;nbsp;[Automation][Regression]ArrayIndexOutOfBoundsException is thrown
&lt;br&gt;out
&lt;br&gt;246047 &amp;nbsp; &amp;nbsp;Small Scale for Date/Time X-Axis will cause layout chart
&lt;br&gt;issue[13]
&lt;br&gt;246532 &amp;nbsp; &amp;nbsp;The outline of chart area for chart in PNG format is not shown
&lt;br&gt;completely [13]
&lt;br&gt;246542 &amp;nbsp; &amp;nbsp;Sample chart becomes error when set both scale on X and Y axis.
&lt;br&gt;246806 &amp;nbsp; &amp;nbsp;The shadow line is not correct for null value in stacked line
&lt;br&gt;chart.
&lt;br&gt;246828 &amp;nbsp; &amp;nbsp;The Y Axis label is not correct when using cube in bubble chart.
&lt;br&gt;248540 &amp;nbsp; &amp;nbsp;Can't align zero point on chart with two y-axes
&lt;br&gt;248682 &amp;nbsp; &amp;nbsp;[Regression] [SVG] The Chart title shadow and outline does not
&lt;br&gt;work correctly for SVG Chart [13]
&lt;br&gt;248823 &amp;nbsp; &amp;nbsp;[Regression] The value list is not available in filter for chart
&lt;br&gt;using cube at first.
&lt;br&gt;248857 &amp;nbsp; &amp;nbsp;Value series name is not displayed correctly when the series uses
&lt;br&gt;a key.
&lt;br&gt;250242 &amp;nbsp; &amp;nbsp;Y grouping label is displayed differently for different series.
&lt;br&gt;250252 &amp;nbsp; &amp;nbsp;The series label is strange when the optional y grouping
&lt;br&gt;expression is 'row'.
&lt;br&gt;250404 &amp;nbsp; &amp;nbsp;Marker selecting boxes are empty.
&lt;br&gt;252124 &amp;nbsp; &amp;nbsp;org.eclipse.birt.chart.engine has compile error in 2.5.0 daily
&lt;br&gt;build v20081027-0630
&lt;br&gt;&lt;br&gt;&lt;br&gt;Vote summary: 6/0/0 with 46 not voting 
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Linda Chan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Chen Chao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liwen Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yuejie Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jerry Cheng
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Hank Christensen
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Paul Clenahan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mark Coggins
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yasuo Doshiro
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Dazheng Gao
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaoying Gu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nola Hague
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenbin He
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rima Kanguri
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Renuka Kanna
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lina Kemmel
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sue Lee
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Sheldon Lee-Loy
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Heng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Nina Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wenfeng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiang Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xuelan Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yu Li
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhongbo Li
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gang Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ian Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Rick Lu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Ahmed Moharram
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Ouyang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Vincent Petry
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Zhiqiang Qian
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Scott Rosenbaum
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Jane Tatchell
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Krishna Venkatraman
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Qiangsheng Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Yueqiang Wang
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Yulin Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jason Weathersby
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Mingxia Wu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Gary Xue
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Wei Yan
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Liang Yu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jun Zhai
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiaofeng Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Xiong Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Jian Zhou
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;Lin Zhu
&lt;br&gt;&amp;nbsp; +1 &amp;nbsp;Sissi Zhu
&lt;br&gt;&amp;nbsp; &amp;nbsp;? &amp;nbsp;he xingjie
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-pmc mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20433653&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-pmc@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-pmc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-pmc&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---PMC-f2269.html&quot; embed=&quot;fixTarget[2269]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - PMC&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/PMC-approval-needed-for-committer-vote-for-Yi-Wang-tp20433653p20433653.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20374009</id>
	<title>Michael Fox is out of the office.</title>
	<published>2008-11-06T19:04:31Z</published>
	<updated>2008-11-06T19:04:31Z</updated>
	<author>
		<name>Michael Fox</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body&gt;
&lt;p&gt;I will be out of the office starting  11/06/2008 and will not return until 11/10/2008.&lt;br&gt;
&lt;br&gt;
I will be out of the office on Thursday and Friday November 6 and 7. I will be checking mail occasionally as I can.&lt;br&gt;
&lt;br&gt;
Mike&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20374009&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Michael-Fox-is-out-of-the-office.-tp20374009p20374009.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20373684</id>
	<title>+1 for Xingsheng Zhu</title>
	<published>2008-11-06T18:36:03Z</published>
	<updated>2008-11-06T18:36:03Z</updated>
	<author>
		<name>Sissi Zhu</name>
	</author>
	<content type="html">+1
&lt;br&gt;I agree to accept Yi Wang as a comitter for his contributions on BIRT
&lt;br&gt;chart.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20373684&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Xingsheng-Zhu-tp20373684p20373684.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20373674</id>
	<title>+1 for Yi Wang</title>
	<published>2008-11-06T18:35:05Z</published>
	<updated>2008-11-06T18:35:05Z</updated>
	<author>
		<name>Sissi Zhu</name>
	</author>
	<content type="html">+1
&lt;br&gt;I agree to accept Yi Wang as a comitter for his contributions on BIRT
&lt;br&gt;chart.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20373674&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Yi-Wang-tp20373674p20373674.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20362844</id>
	<title>Using BIGINT/decimal column with parameter in SQL query</title>
	<published>2008-11-06T07:06:38Z</published>
	<updated>2008-11-06T07:06:38Z</updated>
	<author>
		<name>Conor Martin</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;&lt;BLOCKQUOTE style=&quot;PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(16,16,255) 2px solid&quot;&gt;
&lt;DIV id=yiv43294401&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top&gt;
&lt;DIV&gt;Hi, not sure if this is a bug or something I'm missing.&amp;nbsp; I'm using birt v. 2.3.1 with Eclipse 3.3.2.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I'm trying to set a scripted parameter for my SQL query - eg&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;SELECT * FROM TEST_TABLE WHERE TEST_TABLE.CREATED_ON &amp;gt; ?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;The column I'm using in the condition is a BIGINT, which seems to be picked up as decimal type in BIRT.&amp;nbsp; My problem is that when I double click on my dataset and go to the parameters tab, the scripted value for the parameter default is being cleared each time I enter.&amp;nbsp; The default uses script to get the start of today in milliseconds since, etc.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Everything seems to work fine when running the report, the only issues is that every time I go back to edit my datasource the default values are cleared, which is very time consuming with much larger queries (ie 30+ parameters).&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Any help would be greatly appreciated.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;C&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



      &lt;br /&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20362844&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Using-BIGINT-decimal-column-with-parameter-in-SQL-query-tp20362844p20362844.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20336487</id>
	<title>+1 for Xingsheng Zhu</title>
	<published>2008-11-04T21:49:02Z</published>
	<updated>2008-11-04T21:49:02Z</updated>
	<author>
		<name>portal on behalf of Zhiqiang Qian</name>
	</author>
	<content type="html">+1
&lt;br&gt;I agree. Xingsheng Zhu has made excellent contributions to BIRT Chart
&lt;br&gt;project.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20336487&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Xingsheng-Zhu-tp20336487p20336487.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20336484</id>
	<title>+1 for Yi Wang</title>
	<published>2008-11-04T21:48:03Z</published>
	<updated>2008-11-04T21:48:03Z</updated>
	<author>
		<name>portal on behalf of Zhiqiang Qian</name>
	</author>
	<content type="html">+1
&lt;br&gt;I agree. Yi Wang has made excellent contributions to BIRT Chart project.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20336484&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Yi-Wang-tp20336484p20336484.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20336261</id>
	<title>Project meta data is out of date for birt</title>
	<published>2008-11-04T21:00:07Z</published>
	<updated>2008-11-04T21:00:07Z</updated>
	<author>
		<name>portal on behalf of emo</name>
	</author>
	<content type="html">Wenfeng,
&lt;br&gt;Projects are required to keep meta data up to date using the MyFoundation
&lt;br&gt;Portal (&lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;). &amp;nbsp;The following problems were found
&lt;br&gt;with this project's meta-data:
&lt;br&gt;&lt;br&gt;* The date for release &amp;quot;2.0&amp;quot; uses the no-longer-supported mm/yyyy date
&lt;br&gt;format (1/2006). Please use MM/DD/YYYY or YYYY-MM-DD. If you are unsure of
&lt;br&gt;the date, we recommend you use the last date of the month.
&lt;br&gt;* The date for release &amp;quot;2.3.0&amp;quot; is in the past, but the release is not
&lt;br&gt;marked as completed. If it is completed, it should be marked as completed;
&lt;br&gt;if it has been postponed, it should be given a new target date.
&lt;br&gt;* There is no next/future release of this project. All Eclipse projects
&lt;br&gt;must have a &amp;quot;next release&amp;quot; planned and scheduled.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20336261&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Project-meta-data-is-out-of-date-for-birt-tp20336261p20336261.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20335551</id>
	<title>+1 for Yi Wang</title>
	<published>2008-11-04T19:03:03Z</published>
	<updated>2008-11-04T19:03:03Z</updated>
	<author>
		<name>Zhongbo Li</name>
	</author>
	<content type="html">+1
&lt;br&gt;His working history in Chart bug fixing shows that he will be a capable
&lt;br&gt;committer.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20335551&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Yi-Wang-tp20335551p20335551.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20335552</id>
	<title>+1 for Xingsheng Zhu</title>
	<published>2008-11-04T19:03:03Z</published>
	<updated>2008-11-04T19:03:03Z</updated>
	<author>
		<name>Zhongbo Li</name>
	</author>
	<content type="html">+1
&lt;br&gt;His working history in Chart bug fixing shows that he will be a capable
&lt;br&gt;committer.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20335552&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Xingsheng-Zhu-tp20335552p20335552.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20327792</id>
	<title>+1 for Xingsheng Zhu</title>
	<published>2008-11-04T10:06:04Z</published>
	<updated>2008-11-04T10:06:04Z</updated>
	<author>
		<name>Jane Tatchell</name>
	</author>
	<content type="html">+1
&lt;br&gt;Xingsheng Zhu has worked to improve the BIRT charting functionality by
&lt;br&gt;resolving many Bugzilla entries.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20327792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Xingsheng-Zhu-tp20327792p20327792.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20327777</id>
	<title>+1 for Yi Wang</title>
	<published>2008-11-04T10:05:04Z</published>
	<updated>2008-11-04T10:05:04Z</updated>
	<author>
		<name>Jane Tatchell</name>
	</author>
	<content type="html">+1
&lt;br&gt;Yi Wang has worked to improve the BIRT charting functionality by resolving
&lt;br&gt;many Bugzilla entries.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20327777&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Yi-Wang-tp20327777p20327777.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20317877</id>
	<title>+1 for Xingsheng Zhu</title>
	<published>2008-11-04T00:15:03Z</published>
	<updated>2008-11-04T00:15:03Z</updated>
	<author>
		<name>portal on behalf of Heng Li</name>
	</author>
	<content type="html">+1
&lt;br&gt;I agree to accept Xingsheng Zhu as committer for his contributions on BIRT
&lt;br&gt;chart.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20317877&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Xingsheng-Zhu-tp20317877p20317877.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20317847</id>
	<title>+1 for Yi Wang</title>
	<published>2008-11-04T00:13:03Z</published>
	<updated>2008-11-04T00:13:03Z</updated>
	<author>
		<name>portal on behalf of Heng Li</name>
	</author>
	<content type="html">+1
&lt;br&gt;I agree to accept Yi Wang as a comitter for his contributions on BIRT
&lt;br&gt;chart.
&lt;br&gt;&lt;br&gt;Voting summary: &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20317847&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%2B1-for-Yi-Wang-tp20317847p20317847.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20316007</id>
	<title>Vote for Committer status for Xingsheng Zhu has started</title>
	<published>2008-11-03T20:17:05Z</published>
	<updated>2008-11-03T20:17:05Z</updated>
	<author>
		<name>portal on behalf of Yulin Wang</name>
	</author>
	<content type="html">birt Committers,
&lt;br&gt;This automatically generated message signals that Yulin Wang has nominated
&lt;br&gt;Xingsheng Zhu as a Committer on the birt project. The reason given is as
&lt;br&gt;follows:
&lt;br&gt;&lt;br&gt;I would like to nominate Xingsheng Zhu as a BIRT committer. Xingsheng Zhu
&lt;br&gt;joined BIRT Team in December 2007. He has contributed significantly in
&lt;br&gt;Chart bug fixing in the past 12 months.
&lt;br&gt;&lt;br&gt;More specificially, the following are the BUGs that Xingsheng has fixed in
&lt;br&gt;the past several months:
&lt;br&gt;&lt;br&gt;197641 &amp;nbsp; &amp;nbsp;Need to have interactivity on zero values of the datapoint.
&lt;br&gt;210061 	Category data for 1st item on x-axis does not get displayed
&lt;br&gt;213824 	The data fetch setting in dataset(row limit number) isn't effect.
&lt;br&gt;213434 	[2.2.2] Line properties are disabled when reopen the chart builder.
&lt;br&gt;213908 	Some parts disappear in the chart builder [13]
&lt;br&gt;213406 	[2.2.2]Data preview problem in chart builder
&lt;br&gt;213922 	Axis label rotation direction is not correct in live preview.
&lt;br&gt;213827 	Axis title rotation lose effect after flip axis.
&lt;br&gt;213965 	Can only select the first four rows in the Data Preview table in...
&lt;br&gt;214199 	[Regression] Pie chart compare failed [13]
&lt;br&gt;214708 	Browse For File in drill through of Chart Interactivity should...
&lt;br&gt;214337 	Problem when switch the locale.
&lt;br&gt;214205 	Chart Web Project should be able to import latest chart...
&lt;br&gt;215449 	The subtype Stacked does not take effect after untick the...
&lt;br&gt;215323 	The chart in Chart Preview Pane of the Chart Builder is flipped...
&lt;br&gt;210606 	Data fetch setting in dataset take no effect on the data preview...
&lt;br&gt;213946 	The cancel button of select data binding doesn't work[13]
&lt;br&gt;216402 	Series palette does not work correctly when there're two Y axis.
&lt;br&gt;213701 	Barchart With bar Thin
&lt;br&gt;216253 	[Regression] Error when preview the attached report with chart.
&lt;br&gt;215166 	Incorrect preview of pyramid and cone chart.
&lt;br&gt;214057 	Some part of dialog is clipped when select stock chart with...
&lt;br&gt;213799 	[Automation][Regression]Exception is thrown out when...
&lt;br&gt;212844 	Chart runtime component version is wrong in Project
&lt;br&gt;Facets[13][0603]
&lt;br&gt;214200 	Rename BIRT Chart Web Project to Chart Web Project[13][0603]
&lt;br&gt;214201 	BIRT Web Project fail to set birt component in project facet...
&lt;br&gt;213919 	The series type list should be disabled and the second series...
&lt;br&gt;215777 	[Regression] Exception is thrown out when run the attached java...
&lt;br&gt;215949 	No element name for chart and xtab items[0003]
&lt;br&gt;216396 	Can not create second series in the attached report design.
&lt;br&gt;213832 	Min and Max of Axis can not be changed through keyboard.
&lt;br&gt;214845 	Create default names for Series
&lt;br&gt;214997 	Palette UI is incorrect for multiple axes
&lt;br&gt;212268 	Bar Chart: A title of Axis-Y renders incorrent if the title is too
&lt;br&gt;long
&lt;br&gt;214855 	Add new chart types in examples view
&lt;br&gt;216384 	Chart builder dialog will be enlarged when use a cube.
&lt;br&gt;217415 	Interactivity does not work correctly in the attached report
&lt;br&gt;design.
&lt;br&gt;217389 	Refresh problem in the chart builder[13]
&lt;br&gt;216735 	Should not invoke the aggregation dialog for chart in crosstab.
&lt;br&gt;218738 	[Acceptance] Can not change series type for multiple Y Axis.
&lt;br&gt;216719 	Should disable &amp;lt;New series...&amp;gt;for chart in crosstab.
&lt;br&gt;215442 	Passing Date Type parameter while drill through to another
&lt;br&gt;report...
&lt;br&gt;215598 	The type of X-Axis is wrong when binding to a Date Type dimension
&lt;br&gt;[13]
&lt;br&gt;217214 	row[] should not be shown when add a binding for the chart...
&lt;br&gt;221084 	BAR CHART : A data definition entry for Y Series is undefined.
&lt;br&gt;217216 	[SPM] Exception is thrown out when run chart web project [13]
&lt;br&gt;220723 	Series name in legend is not refreshed after delete the first
&lt;br&gt;series.
&lt;br&gt;221099 	Refresh bindings will cause bindings removed.
&lt;br&gt;220721 	Data Field expression is not correct in Aggregation builder.
&lt;br&gt;220329 	Invalid chart types will reappear after invoke a normal chart
&lt;br&gt;builder.
&lt;br&gt;215601 	Error occurs when using different datatype measure for multiple
&lt;br&gt;axis.
&lt;br&gt;221622 	Error disappears after open a sub dialogue when chart binding to...
&lt;br&gt;221790 	[Automation][Regression]Drop shadow of pie chart are changed
&lt;br&gt;208735 	The Cancel button doesn't work correctly when cancel to remove a...
&lt;br&gt;217599 	Support create a new cube in the chart builder[1301]
&lt;br&gt;217420 	Exception is thrown out when preview the report under frameset...
&lt;br&gt;193667 	Chart background image dialogue should work in the same way with...
&lt;br&gt;203412 	Exception should show up in Chart Builder if Y Axis Type is...
&lt;br&gt;223041 	[Automation][Regression]Bubble size displays as 1.0 when its
&lt;br&gt;value...
&lt;br&gt;158631 	Rotate pie chart
&lt;br&gt;221457 	Data type checking for concatenated expression is wrong.
&lt;br&gt;215158 	java.util.ConcurrentModificationException during...
&lt;br&gt;211976 	ReportEngine fails under heavy concurrent load
&lt;br&gt;222540 	The aggregation expression can not be selected in aggregation
&lt;br&gt;builder.
&lt;br&gt;211471 	Markers Visibility and Properties
&lt;br&gt;200294 	Fail to deploy chart runtime in WebSphere6.1[13][0601]
&lt;br&gt;224829 	Failed to load engineOptionsClass when deploying ...
&lt;br&gt;224294 	Confusing error msg for axis data type in Chart Builder[13]
&lt;br&gt;210383 	Behavior on legend does not work when Enable Chart Interactivity...
&lt;br&gt;225472 	Refresh bindings will overwirte the edits.[13]
&lt;br&gt;224061 	Fail to set calculated number from date as series for...
&lt;br&gt;224301 	Refresh in Chart Binding will remove newly added binding[13]
&lt;br&gt;224303 	Rename Delete button in Chart-Data Binding dialog[00]
&lt;br&gt;226630 	Available column bindings and Current Data Cube category are...
&lt;br&gt;225200 	BIRT chart data preview truncates column names
&lt;br&gt;224271 	Series Type should be kept while switch chart type.[13]
&lt;br&gt;192443 	Enhance the Chart Builder for invalid Chart
&lt;br&gt;220505 	Open the invalid chart will cause blank chart builder
&lt;br&gt;160542 	Improve Sample Data in Chart Builder
&lt;br&gt;234440 	TVT34:TCT595: PLK: truncation of button label in &amp;quot;Series
&lt;br&gt;Palette&amp;quot;...
&lt;br&gt;234456 	TVT34:TCT598: PLK: truncations in &amp;quot;Errors encountered&amp;quot; dialog
&lt;br&gt;window
&lt;br&gt;236611 	TVT34:TCT777: TVT - HUN: Gridlines button is truncated
&lt;br&gt;234465 	TVT34:TCT603: PLK: functional: screen refresh in &amp;quot;Data Cube:...
&lt;br&gt;235262 	Context menu in chart build need double click to close[13]
&lt;br&gt;234503 	TVT34:TCT615: JA: Gantt chart description truncated
&lt;br&gt;219079 	Pie chart - total is not 100%
&lt;br&gt;234195 	TVT34:TCT547: DAN: Truncation in &amp;quot;Edit Chart&amp;quot; panel &amp;quot;Curve...
&lt;br&gt;240615 	In web project wizard, the &amp;quot;BIRT Charting Component&amp;quot; preset is...
&lt;br&gt;240456 	The most right and upmost gridlines are missing.
&lt;br&gt;240459 	The visibility of axis labels should not affect the visibility...
&lt;br&gt;234902 	TVT34:TCT665: TVT FR - BIRT - &amp;lt;None&amp;gt; in Series Interactivity Panel
&lt;br&gt;240786 	Hour is changed after reopen the dialog.
&lt;br&gt;233901 	Interactivity on Key Down event does not work.
&lt;br&gt;242205 	Data binding type is not refreshed immediately after modification.
&lt;br&gt;234522 	[Accessiblity] Axis or axis labels are invisible under high
&lt;br&gt;contrast...
&lt;br&gt;242206 	The datatype of data binding in Chart builder didn't update
&lt;br&gt;after...
&lt;br&gt;233906 	Interactivity using report parameter does not work as expected.
&lt;br&gt;241949 	Legend script chart example need to be updated.
&lt;br&gt;240293 	In the web project wizard, the &amp;quot;BIRT Chart Component&amp;quot; preset is...
&lt;br&gt;242455 	NPE when painting chart with null data sets
&lt;br&gt;234424 	TVT34:TCT590: PLK: functional: incative list in &amp;quot;Grouping and
&lt;br&gt;Sorting&amp;quot;
&lt;br&gt;235411 	zTriggerCondition.ONMOUSEOUT_LITERAL not handled
&lt;br&gt;233543 	TVT34:TCT522: RU: incorrect date&amp;time format in chart
&lt;br&gt;234446 	TVT34:TCT593: PLK: redundant lists of BIRT functions
&lt;br&gt;244905 	[Regression] Error happens in a new created BIRT chart web...
&lt;br&gt;243861 	Undo hint is hard to understand after editing the script of chart.
&lt;br&gt;243262 	[regression] SVG Chart can not display when deployed on WebLogic
&lt;br&gt;9.2
&lt;br&gt;245196 	The modification of Chart Area Interactivity doesn't work[13]
&lt;br&gt;245465 	[Regression]Chart in Sub Category in expression builder show as...
&lt;br&gt;246308 	User property is added but not appear in advanced tab until you...
&lt;br&gt;246663 	Note should be added about the max allowed value of Numerator...
&lt;br&gt;247129 	Exceptions throws out when trying to remove a binding in chart
&lt;br&gt;builder.
&lt;br&gt;246819 	Use to group Y series should be disabled in context menu when...
&lt;br&gt;231237 	[Accessibility] Scrolling with keyboard does not work for Data...
&lt;br&gt;246027 	The &amp;quot;Filters...&amp;quot; button in Edit Chart tab of Chart Builder
&lt;br&gt;should...
&lt;br&gt;245499 	The three column &amp;quot;Function&amp;quot;, &amp;quot;Filter&amp;quot; and &amp;quot;Aggregate On&amp;quot; should...
&lt;br&gt;245473 	The OverLay Area Chart icon is not correct in Chart Builder [13]
&lt;br&gt;245345 	Error icon before chart will try to add a binding for chart[13]
&lt;br&gt;246193 	Inconsistent UI Aggregation Builder for chart and table
&lt;br&gt;246174 	Chart can not get parent container's binding when this chart...
&lt;br&gt;232730 	Selected dimension should be saved when changing chart type
&lt;br&gt;245822 	Add description to explain why Can not define filter for chart...
&lt;br&gt;247774 	Not understandable message in chart builder when you delete the...
&lt;br&gt;245855 	Preivew result for &amp;quot;Gradient Editor&amp;quot; is incorrect [13]
&lt;br&gt;248817 	[Regression] Data Preview becomes empty and live preivew lost
&lt;br&gt;when...
&lt;br&gt;249902 	Upgrade Bundle-version in MANIFEST.MF to 2.5.0 in HEAD stream
&lt;br&gt;245498 	Chart binding is not refreshed after remove one computed column...
&lt;br&gt;246312 	Customized series identifier of Chart with multiple Y-Axes will
&lt;br&gt;be...
&lt;br&gt;248324 	Example SWTLiveViewer crashes after a few minutes
&lt;br&gt;237578 	[Enhancement] Allow user to define the label for grouping.
&lt;br&gt;246519 	There should be description or example about the usage of pattern.
&lt;br&gt;251048 	Setting scatter chart background with embedded image doesn't work
&lt;br&gt;251049 	Different background for chart area in &amp;quot;Select Chart Type&amp;quot; list...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The vote is being held via the MyFoundation portal: voters *must* use the
&lt;br&gt;portal for the votes to be properly recorded. &amp;nbsp;The voting will continue
&lt;br&gt;until either all 52 existing Committers have voted or until they have been
&lt;br&gt;given enough time to vote, even if they do not do so (defined as at least
&lt;br&gt;one week). Xingsheng Zhu must receive at least three +1s and no -1s for a
&lt;br&gt;successful election.
&lt;br&gt;&lt;br&gt;Eligible Committers must cast their votes through their My Foundation
&lt;br&gt;portal page (do NOT just reply to this email; your vote will not be
&lt;br&gt;correctly recorded unless you use the portal):
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://portal.eclipse.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portal.eclipse.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;The project Committers eligible to vote are:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Linda Chan
&lt;br&gt;&amp;nbsp; &amp;nbsp; Chen Chao
&lt;br&gt;&amp;nbsp; &amp;nbsp; Liwen Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp; Yu Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp; Yuejie Chen
&lt;br&gt;&amp;nbsp; &amp;nbsp; Jerry Cheng
&lt;br&gt;&amp;nbsp; &amp;nbsp; Hank Christensen
&lt;br&gt;&amp;nbsp; &amp;nbsp; Paul Clenahan
&lt;br&gt;&amp;nbsp; &amp;nbsp; Mark Coggins
&lt;br&gt;&amp;nbsp; &amp;nbsp; Yasuo Doshiro
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dazheng Gao
&lt;br&gt;&amp;nbsp; &amp;nbsp; Xiaoying Gu
&lt;br&gt;&amp;nbsp; &amp;nbsp; Nola Hague
&lt;br&gt;&amp;nbsp; &amp;nbsp; Wenbin He
&lt;br&gt;&amp;nbsp; &amp;nbsp; Rima Kanguri
&lt;br&gt;&amp;nbsp; &amp;nbsp; Renuka Kanna
&lt;br&gt;&amp;nbsp; &amp;nbsp; Lina Kemmel
&lt;br&gt;&amp;nbsp; &amp;nbsp; Sue Lee
&lt;br&gt;&amp;nbsp; &amp;nbsp; Sheldon Lee-Loy
&lt;br&gt;&amp;nbsp; &amp;nbsp; Heng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp; Nina Li
&lt;br&gt;&amp;nbsp; &amp;nbsp; Wenfeng Li
&lt;br&gt;&amp;nbsp; &amp;nbsp; Xiang Li
&lt;br&gt;&amp;nbsp; &amp;nbsp; Xuelan Li
&lt;br&gt;&amp;nbsp; &amp;nbsp; Yu Li
&lt;br&gt;&amp;nbsp; &amp;nbsp; Zhongbo Li
&lt;br&gt;&amp;nbsp; &amp;nbsp; Gang Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp; Ian Liu
&lt;br&gt;&amp;nbsp; &amp;nbsp; Rick Lu
&lt;br&gt;&amp;nbsp; &amp;nbsp; Ahmed Moharram
&lt;br&gt;&amp;nbsp; &amp;nbsp; Jun Ouyang
&lt;br&gt;&amp;nbsp; &amp;nbsp; Vincent Petry
&lt;br&gt;&amp;nbsp; &amp;nbsp; Zhiqiang Qian
&lt;br&gt;&amp;nbsp; &amp;nbsp; Scott Rosenbaum
&lt;br&gt;&amp;nbsp; &amp;nbsp; Jane Tatchell
&lt;br&gt;&amp;nbsp; &amp;nbsp; Krishna Venkatraman
&lt;br&gt;&amp;nbsp; &amp;nbsp; Qiangsheng Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp; Wei Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp; Yueqiang Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp; Yulin Wang
&lt;br&gt;&amp;nbsp; &amp;nbsp; Jason Weathersby
&lt;br&gt;&amp;nbsp; &amp;nbsp; Mingxia Wu
&lt;br&gt;&amp;nbsp; &amp;nbsp; Gary Xue
&lt;br&gt;&amp;nbsp; &amp;nbsp; Wei Yan
&lt;br&gt;&amp;nbsp; &amp;nbsp; Liang Yu
&lt;br&gt;&amp;nbsp; &amp;nbsp; Jun Zhai
&lt;br&gt;&amp;nbsp; &amp;nbsp; Xiaofeng Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp; Xiong Zhang
&lt;br&gt;&amp;nbsp; &amp;nbsp; Jian Zhou
&lt;br&gt;&amp;nbsp; &amp;nbsp; Lin Zhu
&lt;br&gt;&amp;nbsp; &amp;nbsp; Sissi Zhu
&lt;br&gt;&amp;nbsp; &amp;nbsp; he xingjie
&lt;br&gt;&lt;br&gt;*NOTE*: Successful elections are left open for a maximum of 60 days to
&lt;br&gt;allow for processing of paperwork. &amp;nbsp;After that time the election will be
&lt;br&gt;expired, regardless of its current status. &amp;nbsp;Should papework processing on
&lt;br&gt;the part of the candidate take more time than allowed, a new election will
&lt;br&gt;have to be held.
&lt;br&gt;&lt;br&gt;If you have any questions, please do not hesitate to contact your project
&lt;br&gt;lead, PMC member, or the EMO &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20316007&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;emo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;birt-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20316007&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;birt-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/birt-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/birt-dev&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Eclipse-BIRT---Dev-f2270.html&quot; embed=&quot;fixTarget[2270]&quot; target=&quot;_top&quot; &gt;Eclipse BIRT - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Vote-for-Committer-status-for-Xingsheng-Zhu-has-started-tp20316007p20316007.html" />
</entry>

</feed>
