You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2001/07/12 08:22:46 UTC

cvs commit: xml-cocoon2/src/org/apache/cocoon/sitemap ContentAggregator.java

cziegeler    01/07/11 23:22:44

  Modified:    src/org/apache/cocoon/sitemap ContentAggregator.java
  Log:
  Fixed double created source object for each part
  
  Revision  Changes    Path
  1.13      +2 -2      xml-cocoon2/src/org/apache/cocoon/sitemap/ContentAggregator.java
  
  Index: ContentAggregator.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/org/apache/cocoon/sitemap/ContentAggregator.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ContentAggregator.java	2001/07/07 11:43:34	1.12
  +++ ContentAggregator.java	2001/07/12 06:22:42	1.13
  @@ -39,7 +39,7 @@
   /**
    * @author <a href="mailto:giacomo@apache.org">Giacomo Pati</a>
    * @author <a href="mailto:cziegeler@apache.org">Carsten Ziegeler</a>
  - * @version CVS $Id: ContentAggregator.java,v 1.12 2001/07/07 11:43:34 giacomo Exp $
  + * @version CVS $Id: ContentAggregator.java,v 1.13 2001/07/12 06:22:42 cziegeler Exp $
    */
   public class ContentAggregator extends ContentHandlerWrapper implements Generator, Cacheable, Composable {
   
  @@ -144,7 +144,7 @@
                   }
   
                   try {
  -                    this.resolver.resolve(part.uri).stream(this);
  +                    part.source.stream(this);
                   } finally {
                       if (!part.element.equals("")) {
                           this.endElem(prefix, part.element);
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org