<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>birt-news</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/maillist.html</link>
		<description>birt-news</description>
		<language>en-us</language>
		<pubDate>Tue, 07 Oct 2008 06:10:06 GMT</pubDate>
		<lastBuildDate>Tue, 07 Oct 2008 06:10:06 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>birt-news</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/lists/birt-news/maillist.html</link>
		</image>
 

	<item>
		<title>[birt-news] BIRT_HOME location</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00124.html</link>
		<description>Hi all, I want to create a BIRT reportEngine programmatically from a java program in eclipse. (more specifically, its an eclipse plugin). All the BIRT plugins are properly loaded etc, and i can launch the birt report designer by running the app. What is th...</description>
		<content:encoded><![CDATA[<pre>Hi all,
I want to create a BIRT reportEngine programmatically from a java
program in eclipse. (more specifically, its an eclipse plugin).
All the BIRT plugins are properly loaded etc, and i can launch the
birt report designer by running the app.

What is the value of BIRT_HOME in this case? I am not using the birt
runtime directly, rather i am using the birt plugins themselves.

Here is the code i am using to start up birt:

IReportEngine engine=null;
EngineConfig config = new EngineConfig;
config.setBIRTHome(&quot;../ReportEngineProject&quot;);
try{
Platform.startup( config );
IReportEngineFactory factory = (IReportEngineFactory)
Platform.createFactoryObject(
IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTO RY);

engine = factory.createReportEngine( config );

} catch ( Exception ex){
ex.printStackTrace();
}
&lt;/code&gt;

Basically what i want to do is to open a design template from within
the program and emit it.

Thanks a lot!

</pre>]]></content:encoded>
		<pubDate>Tue, 07 Oct 2008 06:04:21 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00124.html</guid>
		<author>prateek3.14@xxxxxxx (Prateek Sharma)</author>
	</item>


	<item>
		<title>[birt-news] Getting dataType info</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00123.html</link>
		<description>Hi all, Is there a way to extract the dataType information? I am extracting content by implementing the Emitter extension point. &amp;lt;structure&amp;gt; &amp;lt;property name=&amp;quot;position&amp;quot;&amp;gt;4&amp;lt;/property&amp;gt; &amp;lt;property name=&amp;quot;name&amp;quot;&amp;gt;QUANTITYINSTOCK&amp;lt;/property&amp;gt; &amp;lt;property name=ot;nativeNam...</description>
		<content:encoded><![CDATA[<pre>Hi all,
       Is there a way to extract the dataType information? I am
extracting content by implementing the Emitter extension point.

                &lt;structure&gt;
                    &lt;property name=&quot;position&quot;&gt;4&lt;/property&gt;
                    &lt;property name=&quot;name&quot;&gt;QUANTITYINSTOCK&lt;/property&gt;
                    &lt;property name=&quot;nativeName&quot;&gt;QUANTITYINSTOCK&lt;/property&gt;
                    &lt;property name=&quot;dataType&quot;&gt;integer&lt;/property&gt;
                    &lt;property name=&quot;nativeDataType&quot;&gt;4&lt;/property&gt;
                &lt;/structure&gt;

In this snippet, lets say i want to know that the type in integer.
However, IDataContent.getContentType() is returning 3 (DATA_CONTENT).

So how can i get the datatype information of cells in tables, data boxes, etc?

Thanks a lot in advance!

</pre>]]></content:encoded>
		<pubDate>Thu, 18 Sep 2008 12:56:33 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00123.html</guid>
		<author>prateek3.14@xxxxxxx (Prateek Sharma)</author>
	</item>


	<item>
		<title>[birt-news] Extracting HTML content</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00122.html</link>
		<description>Hi all, I am extracting report content by using the emitter extension point. I am having issues when the cell content is of html type. An example is: &amp;lt;text id=&amp;quot;17&amp;quot;&amp;gt; &amp;lt;property name=&amp;quot;fontFamily&amp;quot;&amp;gt;sans-serif&amp;lt;/property&amp;gt; ;property name=&amp;quot;contentType&amp;quot;;html&amp;lt;/proper...</description>
		<content:encoded><![CDATA[<pre>Hi all,
         I am extracting report content by using the emitter extension
point. I am having issues when the cell content is of html type. An
example is:

&lt;text id=&quot;17&quot;&gt;
 &lt;property name=&quot;fontFamily&quot;&gt;sans-serif&lt;/property&gt;
&lt;property name=&quot;contentType&quot;&gt;html&lt;/property&gt;
&lt;text-property name=&quot;content&quot;&gt;&lt;![CDATA[701 Gateway Boulevard,&lt;BR&gt; San
Francisco, CA 94107&lt;BR&gt;&lt;BR&gt;]]&gt;&lt;/text-property&gt;
  &lt;/text&gt;

This is inside a cell. So startCell (of IContentEmitter) is called,
and it immediately exits without calling any other method (like
startText etc).

So how do i extract such kind content in my reports? Isnt startText
supposed to be called here?

Thanks a lot in advance,
Prateek

</pre>]]></content:encoded>
		<pubDate>Wed, 17 Sep 2008 05:42:46 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00122.html</guid>
		<author>prateek3.14@xxxxxxx (Prateek Sharma)</author>
	</item>


	<item>
		<title>Re: [birt-news] Excel Format - Image not displaying</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00121.html</link>
		<description> </description>
		<content:encoded><![CDATA[<pre>
I am also facing same issue .Did u get any solution?


Shomy Jose (ECS), HCL-Industry Solutions wrote:
&gt; 
&gt; 
&gt; Hi,
&gt;  
&gt; I am trying to generate a Excel report with an image.
&gt; But the image is not there in the generated report.
&gt;  
&gt; I have created rptdesign file with an image in it.
&gt; Then I wrote a java program using report engine APIs to generate excel
&gt; report in the specified report.
&gt; Report is gettinng generated in excel format. But still the imga is not
&gt; there.
&gt;  
&gt; I am using BIRT 2.2.0 version which is supporting excel format.
&gt;  
&gt; I am attaching my code which is used for report generation
&gt;  
&gt;  
&gt;  
&gt; import java.util.HashMap;
&gt; import java.util.logging.Level;
&gt;  
&gt; import org.eclipse.birt.core.framework.Platform;
&gt; import org.eclipse.birt.report.engine.api.EngineConfig;
&gt; import org.eclipse.birt.report.engine.api.IReportEngine;
&gt; import org.eclipse.birt.report.engine.api.EngineException;
&gt; import org.eclipse.birt.report.engine.api.HTMLActionHandler;
&gt; import org.eclipse.birt.report.engine.api.EngineConstants;
&gt;  
&gt; import org.eclipse.birt.report.engine.api.RenderOption;
&gt; import org.eclipse.birt.report.engine.api.HTMLRenderOption;
&gt; import org.eclipse.birt.report.engine.api.HTMLServerImageHandler;
&gt; import org.eclipse.birt.report.engine.api.IReportRunnable;
&gt; import org.eclipse.birt.report.engine.api.IRunAndRenderTask;
&gt; import org.eclipse.birt.report.engine.api.IReportEngineFactory;
&gt;  
&gt; public class Example {
&gt;  
&gt;  public Example() {
&gt;   System.out.println(&quot;-------------Inside constructor&quot;);
&gt;  }
&gt;  
&gt;  public static void main(String[] args) {
&gt;   System.out.println(&quot;-------------Inside main method&quot;);
&gt;   Example reportRunner = new Example();
&gt;   reportRunner.runReport();
&gt;  }
&gt;  
&gt;  private void runReport() {
&gt;   System.out.println(&quot;Inside Report Generation&quot;);
&gt;   IReportEngine engine = null;
&gt;   IRunAndRenderTask task = null;
&gt;  
&gt;   try {
&gt;    EngineConfig config = new EngineConfig();
&gt;    IReportRunnable design = null;
&gt;  
&gt;  
&gt; config.setEngineHome(&quot;D:/ProgramFiles/birt/birt-runtime-2_2_0/ReportEngi
&gt; ne&quot;);
&gt;    config.setLogConfig(&quot;D:/ProgramFiles/birt/log&quot;, Level.ALL);
&gt;  
&gt;    Platform.startup( config );
&gt;    IReportEngineFactory factory = (IReportEngineFactory) Platform
&gt;      .createFactoryObject(
&gt; IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY );
&gt;    System.out.println(&quot; ---FACTORY CREATED&quot;);
&gt;  
&gt;    engine = factory.createReportEngine( config );
&gt;    System.out.println(&quot; ---REPORT ENGINE CREATED&quot;);
&gt;    engine.changeLogLevel( Level.WARNING );
&gt;  
&gt;    //Open the report design
&gt;    design =
&gt; engine.openReportDesign(&quot;D:/Workarea/Report-workspace/MyReport/ExampleSc
&gt; ript.rptdesign&quot;);
&gt;    System.out.println(&quot; ------------ DESIGN CREATED&quot;);
&gt;  
&gt;    //Create task to run and render the report,
&gt;    task = engine.createRunAndRenderTask(design);
&gt;    System.out.println(&quot; ------------ TASK CREATED&quot;);
&gt;  
&gt;             HTMLRenderOption options = new HTMLRenderOption();
&gt;  
&gt;    //Set ouptut location
&gt;  
&gt; options.setOutputFileName(&quot;D:/ProgramFiles/birt/output/ExampleSciptExcel
&gt; ..xls&quot;);
&gt;  
&gt;    //Set output format
&gt;    options.setOutputFormat(&quot;xls&quot;);
&gt;    //options.setEmitterID(&quot;xls&quot;);
&gt;    task.setRenderOption(options);
&gt;  
&gt;    //run the report and destroy the engine
&gt;    task.run();
&gt;  
&gt;    System.out.println(&quot; ------------ TASK RUNNING&quot;);
&gt;  
&gt;   }
&gt;   catch( Exception exception){
&gt;    exception.printStackTrace();
&gt;   }
&gt;   finally {
&gt;    task.close();
&gt;    engine.shutdown();
&gt;    Platform.shutdown();
&gt;   }
&gt;   System.out.println(&quot;Finished&quot;);
&gt;  }
&gt; }
&gt;  
&gt; Could anybody help me in solving this problem.
&gt;  
&gt; Regards,
&gt; Shomy
&gt; 
&gt;  
&gt; 
&gt;  
&gt; 
&gt; 
&gt; DISCLAIMER:
&gt; -----------------------------------------------------------------------------------------------------------------------
&gt; 
&gt; The contents of this e-mail and any attachment(s) are confidential and
&gt; intended for the named recipient(s) only.
&gt; It shall not attach any liability on the originator or HCL or its
&gt; affiliates. Any views or opinions presented in 
&gt; this email are solely those of the author and may not necessarily reflect
&gt; the opinions of HCL or its affiliates.
&gt; Any form of reproduction, dissemination, copying, disclosure,
&gt; modification, distribution and / or publication of 
&gt; this message without the prior written consent of the author of this
&gt; e-mail is strictly prohibited. If you have 
&gt; received this email in error please delete it and notify the sender
&gt; immediately. Before opening any mail and 
&gt; attachments please check them for viruses and defect.
&gt; 
&gt; -----------------------------------------------------------------------------------------------------------------------
&gt; _______________________________________________
&gt; birt-news mailing list
&gt; birt-news@xxxxxxxxxxx
&gt; <a  href="https://dev.eclipse.org/mailman/listinfo/birt-news">https://dev.eclipse.org/mailman/listinfo/birt-news</a>
&gt; 
&gt; 

-- 
View this message in context: <a  href="http://www.nabble.com/Excel-Format---Image-not-displaying-tp12047010p19332958.html">http://www.nabble.com/Excel-Format---Image-not-displaying-tp12047010p19332958.html</a>
Sent from the Eclipse BIRT - News mailing list archive at Nabble.com.


</pre>]]></content:encoded>
		<pubDate>Sun, 07 Sep 2008 01:05:39 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00121.html</guid>
		<author>Sangeeta.shah@xxxxxxx (symphony)</author>
	</item>


	<item>
		<title>[birt-news] &quot;All&quot; value in an allowed multiple value listbox</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00120.html</link>
		<description>Hi,How could I implement an "All" (selected) value in listbox with Allowed multiple values enabled?Thank you very much!J. Enviado desde Correo Yahoo!La bandeja de entrada m&amp;#xC3;s inteligente.</description>
		<content:encoded><![CDATA[Hi,How could I implement an "All" (selected) value in listbox with Allowed multiple values enabled?Thank you very much!J. Enviado desde Correo Yahoo!La bandeja de entrada m&amp;#xC3;s inteligente.]]></content:encoded>
		<pubDate>Wed, 09 Jul 2008 13:04:59 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00120.html</guid>
		<author>joseiru@xxxxxxx (Joseba Irujo)</author>
	</item>
	<item>
		<title>[birt-news] Export to PDF of a too big report</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00119.html</link>
		<description>Hi,When I try to export to PDF a report too big for the page, I get all the columns of the same size and I see it very bad.Is there any way to configure this export?Thank you! Enviado desde Correo Yahoo!La bandeja de entrada m&amp;#xC3;s inteligente.</description>
		<content:encoded><![CDATA[Hi,When I try to export to PDF a report too big for the page, I get all the columns of the same size and I see it very bad.Is there any way to configure this export?Thank you! Enviado desde Correo Yahoo!La bandeja de entrada m&amp;#xC3;s inteligente.]]></content:encoded>
		<pubDate>Wed, 09 Jul 2008 13:02:46 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00119.html</guid>
		<author>joseiru@xxxxxxx (Joseba Irujo)</author>
	</item>


	<item>
		<title>[birt-news] BIRT Webinar - Jun. 24</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00118.html</link>
		<description> Eclipse is hosting a BIRT webinar: BIRT 2.3 Overview and New Features June 24, 2008 at 9:00 am PDT / 12:00 pm EDT / 4:00 pm GMT Presented by Jason Weathersby To register email webinar-birt at eclipse dot org   This webinar will walk you through developing...</description>
		<content:encoded><![CDATA[ Eclipse is hosting a BIRT webinar: BIRT 2.3 Overview and New Features June 24, 2008 at 9:00 am PDT / 12:00 pm EDT / 4:00 pm GMT Presented by Jason Weathersby To register email webinar-birt at eclipse dot org   This webinar will walk you through developing...]]></content:encoded>
		<pubDate>Tue, 17 Jun 2008 19:10:40 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00118.html</guid>
		<author>lynn.gayowski@xxxxxxx (Lynn Gayowski)</author>
	</item>


	<item>
		<title>[birt-news] problem with Euro symbol</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00117.html</link>
		<description>Dear All, I'm having problems to get displayed the euro symbol (&amp;#x20AC;) on PDF reports generated on the server side, with reports designs stored in a database table, while the same symbol gets displayed nicely on the design session ... I have checked the conten...</description>
		<content:encoded><![CDATA[Dear All, I'm having problems to get displayed the euro symbol (&amp;#x20AC;) on PDF reports generated on the server side, with reports designs stored in a database table, while the same symbol gets displayed nicely on the design session ... I have checked the conten...]]></content:encoded>
		<pubDate>Mon, 21 Apr 2008 12:09:16 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00117.html</guid>
		<author>ereinaldob@xxxxxxx (Ernesto Reinaldo Barreiro)</author>
	</item>
	<item>
		<title>[birt-news] problem with Euro symbol</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00116.html</link>
		<description>Dear All, I'm having problems to get displayed the euro symbol (&amp;#x20AC;) on PDF reports generated on the server side, with reports designs stored in a database table, while the same symbol gets displayed nicely on the design session ... I have checked the conten...</description>
		<content:encoded><![CDATA[Dear All, I'm having problems to get displayed the euro symbol (&amp;#x20AC;) on PDF reports generated on the server side, with reports designs stored in a database table, while the same symbol gets displayed nicely on the design session ... I have checked the conten...]]></content:encoded>
		<pubDate>Mon, 21 Apr 2008 11:54:18 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00116.html</guid>
		<author>ereinaldob@xxxxxxx (Ernesto Reinaldo Barreiro)</author>
	</item>


	<item>
		<title>RE: [birt-news] How to disable creation of tmp/BIRTSampleDB directory</title>
		<link>http://dev.eclipse.org/mhonarc/lists/birt-news/msg00115.html</link>
		<description> Thank you very much. It seems very helpful.   From: Lin Zhu [mailto:lzhu@xxxxxxxxxxx] Sent: Monday, February 25, 2008 1:09 PM To: Kohut, Milan; birt-news@xxxxxxxxxxx Subject: RE: [birt-news] How to disable creation of tmp/BIRTSampleDB directory ; Hi, p; W...</description>
		<content:encoded><![CDATA[ Thank you very much. It seems very helpful.   From: Lin Zhu [mailto:lzhu@xxxxxxxxxxx] Sent: Monday, February 25, 2008 1:09 PM To: Kohut, Milan; birt-news@xxxxxxxxxxx Subject: RE: [birt-news] How to disable creation of tmp/BIRTSampleDB directory ; Hi, p; W...]]></content:encoded>
		<pubDate>Mon, 25 Feb 2008 16:14:42 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/birt-news/msg00115.html</guid>
		<author>milan.kohut@xxxxxxx (Kohut, Milan)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
