commented two lines.

//System.setProperty( "javax.xml.parsers.SAXParserFactory", "org.apache.xerces.jaxp.SAXParserFactoryImpl");
//System.setProperty( "org.xml.sax.driver", "org.apache.xerces.parsers.SAXParser");
fixed typo mistakes and code identity.
This commit is contained in:
trifonnt 2008-10-03 08:09:57 +00:00
parent b85b03a58d
commit 127a2dd87e
1 changed files with 13 additions and 13 deletions

View File

@ -83,8 +83,8 @@ public class ReportStarter implements ProcessCall, ClientProcess {
private static JRViewerProvider viewerProvider = new SwingJRViewerProvider(); private static JRViewerProvider viewerProvider = new SwingJRViewerProvider();
static { static {
System.setProperty( "javax.xml.parsers.SAXParserFactory", "org.apache.xerces.jaxp.SAXParserFactoryImpl"); // System.setProperty( "javax.xml.parsers.SAXParserFactory", "org.apache.xerces.jaxp.SAXParserFactoryImpl");
System.setProperty( "org.xml.sax.driver", "org.apache.xerces.parsers.SAXParser"); // System.setProperty( "org.xml.sax.driver", "org.apache.xerces.parsers.SAXParser");
String reportPath = System.getProperty("org.compiere.report.path"); String reportPath = System.getProperty("org.compiere.report.path");
if (reportPath == null) { if (reportPath == null) {
@ -197,9 +197,9 @@ public class ReportStarter implements ProcessCall, ClientProcess {
/** /**
* @author rlemeill * @author rlemeill
* @param reportLocation http://applicationserver/webApp/standalone.jrxml for exemple * @param reportLocation http://applicationserver/webApp/standalone.jrxml for example
* @param localPath Where to put the http downloadede file * @param localPath Where to put the http downloaded file
* @return abstract File wich represent the downloaded file * @return abstract File which represent the downloaded file
*/ */
private File getRemoteFile(String reportLocation, String localPath) private File getRemoteFile(String reportLocation, String localPath)
{ {
@ -241,7 +241,7 @@ public class ReportStarter implements ProcessCall, ClientProcess {
* Search for additional subreports deployed to a webcontext if * Search for additional subreports deployed to a webcontext if
* the parent report is located there * the parent report is located there
* @author deathmeat * @author deathmeat
* @param reportName The original reportname * @param reportName The original report name
* @param reportPath The full path to the parent report * @param reportPath The full path to the parent report
* @param fileExtension The file extension of the parent report * @param fileExtension The file extension of the parent report
* @return An Array of File objects referencing to the downloaded subreports * @return An Array of File objects referencing to the downloaded subreports
@ -314,7 +314,7 @@ public class ReportStarter implements ProcessCall, ClientProcess {
// compare hash of existing and downloaded // compare hash of existing and downloaded
if ( DigestOfFile.md5localHashCompare(reportFile,downloadedFile) ) if ( DigestOfFile.md5localHashCompare(reportFile,downloadedFile) )
{ {
//nothing file are identic //nothing file are identical
log.info(" no need to replace your existing report"); log.info(" no need to replace your existing report");
} }
else else
@ -510,15 +510,15 @@ public class ReportStarter implements ProcessCall, ClientProcess {
Connection conn = null; Connection conn = null;
try { try {
//JasperPrint jasperPrint = JasperFillManager.fillReport( jasperReport, params, DB.getConnectionRW());
conn = getConnection(); conn = getConnection();
JasperPrint jasperPrint = JasperFillManager.fillReport( jasperReport, params, conn); JasperPrint jasperPrint = JasperFillManager.fillReport( jasperReport, params, conn);
if (reportData.isDirectPrint()) if (reportData.isDirectPrint())
{ {
log.info( "ReportStarter.startProcess print report -" + jasperPrint.getName()); log.info( "ReportStarter.startProcess print report -" + jasperPrint.getName());
//RF 1906632 //RF 1906632
if(!processInfo.isBatch()) if (!processInfo.isBatch()) {
JasperPrintManager.printReport( jasperPrint, false); JasperPrintManager.printReport( jasperPrint, false);
}
else else
{ {
// You can use JasperPrint to create PDF // You can use JasperPrint to create PDF
@ -626,7 +626,7 @@ public class ReportStarter implements ProcessCall, ClientProcess {
/** /**
* Search for additional subreports deployed as resources * Search for additional subreports deployed as resources
* @param reportName The original reportname * @param reportName The original report name
* @param reportPath The full path to the parent report * @param reportPath The full path to the parent report
* @param fileExtension The file extension of the parent report * @param fileExtension The file extension of the parent report
* @return An Array of File objects referencing to the downloaded subreports * @return An Array of File objects referencing to the downloaded subreports
@ -682,13 +682,13 @@ public class ReportStarter implements ProcessCall, ClientProcess {
protected File getReportFile(String reportPath) { protected File getReportFile(String reportPath) {
File reportFile = null; File reportFile = null;
// Reports deployement on web server Thanks to Alin Vaida // Reports deployment on web server Thanks to Alin Vaida
if (reportPath.startsWith("http://") || reportPath.startsWith("https://")) { if (reportPath.startsWith("http://") || reportPath.startsWith("https://")) {
reportFile = httpDownloadedReport(reportPath); reportFile = httpDownloadedReport(reportPath);
} else if (reportPath.startsWith("attachment:")) { } else if (reportPath.startsWith("attachment:")) {
//report file from process attachment //report file from process attachment
reportFile = downloadAttachment(reportPath); reportFile = downloadAttachment(reportPath);
} else if(reportPath.startsWith("/")) { } else if (reportPath.startsWith("/")) {
reportFile = new File(reportPath); reportFile = new File(reportPath);
} else if (reportPath.startsWith("file:/")) { } else if (reportPath.startsWith("file:/")) {
try { try {