|
From: <tr...@us...> - 2003-07-30 22:49:00
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline
In directory sc8-pr-cvs1:/tmp/cvs-serv18408/com/babeldoc/core/pipeline
Modified Files:
PipelineStage.java
Log Message:
Fixed bug with ignored stages stopping the pipeline processing and the missing DOM_KEY on the DomifyPipelineStage
Index: PipelineStage.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineStage.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** PipelineStage.java 17 Jul 2003 00:22:10 -0000 1.16
--- PipelineStage.java 30 Jul 2003 22:48:57 -0000 1.17
***************
*** 595,599 ****
} else {
//stage is ignored. Ignore it!
! this.processIgnored();
this.updateJournalStatus(JournalStatus.IGNORED);
}
--- 595,599 ----
} else {
//stage is ignored. Ignore it!
! psResults = this.processIgnored();
this.updateJournalStatus(JournalStatus.IGNORED);
}
***************
*** 707,712 ****
* @return the array of results
*
! * @throws PipelineException DOCUMENT ME!
! * @throws JournalException DOCUMENT ME!
*/
protected PipelineStageResult[] processHelper(String[] results)
--- 707,712 ----
* @return the array of results
*
! * @throws PipelineException
! * @throws JournalException
*/
protected PipelineStageResult[] processHelper(String[] results)
|