Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 34604 invoked from network); 22 Oct 2008 16:35:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Oct 2008 16:35:16 -0000 Received: (qmail 5862 invoked by uid 500); 22 Oct 2008 16:35:19 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 5826 invoked by uid 500); 22 Oct 2008 16:35:19 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 5817 invoked by uid 99); 22 Oct 2008 16:35:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Oct 2008 09:35:19 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Oct 2008 16:34:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7F9852388852; Wed, 22 Oct 2008 09:34:25 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r707125 - in /geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test: java/org/apache/geronimo/gshell/vfs/provider/meta/ resources/org/apache/geronimo/gshell/vfs/provider/meta/data/ resources/org/apache/geronimo/gshell/vfs/provider/m... Date: Wed, 22 Oct 2008 16:34:25 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081022163425.7F9852388852@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Wed Oct 22 09:34:25 2008 New Revision: 707125 URL: http://svn.apache.org/viewvc?rev=707125&view=rev Log: Fix the event publishing for meta:/* muck Modified: geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/java/org/apache/geronimo/gshell/vfs/provider/meta/AccessibleMetaDataRegistry.java geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/MetaDataRegistryImplTest-context.xml geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/support/MetaDataRegistryConfigurerTest-context.xml Modified: geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/java/org/apache/geronimo/gshell/vfs/provider/meta/AccessibleMetaDataRegistry.java URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/java/org/apache/geronimo/gshell/vfs/provider/meta/AccessibleMetaDataRegistry.java?rev=707125&r1=707124&r2=707125&view=diff ============================================================================== --- geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/java/org/apache/geronimo/gshell/vfs/provider/meta/AccessibleMetaDataRegistry.java (original) +++ geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/java/org/apache/geronimo/gshell/vfs/provider/meta/AccessibleMetaDataRegistry.java Wed Oct 22 09:34:25 2008 @@ -22,6 +22,7 @@ import org.apache.commons.vfs.FileName; import org.apache.geronimo.gshell.vfs.provider.meta.data.MetaData; import org.apache.geronimo.gshell.vfs.provider.meta.data.MetaDataRegistryImpl; +import org.apache.geronimo.gshell.event.EventPublisher; import java.util.Map; @@ -33,6 +34,10 @@ public class AccessibleMetaDataRegistry extends MetaDataRegistryImpl { + public AccessibleMetaDataRegistry(final EventPublisher eventPublisher) { + super(eventPublisher); + } + @Override public Map getNodes() { return super.getNodes(); Modified: geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/MetaDataRegistryImplTest-context.xml URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/MetaDataRegistryImplTest-context.xml?rev=707125&r1=707124&r2=707125&view=diff ============================================================================== --- geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/MetaDataRegistryImplTest-context.xml (original) +++ geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/MetaDataRegistryImplTest-context.xml Wed Oct 22 09:34:25 2008 @@ -28,6 +28,10 @@ default-init-method="init" default-destroy-method="destroy"> - + + + + + \ No newline at end of file Modified: geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/support/MetaDataRegistryConfigurerTest-context.xml URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/support/MetaDataRegistryConfigurerTest-context.xml?rev=707125&r1=707124&r2=707125&view=diff ============================================================================== --- geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/support/MetaDataRegistryConfigurerTest-context.xml (original) +++ geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/test/resources/org/apache/geronimo/gshell/vfs/provider/meta/data/support/MetaDataRegistryConfigurerTest-context.xml Wed Oct 22 09:34:25 2008 @@ -28,6 +28,10 @@ default-init-method="init" default-destroy-method="destroy"> - + + + + + \ No newline at end of file