Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 6526 invoked from network); 8 Dec 2003 18:07:48 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 8 Dec 2003 18:07:48 -0000 Received: (qmail 21605 invoked by uid 500); 8 Dec 2003 18:07:36 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 21565 invoked by uid 500); 8 Dec 2003 18:07:36 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 21534 invoked by uid 500); 8 Dec 2003 18:07:35 -0000 Delivered-To: apmail-cocoon-2.1-cvs@apache.org Received: (qmail 21526 invoked from network); 8 Dec 2003 18:07:35 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 8 Dec 2003 18:07:35 -0000 Received: (qmail 6425 invoked by uid 1758); 8 Dec 2003 18:07:42 -0000 Date: 8 Dec 2003 18:07:42 -0000 Message-ID: <20031208180742.6424.qmail@minotaur.apache.org> From: unico@apache.org To: cocoon-2.1-cvs@apache.org Subject: cvs commit: cocoon-2.1/src/blocks/slide/java/org/apache/cocoon/components/slide/impl SlideRepositoryImpl.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N unico 2003/12/08 10:07:42 Modified: src/blocks/slide/java/org/apache/cocoon/components/slide/impl SlideRepositoryImpl.java Log: add explanatory comment as to why Composable Revision Changes Path 1.3 +6 -7 cocoon-2.1/src/blocks/slide/java/org/apache/cocoon/components/slide/impl/SlideRepositoryImpl.java Index: SlideRepositoryImpl.java =================================================================== RCS file: /home/cvs/cocoon-2.1/src/blocks/slide/java/org/apache/cocoon/components/slide/impl/SlideRepositoryImpl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SlideRepositoryImpl.java 3 Dec 2003 12:06:05 -0000 1.2 +++ SlideRepositoryImpl.java 8 Dec 2003 18:07:42 -0000 1.3 @@ -54,7 +54,6 @@ import java.util.Hashtable; import org.apache.avalon.framework.activity.Disposable; - import org.apache.avalon.framework.component.Component; import org.apache.avalon.framework.configuration.Configurable; import org.apache.avalon.framework.configuration.Configuration; @@ -68,24 +67,24 @@ import org.apache.avalon.framework.service.ServiceManager; import org.apache.avalon.framework.service.Serviceable; import org.apache.avalon.framework.thread.ThreadSafe; - import org.apache.cocoon.Constants; import org.apache.cocoon.components.slide.SlideRepository; import org.apache.cocoon.environment.Context; - import org.apache.excalibur.source.Source; import org.apache.excalibur.source.SourceResolver; import org.apache.excalibur.xml.sax.SAXParser; - import org.apache.slide.common.Domain; import org.apache.slide.common.EmbeddedDomain; import org.apache.slide.common.NamespaceAccessToken; - import org.xml.sax.InputSource; /** * The class represent a manger for slide repositories - * + * + * IMPORTANT: do not remove Component interface as this cause ECM to + * throw an exception during startup. (Due to dynamic proxy generation + * and the fact that JTA is not on the classpath). + * * @author Stephan Michels * @version CVS $Id$ */