From: David G. Q. <dga...@us...> - 2008-07-24 09:05:55
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/stage In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13794/modules/core/src/com/babeldoc/core/pipeline/stage Modified Files: CallStagePipelineStage.java Log Message: SMTP authentification USER and PASSWORD Fixes at Decompress pipeline Index: CallStagePipelineStage.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/stage/CallStagePipelineStage.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** CallStagePipelineStage.java 21 Dec 2007 12:06:54 -0000 1.10 --- CallStagePipelineStage.java 24 Jul 2008 09:06:04 -0000 1.11 *************** *** 128,132 **** if(!this.hasOption(DISCARD_RESULTS) || this.getOptions(DISCARD_RESULTS).equals(BooleanConfigOptionType.TRUE)) { ! PipelineDocument pdoc = (PipelineDocument)this.getDocument().clone(); PipelineFactoryFactory.process(callStage, this.getDocument(), this.getTicket(), null); --- 128,137 ---- if(!this.hasOption(DISCARD_RESULTS) || this.getOptions(DISCARD_RESULTS).equals(BooleanConfigOptionType.TRUE)) { ! PipelineDocument pdoc = null; ! try{ ! pdoc = (PipelineDocument)this.getDocument().clone(); ! }catch(CloneNotSupportedException cnse){ ! pdoc = (PipelineDocument)this.getDocument().copy(); ! } PipelineFactoryFactory.process(callStage, this.getDocument(), this.getTicket(), null); |