Return-Path: Mailing-List: contact cocoon-cvs-help@xml.apache.org; run by ezmlm Delivered-To: mailing list cocoon-cvs@xml.apache.org Received: (qmail 78943 invoked by uid 1041); 5 Jul 2000 20:20:56 -0000 Date: 5 Jul 2000 20:20:56 -0000 Message-ID: <20000705202056.78935.qmail@locus.apache.org> From: giacomo@locus.apache.org To: xml-cocoon-cvs@apache.org Subject: cvs commit: xml-cocoon/src/org/apache/cocoon/sitemap GenericProcessor.java giacomo 00/07/05 13:20:55 Modified: src/org/apache/cocoon/sitemap Tag: xml-cocoon2 GenericProcessor.java Log: Remove usage of LinkTranslator Revision Changes Path No revision No revision 1.1.2.10 +2 -8 xml-cocoon/src/org/apache/cocoon/sitemap/Attic/GenericProcessor.java Index: GenericProcessor.java =================================================================== RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/sitemap/Attic/GenericProcessor.java,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -r1.1.2.9 -r1.1.2.10 --- GenericProcessor.java 2000/03/28 22:18:24 1.1.2.9 +++ GenericProcessor.java 2000/07/05 20:20:53 1.1.2.10 @@ -35,7 +35,7 @@ * * @author Pierpaolo Fumagalli * (Apache Software Foundation, Exoffice Technologies) - * @version CVS $Revision: 1.1.2.9 $ $Date: 2000/03/28 22:18:24 $ + * @version CVS $Revision: 1.1.2.10 $ $Date: 2000/07/05 20:20:53 $ */ public class GenericProcessor implements Composer, Configurable, Processor, LinkResolver { @@ -139,20 +139,14 @@ LinkResolver resolver=this.partition.sitemap; String partname=this.partition.name; - LinkTranslator t=new LinkTranslator(this,resolver,partname,src); - t.setConsumer(s); - XMLConsumer current=t; + XMLConsumer current=s; for (int x=(this.filters.size()-1); x>=0; x--) { String k=(String)this.filters.elementAt(x); Filter f=(Filter)this.manager.getComponent(k); f.setup(req,res,src,(Parameters)this.filtersParam.elementAt(x)); f.setConsumer(current); current=f; - - t=new LinkTranslator(this,resolver,partname,src); - t.setConsumer(current); - current=t; } Generator g=(Generator)this.manager.getComponent(this.generator);