You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by ro...@apache.org on 2005/04/24 23:27:56 UTC

svn commit: r164501 - /cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/SitemapLanguage.java

Author: roku
Date: Sun Apr 24 14:27:55 2005
New Revision: 164501

URL: http://svn.apache.org/viewcvs?rev=164501&view=rev
Log:
Passing the right configuration into application-container setup.
Before, the configuration of components was passed - the parent one.
 

Modified:
    cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/SitemapLanguage.java

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/SitemapLanguage.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/SitemapLanguage.java?rev=164501&r1=164500&r2=164501&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/SitemapLanguage.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/SitemapLanguage.java Sun Apr 24 14:27:55 2005
@@ -133,7 +133,7 @@
 
                 final ComponentLocator cl = (ComponentLocator)ClassUtils.newInstance(clazzName); 
                 // Go through the component lifecycle
-                LifecycleHelper.setupComponent(cl, this.getLogger(), context, newManager, config);
+                LifecycleHelper.setupComponent(cl, this.getLogger(), context, newManager, appContainer);
 
                 this.applicationContainer = cl;