Tag: cws_dev300_rptfix02 User: oj Date: 2008-07-02 06:42:22+0000 Modified: dba/reportdesign/java/com/sun/star/report/pentaho/output/OfficeDocumentReportTarget.java dba/reportdesign/java/com/sun/star/report/pentaho/output/text/TextRawReportTarget.java
Log: #i91253# copy the meta.xml File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/pentaho/output/ ===================================================================== File [changed]: OfficeDocumentReportTarget.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/pentaho/output/OfficeDocumentReportTarget.java?r1=1.8&r2=1.8.18.1 Delta lines: +9 -2 ------------------- --- OfficeDocumentReportTarget.java 2008-06-16 13:14:07+0000 1.8 +++ OfficeDocumentReportTarget.java 2008-07-02 06:42:19+0000 1.8.18.1 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: OfficeDocumentReportTarget.java,v $ - * $Revision: 1.8 $ + * $Revision: 1.8.18.1 $ * * This file is part of OpenOffice.org. * @@ -250,6 +250,7 @@ */ private OfficeStylesCollection contentStylesCollection; private final OutputRepository outputRepository; + private final InputRepository inputRepository; private final AttributeNameGenerator tableNameGenerator; private final AttributeNameGenerator frameNameGenerator; private final AttributeNameGenerator autoStyleNameGenerator; @@ -290,6 +291,7 @@ this.frameNameGenerator = new AttributeNameGenerator(); this.autoStyleNameGenerator = new AttributeNameGenerator(); this.outputRepository = outputRepository; + this.inputRepository = inputRepository; this.states = new FastStack(); this.xmlWriters = new FastStack(); this.imageNames = new AttributeNameGenerator(); @@ -315,6 +317,11 @@ return outputRepository; } + protected InputRepository getInputRepository() + { + return inputRepository; + } + /** * Starts the output of a new office document. This method writes the generic 'office:document-content' tag along with * all known namespace declarations. Directory: /dba/reportdesign/java/com/sun/star/report/pentaho/output/text/ ========================================================================== File [changed]: TextRawReportTarget.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/pentaho/output/text/TextRawReportTarget.java?r1=1.8.18.1&r2=1.8.18.2 Delta lines: +3 -1 ------------------- --- TextRawReportTarget.java 2008-07-02 06:39:49+0000 1.8.18.1 +++ TextRawReportTarget.java 2008-07-02 06:42:20+0000 1.8.18.2 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: TextRawReportTarget.java,v $ - * $Revision: 1.8.18.1 $ + * $Revision: 1.8.18.2 $ * * This file is part of OpenOffice.org. * @@ -32,6 +32,8 @@ import com.sun.star.report.DataSourceFactory; import java.io.IOException; import java.io.OutputStream; +import java.io.InputStream; +import org.jfree.io.IOUtils; import java.io.OutputStreamWriter; import java.util.Iterator; import java.util.Map; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
